diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2008-12-06 15:40:54 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2008-12-06 15:40:54 +0000 |
commit | d1e365768766b2cdf6cc5712e88df618d2a834bb (patch) | |
tree | 96c8bbccaaf208adb545dad81815369f0a0dc462 /games-util/dzip/dzip-2.9-r1.ebuild | |
parent | inherit eutils (diff) | |
download | gentoo-2-d1e365768766b2cdf6cc5712e88df618d2a834bb.tar.gz gentoo-2-d1e365768766b2cdf6cc5712e88df618d2a834bb.tar.bz2 gentoo-2-d1e365768766b2cdf6cc5712e88df618d2a834bb.zip |
Respect CC, bug #244120
(Portage version: 2.2_rc17/cvs/Linux 2.6.27.7 i686)
Diffstat (limited to 'games-util/dzip/dzip-2.9-r1.ebuild')
-rw-r--r-- | games-util/dzip/dzip-2.9-r1.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/games-util/dzip/dzip-2.9-r1.ebuild b/games-util/dzip/dzip-2.9-r1.ebuild index b6f1a815b82a..553d9d1aa463 100644 --- a/games-util/dzip/dzip-2.9-r1.ebuild +++ b/games-util/dzip/dzip-2.9-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/dzip/dzip-2.9-r1.ebuild,v 1.3 2007/03/12 18:21:27 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/dzip/dzip-2.9-r1.ebuild,v 1.4 2008/12/06 15:40:54 nyhm Exp $ -inherit eutils games +inherit eutils toolchain-funcs games DESCRIPTION="compressor/uncompressor for demo recordings from id's Quake" HOMEPAGE="http://speeddemosarchive.com/dzip/" @@ -25,7 +25,11 @@ src_unpack() { } src_compile() { - emake CFLAGS="${CFLAGS}" -f Makefile.linux || die "emake failed" + emake \ + -f Makefile.linux \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + || die "emake failed" } src_install () { |