diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2008-12-06 14:06:16 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2008-12-06 14:06:16 +0000 |
commit | c412b63e749f51e0bcd49a956668019059ff12de (patch) | |
tree | 6f69331b04d2ee4135939347212a1c0b6dae77db /games-util/biounzip | |
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')
-rw-r--r-- | games-util/biounzip/ChangeLog | 7 | ||||
-rw-r--r-- | games-util/biounzip/biounzip-1.1a.ebuild | 9 |
2 files changed, 8 insertions, 8 deletions
diff --git a/games-util/biounzip/ChangeLog b/games-util/biounzip/ChangeLog index 412f34a168c1..2fc6b5052272 100644 --- a/games-util/biounzip/ChangeLog +++ b/games-util/biounzip/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-util/biounzip -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/biounzip/ChangeLog,v 1.4 2007/08/27 21:12:55 wolf31o2 Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/biounzip/ChangeLog,v 1.5 2008/12/06 14:06:16 nyhm Exp $ + + 06 Dec 2008; Tristan Heaven <nyhm@gentoo.org> biounzip-1.1a.ebuild: + Respect CC and LDFLAGS, bug #244118 27 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org> biounzip-1.1a.ebuild: Stable on amd64/x86 for bug #190150. 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 } |