From b596f9f477d78eb31712117f1f8bbf1030199eac Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Sat, 16 Jul 2005 21:49:13 +0000 Subject: boost-jam-native: - upgrade to 3.1.10 - minor description reformatting - use ${STAGING_BINDIR} in do_stage() --- packages/boost/boost-jam-native_3.1.10.bb | 35 +++++++++++++++++++++++++++++++ packages/boost/boost-jam-native_3.1.9.bb | 35 ------------------------------- 2 files changed, 35 insertions(+), 35 deletions(-) create mode 100644 packages/boost/boost-jam-native_3.1.10.bb delete mode 100644 packages/boost/boost-jam-native_3.1.9.bb diff --git a/packages/boost/boost-jam-native_3.1.10.bb b/packages/boost/boost-jam-native_3.1.10.bb new file mode 100644 index 0000000000..3a844b191e --- /dev/null +++ b/packages/boost/boost-jam-native_3.1.10.bb @@ -0,0 +1,35 @@ +# The Boost web site provides free peer-reviewed portable +# C++ source libraries. The emphasis is on libraries which +# work well with the C++ Standard Library. The libraries are +# intended to be widely useful, and are in regular use by +# thousands of programmers across a broad spectrum of applications. +DESCRIPTION = "Make system for boost (native)" +HOMEPAGE = "http://www.boost.org/" +MAINTAINER = "John Bowler " +SECTION = "devel" +PRIORITY = "optional" +LICENSE = "Boost Software License" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/boost/boost-jam-${PV}.tgz" +S = "${WORKDIR}/boost-jam-${PV}" + +inherit native + +do_compile() { + set -ex + rm -rf bin.* + ./build.sh gcc +} + +# This is too terrible - the build script doesn't give any good +# way I can see to find out where the binaries are placed, so +# rely on only one bin.foo directory being created. +do_stage() { + set -ex + install -c -m 755 bin.*/jam ${STAGING_BINDIR}/ + install -c -m 755 bin.*/mkjambase ${STAGING_BINDIR}/ + install -c -m 755 bin.*/yyacc ${STAGING_BINDIR}/ + rm -f ${STAGING_BINDIR}/bjam + ln -sf ./jam ${STAGING_BINDIR}/bjam +} diff --git a/packages/boost/boost-jam-native_3.1.9.bb b/packages/boost/boost-jam-native_3.1.9.bb deleted file mode 100644 index e13d160a37..0000000000 --- a/packages/boost/boost-jam-native_3.1.9.bb +++ /dev/null @@ -1,35 +0,0 @@ -# The Boost web site provides free peer-reviewed portable -# C++ source libraries. The emphasis is on libraries which -# work well with the C++ Standard Library. The libraries are -# intended to be widely useful, and are in regular use by -# thousands of programmers across a broad spectrum of applications. -DESCRIPTION = "Make system for boost (native)" -HOMEPAGE = "http://www.boost.org/" -MAINTAINER = "John Bowler " -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "Boost Software License" - -SRC_URI = "http://download.sourceforge.net/boost/boost-jam-${PV}.tgz" - -inherit native - -S = "${WORKDIR}/boost-jam-${PV}" - -do_compile() { - set -ex - rm -rf bin.* - ./build.sh gcc -} - -# This is too terrible - the build script doesn't give any good -# way I can see to find out where the binaries are placed, so -# rely on only one bin.foo directory being created. -do_stage() { - set -ex - install -c -m 755 bin.*/jam ${bindir} - install -c -m 755 bin.*/mkjambase ${bindir} - install -c -m 755 bin.*/yyacc ${bindir} - rm -f ${bindir}/bjam - ln ${bindir}/jam ${bindir}/bjam -} -- cgit v1.2.3