boost-jam-native:
authorMichael Lauer <mickey@vanille-media.de>
Sat, 16 Jul 2005 21:49:13 +0000 (21:49 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Sat, 16 Jul 2005 21:49:13 +0000 (21:49 +0000)
- upgrade to 3.1.10
- minor description reformatting
- use ${STAGING_BINDIR} in do_stage()

packages/boost/boost-jam-native_3.1.10.bb [moved from packages/boost/boost-jam-native_3.1.9.bb with 73% similarity]

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 e13d160..3a844b1 100644 (file)
@@ -9,13 +9,13 @@ MAINTAINER = "John Bowler <jbowler@acm.org>"
 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
 }