diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2009-07-23 23:38:30 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2009-07-23 23:38:30 +0000 |
commit | a327d6dd02aeda9a45ba605f4c3251b7f5635c95 (patch) | |
tree | 3bd374071d98fae6719e2c913769e2fd197a31fc /dev-libs | |
parent | Respecting CC variable, closes bug #243884 (diff) | |
download | gentoo-2-a327d6dd02aeda9a45ba605f4c3251b7f5635c95.tar.gz gentoo-2-a327d6dd02aeda9a45ba605f4c3251b7f5635c95.tar.bz2 gentoo-2-a327d6dd02aeda9a45ba605f4c3251b7f5635c95.zip |
Respecting CC variable, closes bug #243900
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/9libs/9libs-1.0-r1.ebuild | 8 | ||||
-rw-r--r-- | dev-libs/9libs/9libs-1.0.ebuild | 9 | ||||
-rw-r--r-- | dev-libs/9libs/ChangeLog | 8 |
3 files changed, 17 insertions, 8 deletions
diff --git a/dev-libs/9libs/9libs-1.0-r1.ebuild b/dev-libs/9libs/9libs-1.0-r1.ebuild index 0f7c461f2eca..768bd53baede 100644 --- a/dev-libs/9libs/9libs-1.0-r1.ebuild +++ b/dev-libs/9libs/9libs-1.0-r1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/9libs/9libs-1.0-r1.ebuild,v 1.5 2008/09/20 09:09:17 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/9libs/9libs-1.0-r1.ebuild,v 1.6 2009/07/23 23:38:30 vostorga Exp $ + +inherit toolchain-funcs DESCRIPTION="A package of Plan 9 compatibility libraries" HOMEPAGE="http://www.netlib.org/research/9libs/9libs-1.0.README" @@ -23,7 +25,7 @@ src_compile() { --includedir=/usr/include/9libs \ --enable-shared \ || die "econf failed" - emake || die + emake CC=$(tc-getCC) || die } src_install() { diff --git a/dev-libs/9libs/9libs-1.0.ebuild b/dev-libs/9libs/9libs-1.0.ebuild index d53c03fe5ebc..f53c439af550 100644 --- a/dev-libs/9libs/9libs-1.0.ebuild +++ b/dev-libs/9libs/9libs-1.0.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/9libs/9libs-1.0.ebuild,v 1.14 2008/09/20 09:09:17 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/9libs/9libs-1.0.ebuild,v 1.15 2009/07/23 23:38:30 vostorga Exp $ + +inherit toolchain-funcs DESCRIPTION="A package of Plan 9 compatibility libraries" HOMEPAGE="http://www.netlib.org/research/9libs/9libs-1.0.README" @@ -14,13 +16,14 @@ IUSE="" DEPEND=">=x11-proto/xproto-7.0.4 >=x11-libs/libX11-1.0.0 >=x11-libs/libXt-1.0.0" +RDEPEND="${DEPEND}" src_compile() { econf \ --includedir=/usr/include/9libs \ --enable-shared \ || die "econf failed" - make || die + emake CC="$(tc-getCC)" || die } src_install() { diff --git a/dev-libs/9libs/ChangeLog b/dev-libs/9libs/ChangeLog index f9f8c39298c5..54d175ad2246 100644 --- a/dev-libs/9libs/ChangeLog +++ b/dev-libs/9libs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/9libs -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/9libs/ChangeLog,v 1.15 2008/09/20 09:09:17 dertobi123 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/9libs/ChangeLog,v 1.16 2009/07/23 23:38:30 vostorga Exp $ + + 23 Jul 2009; Víctor Ostorga <vostorga@gentoo.org> 9libs-1.0.ebuild, + 9libs-1.0-r1.ebuild: + Respecting CC variable, closes bug #243900 20 Sep 2008; Tobias Scherbaum <dertobi123@gentoo.org> 9libs-1.0.ebuild, 9libs-1.0-r1.ebuild: |