diff options
author | Daniel Goller <morfic@gentoo.org> | 2004-12-12 23:40:59 +0000 |
---|---|---|
committer | Daniel Goller <morfic@gentoo.org> | 2004-12-12 23:40:59 +0000 |
commit | c8aeb87fe9b28d9547482252299101057d4b747b (patch) | |
tree | adc20e697ace5b6b33db97a53f7809cc5517b868 /dev-libs | |
parent | Fix bjam path (Manifest recommit) (diff) | |
download | gentoo-2-c8aeb87fe9b28d9547482252299101057d4b747b.tar.gz gentoo-2-c8aeb87fe9b28d9547482252299101057d4b747b.tar.bz2 gentoo-2-c8aeb87fe9b28d9547482252299101057d4b747b.zip |
Fix bjam path
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/boost/ChangeLog | 4 | ||||
-rw-r--r-- | dev-libs/boost/boost-1.32.0.ebuild | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/dev-libs/boost/ChangeLog b/dev-libs/boost/ChangeLog index 7c64f8fc0d7c..737a2c8fa68c 100644 --- a/dev-libs/boost/ChangeLog +++ b/dev-libs/boost/ChangeLog @@ -1,10 +1,10 @@ # ChangeLog for dev-libs/boost # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.29 2004/12/12 23:37:18 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.30 2004/12/12 23:40:59 morfic Exp $ 12 Dec 2004; Daniel Goller <morfic@gentoo.org> boost-1.32.0.ebuild: Fix bjam path - Thanks to dholth@fastmail.fm for noticing + Thanks to dholth@fastmail.fm and mayo@clara.co.uk for noticing + suggestions 11 Dec 2004; Daniel Goller <morfic@gentoo.org> boost-1.32.0.ebuild: Cleanup + maintenance diff --git a/dev-libs/boost/boost-1.32.0.ebuild b/dev-libs/boost/boost-1.32.0.ebuild index aeb4047723d6..abbb9e0ab2b0 100644 --- a/dev-libs/boost/boost-1.32.0.ebuild +++ b/dev-libs/boost/boost-1.32.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.32.0.ebuild,v 1.6 2004/12/12 02:41:44 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.32.0.ebuild,v 1.7 2004/12/12 23:37:18 morfic Exp $ # This ebuild was generated by Ebuilder v0.4. @@ -25,13 +25,15 @@ else arch=${ARCH} fi +BOOSTJAM=./tools/build/jam_src/bin.linux${arch}/bjam + src_compile() { cd ${S}/tools/build/jam_src ./build.sh || die "Failed to build bjam" cd ${S} # actual build - ./tools/build/jam_src/bin.linux${arch}/bjam \ + ${BOOSTJAM} \ -sBOOST_ROOT=${S} \ -sPYTHON_ROOT=/usr \ -sPYTHON_VERSION=${PYTHON_VERSION} \ @@ -43,7 +45,7 @@ src_compile() { } src_install () { - /tools/build/jam_src/bin.linux${arch}/bjam ${MAKEOPTS} \ + ${BOOSTJAM} ${MAKEOPTS} \ -sBOOST_ROOT=${S} \ -sPYTHON_ROOT=/usr \ -sPYTHON_VERSION=${PYTHON_VERSION} \ |