diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2017-05-15 23:27:02 +0200 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2017-05-15 23:28:12 +0200 |
commit | 7eda425a954120fe4368d222fea5f60d161f0b6e (patch) | |
tree | e1711af29a67ac833955fb4483b74001f3017a3a /sys-libs/suacomp | |
parent | app-admin/fifo-cronolog: EAPI bump, acked by robbat2 (diff) | |
download | gentoo-7eda425a954120fe4368d222fea5f60d161f0b6e.tar.gz gentoo-7eda425a954120fe4368d222fea5f60d161f0b6e.tar.bz2 gentoo-7eda425a954120fe4368d222fea5f60d161f0b6e.zip |
sys-libs/suacomp: Remove old
Package-Manager: Portage-2.3.5, Repoman-2.3.1
Diffstat (limited to 'sys-libs/suacomp')
-rw-r--r-- | sys-libs/suacomp/Manifest | 1 | ||||
-rw-r--r-- | sys-libs/suacomp/suacomp-0.6.13.ebuild | 59 |
2 files changed, 0 insertions, 60 deletions
diff --git a/sys-libs/suacomp/Manifest b/sys-libs/suacomp/Manifest index db0b4e7aefae..e49288276bea 100644 --- a/sys-libs/suacomp/Manifest +++ b/sys-libs/suacomp/Manifest @@ -1,2 +1 @@ -DIST suacomp-0.6.13.tar.gz 35838 SHA256 e8f488cec531dd64b797900a10e13c35758fe20bc6ef97c3da538246318afd3f SHA512 88e4e1f224ca6910ea175fe0ff93ff187773b48ecca16d13ce9c6d99ecb6dd4703913d698d948d6cc0722372a1cb20120cefb2b5f916355670475299727cc96c WHIRLPOOL 02fed2fcb40add425763937e60c63c060ab8392bc684e60f29bbfa31089d33ab28f42da6686ecc7f360dfc6fd515aaf61b293c3f0f5e53259ecbd19e6b6d9fea DIST suacomp-0.6.14.tar.gz 36712 SHA256 453c64c9c6c7f255a14fa19250696e7f3acc3a72498340b76eb681eb648df1a2 SHA512 6e559059c18c1412611d837bf2f5fad08deaf9145464347f712fdb0cd4e0dfae1b7b46253ef086bd4c98cc1555111872b6b5af5272b77a88c767e9008143b7f1 WHIRLPOOL 2e95569a5884c382682ed9ddfb2516246a2898eba8a24a5d9365152b55440ca3d1909392009fdf0f4134a1476865e0a2c8284c555d5ccdf6fa84ee38f62a46d8 diff --git a/sys-libs/suacomp/suacomp-0.6.13.ebuild b/sys-libs/suacomp/suacomp-0.6.13.ebuild deleted file mode 100644 index 64aad9c38b50..000000000000 --- a/sys-libs/suacomp/suacomp-0.6.13.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=3 - -inherit toolchain-funcs flag-o-matic - -DESCRIPTION="library wrapping the interix lib-c to make it less buggy" -HOMEPAGE="http://suacomp.sf.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="BEER-WARE" -SLOT="0" -KEYWORDS="-*" -IUSE="debug" - -DEPEND="" -RDEPEND="" - -get_opts() { - local shlibc= - local stlibc= - - for dir in /usr/lib /usr/lib/x86; do - [[ -f ${dir}/libc.a ]] && stlibc=${dir}/libc.a - - for name in libc.so.5.2 libc.so.3.5; do - [[ -f ${dir}/${name} ]] && { shlibc=${dir}/${name}; break; } - done - - [[ -f ${shlibc} && -f ${stlibc} ]] && break - done - - echo "SHARED_LIBC=${shlibc} STATIC_LIBC=${stlibc}" -} - -pkg_setup() { - if use debug; then - append-flags -D_DEBUG -D_DEBUG_TRACE - fi -} - -src_compile() { - emake all CC=$(tc-getCC) $(get_opts) CFLAGS="${CFLAGS}" || die "emake failed" -} - -src_install() { - emake install PREFIX="${EPREFIX}/usr" DESTDIR="${D}" $(get_opts) \ - CFLAGS="${CFLAGS}" || die "emake install failed" -} - -src_test() { - local v= - - use debug && v="TEST_VERBOSE=1" - use debug && export SUACOMP_DEBUG_OUT=stderr - - emake check $(get_opts) ${v} || die "emake check failed" -} |