diff options
author | 2008-12-06 14:06:16 +0000 | |
---|---|---|
committer | 2008-12-06 14:06:16 +0000 | |
commit | c412b63e749f51e0bcd49a956668019059ff12de (patch) | |
tree | 6f69331b04d2ee4135939347212a1c0b6dae77db /games-util/biounzip/biounzip-1.1a.ebuild | |
parent | Version bumps for security bug #250012. (diff) | |
download | gentoo-2-c412b63e749f51e0bcd49a956668019059ff12de.tar.gz gentoo-2-c412b63e749f51e0bcd49a956668019059ff12de.tar.bz2 gentoo-2-c412b63e749f51e0bcd49a956668019059ff12de.zip |
Respect CC and LDFLAGS, bug #244118
(Portage version: 2.2_rc17/cvs/Linux 2.6.27.7 i686)
Diffstat (limited to 'games-util/biounzip/biounzip-1.1a.ebuild')
-rw-r--r-- | games-util/biounzip/biounzip-1.1a.ebuild | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/games-util/biounzip/biounzip-1.1a.ebuild b/games-util/biounzip/biounzip-1.1a.ebuild index 8b5776824237..6d489248cf56 100644 --- a/games-util/biounzip/biounzip-1.1a.ebuild +++ b/games-util/biounzip/biounzip-1.1a.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/biounzip/biounzip-1.1a.ebuild,v 1.6 2008/05/15 13:16:53 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/biounzip/biounzip-1.1a.ebuild,v 1.7 2008/12/06 14:06:16 nyhm Exp $ inherit eutils @@ -13,8 +13,6 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="" -RDEPEND="sys-libs/zlib" - S=${WORKDIR}/${P/a/} src_unpack() { @@ -24,11 +22,10 @@ src_unpack() { } src_compile() { - sed -i -e "s#-march=athlon-xp#${CFLAGS}#" Makefile || die - emake || die + $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o ${PN} *.c -lz || die "cc failed" } src_install() { - dobin biounzip || die + dobin ${PN} || die "dobin failed" dodoc biozip.txt } |