diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-10-28 23:49:27 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-10-28 23:49:27 +0000 |
commit | 679a06a5f0fa439cdc678efa1fae953d3a506f5e (patch) | |
tree | 6c7abf16089c5e188825f26a723aa009351e2f4a /net-wireless/airtraf/airtraf-1.0.ebuild | |
parent | Initial commit. Ebuild by yours truly. See bug #64554 (Manifest recommit) (diff) | |
download | gentoo-2-679a06a5f0fa439cdc678efa1fae953d3a506f5e.tar.gz gentoo-2-679a06a5f0fa439cdc678efa1fae953d3a506f5e.tar.bz2 gentoo-2-679a06a5f0fa439cdc678efa1fae953d3a506f5e.zip |
CC/CXX fix as per bug #69280. Version bump too
Diffstat (limited to 'net-wireless/airtraf/airtraf-1.0.ebuild')
-rw-r--r-- | net-wireless/airtraf/airtraf-1.0.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net-wireless/airtraf/airtraf-1.0.ebuild b/net-wireless/airtraf/airtraf-1.0.ebuild index 3b3ae74bd68b..6d7d668f3684 100644 --- a/net-wireless/airtraf/airtraf-1.0.ebuild +++ b/net-wireless/airtraf/airtraf-1.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/airtraf/airtraf-1.0.ebuild,v 1.8 2004/09/22 14:59:28 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/airtraf/airtraf-1.0.ebuild,v 1.9 2004/10/28 23:49:27 dragonheart Exp $ -inherit eutils +inherit eutils toolchain-funcs DESCRIPTION="AirTraf 802.11b Wireless traffic sniffer" HOMEPAGE="http://www.elixar.com/" @@ -30,10 +30,10 @@ src_compile() { # Do some sedding to make compile flags work mv Makefile.rules ${T} - sed -e "s:gcc:${CC}:" \ + sed -e "s:gcc:$(tc-getCC):" \ -e "s:CFLAGS = -Wall -O2:CFLAGS = ${CFLAGS} -Wall:" \ - -e "s:c++:${GXX}:" \ - -e "s:CXXFLAGS = -Wall -O2:CXXFLAGS = ${GXXFLAGS} -Wall:" \ + -e "s:c++:$(tc-getCXX):" \ + -e "s:CXXFLAGS = -Wall -O2:CXXFLAGS = ${CXXFLAGS} -Wall:" \ ${T}/Makefile.rules > Makefile.rules make || die } |