diff options
author | Timothy Redaelli <drizzt@gentoo.org> | 2007-04-16 14:21:52 +0000 |
---|---|---|
committer | Timothy Redaelli <drizzt@gentoo.org> | 2007-04-16 14:21:52 +0000 |
commit | 0ec74624317dd8c11900992c4651f3c4d8d3b6b9 (patch) | |
tree | 3572a9942b0dba5ea6a5fa6d8c7692642005bf0e /net-libs/opal | |
parent | modules->update to update-modules per bug #174766 (diff) | |
download | gentoo-2-0ec74624317dd8c11900992c4651f3c4d8d3b6b9.tar.gz gentoo-2-0ec74624317dd8c11900992c4651f3c4d8d3b6b9.tar.bz2 gentoo-2-0ec74624317dd8c11900992c4651f3c4d8d3b6b9.zip |
Fixed cross-distcc
(Portage version: 2.1.2.3)
Diffstat (limited to 'net-libs/opal')
-rw-r--r-- | net-libs/opal/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/opal/opal-2.2.8.ebuild | 13 |
2 files changed, 11 insertions, 7 deletions
diff --git a/net-libs/opal/ChangeLog b/net-libs/opal/ChangeLog index 4e7fe2fbee5c..f11229a24964 100644 --- a/net-libs/opal/ChangeLog +++ b/net-libs/opal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/opal # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.32 2007/04/14 08:57:55 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.33 2007/04/16 14:21:52 drizzt Exp $ + + 16 Apr 2007; Timothy Redaelli <drizzt@gentoo.org> opal-2.2.8.ebuild: + Fixed cross-distcc *opal-2.2.8 (14 Apr 2007) diff --git a/net-libs/opal/opal-2.2.8.ebuild b/net-libs/opal/opal-2.2.8.ebuild index 804057f917f5..bc233adfb0fd 100644 --- a/net-libs/opal/opal-2.2.8.ebuild +++ b/net-libs/opal/opal-2.2.8.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-2.2.8.ebuild,v 1.1 2007/04/14 08:57:55 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-2.2.8.ebuild,v 1.2 2007/04/16 14:21:52 drizzt Exp $ -inherit eutils flag-o-matic multilib +inherit eutils flag-o-matic multilib toolchain-funcs DESCRIPTION="OPAL library, used by Ekiga" HOMEPAGE="http://www.ekiga.org" @@ -19,12 +19,13 @@ RDEPEND="~dev-libs/pwlib-1.10.$[${PV##*.}-1] src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # Makefile is currently broken with NOTRACE=1, fix that - epatch ${FILESDIR}/${PN}-2.1.1-notrace.diff + epatch "${FILESDIR}"/${PN}-2.1.1-notrace.diff } src_compile() { + tc-export CC CXX local makeopts local myconf @@ -49,7 +50,7 @@ src_compile() { econf \ PWLIBDIR=/usr/share/pwlib \ - OPALDIR=${S} \ + OPALDIR="${S}" \ ${myconf} || die "configure failed" emake ${makeopts} opt || die "make failed" @@ -81,7 +82,7 @@ src_install() { ### # Install stuff # - make PREFIX=/usr DESTDIR=${D} \ + make PREFIX=/usr DESTDIR="${D}" \ ${makeopts} install || die "install failed" libdir=$(get_libdir) |