diff options
author | Markus Duft <mduft@gentoo.org> | 2011-06-15 08:13:11 +0000 |
---|---|---|
committer | Markus Duft <mduft@gentoo.org> | 2011-06-15 08:13:11 +0000 |
commit | 5ae470274563c0d362d391d426e762aef9526fbe (patch) | |
tree | 22e8432ad77d28311879828eaa02f2a4003a752d /sys-libs | |
parent | x86 stable wrt bug #343843 (diff) | |
download | gentoo-2-5ae470274563c0d362d391d426e762aef9526fbe.tar.gz gentoo-2-5ae470274563c0d362d391d426e762aef9526fbe.tar.bz2 gentoo-2-5ae470274563c0d362d391d426e762aef9526fbe.zip |
add new version
(Portage version: 2.2.01.18826-prefix/cvs/Linux i686)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/suacomp/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/suacomp/suacomp-0.6.13.ebuild | 60 |
2 files changed, 66 insertions, 1 deletions
diff --git a/sys-libs/suacomp/ChangeLog b/sys-libs/suacomp/ChangeLog index 10fa7ab45201..ea658059706d 100644 --- a/sys-libs/suacomp/ChangeLog +++ b/sys-libs/suacomp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/suacomp # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/suacomp/ChangeLog,v 1.9 2011/06/10 13:59:03 mduft Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/suacomp/ChangeLog,v 1.10 2011/06/15 08:13:11 mduft Exp $ + +*suacomp-0.6.13 (15 Jun 2011) + + 15 Jun 2011; Markus Duft <mduft@gentoo.org> +suacomp-0.6.13.ebuild: + add new version *suacomp-0.6.12 (10 Jun 2011) diff --git a/sys-libs/suacomp/suacomp-0.6.13.ebuild b/sys-libs/suacomp/suacomp-0.6.13.ebuild new file mode 100644 index 000000000000..6df18f40c8cd --- /dev/null +++ b/sys-libs/suacomp/suacomp-0.6.13.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/suacomp/suacomp-0.6.13.ebuild,v 1.1 2011/06/15 08:13:11 mduft Exp $ + +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="-* ~x86-interix" +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" +} |