From: Michael Lauer Date: Sat, 16 Jul 2005 21:49:13 +0000 (+0000) Subject: boost-jam-native: X-Git-Tag: Release-2010-05/1~9453^2~4156 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b596f9f477d78eb31712117f1f8bbf1030199eac;p=openembedded.git boost-jam-native: - upgrade to 3.1.10 - minor description reformatting - use ${STAGING_BINDIR} in do_stage() --- diff --git a/packages/boost/boost-jam-native_3.1.9.bb b/packages/boost/boost-jam-native_3.1.10.bb similarity index 73% rename from packages/boost/boost-jam-native_3.1.9.bb rename to packages/boost/boost-jam-native_3.1.10.bb index e13d160a37..3a844b191e 100644 --- a/packages/boost/boost-jam-native_3.1.9.bb +++ b/packages/boost/boost-jam-native_3.1.10.bb @@ -9,13 +9,13 @@ MAINTAINER = "John Bowler " SECTION = "devel" PRIORITY = "optional" LICENSE = "Boost Software License" +PR = "r0" -SRC_URI = "http://download.sourceforge.net/boost/boost-jam-${PV}.tgz" +SRC_URI = "${SOURCEFORGE_MIRROR}/boost/boost-jam-${PV}.tgz" +S = "${WORKDIR}/boost-jam-${PV}" inherit native -S = "${WORKDIR}/boost-jam-${PV}" - do_compile() { set -ex rm -rf bin.* @@ -27,9 +27,9 @@ do_compile() { # 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 + 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 }