boost-jam: new port

This commit is contained in:
Danny Rawlins 2007-07-22 12:10:23 +10:00
parent 7fc713de02
commit f99470ae35
3 changed files with 38 additions and 0 deletions

8
boost-jam/.footprint Normal file
View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/bjam
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/ccache/
lrwxrwxrwx root/root usr/lib/ccache/bjam -> ../../bin/ccache
drwxr-xr-x root/root usr/lib/distcc/
lrwxrwxrwx root/root usr/lib/distcc/bjam -> ../../bin/distcc

1
boost-jam/.md5sum Normal file
View File

@ -0,0 +1 @@
70d9d33c51961a6660862c35a5862e47 boost-jam-3.1.14.tgz

29
boost-jam/Pkgfile Normal file
View File

@ -0,0 +1,29 @@
# Description: Free peer-reviewed portable C++ source libraries.
# URL: http://www.boost.org/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Danny Rawlins, romster at shortcircuit dot net dot au
# Depends on:
name=boost-jam
version=3.1.14
release=1
source=(http://dl.sourceforge.net/sourceforge/boost/boost-jam-$version.tgz)
build() {
cd boost-jam-$version
./build.sh gcc
install -D -m755 bin.linuxx86/bjam $PKG/usr/bin/bjam
# install distcc symlinks if distcc is installed
if pkginfo -i |grep '^distcc '; then
install -d $PKG/usr/lib/distcc
cd $PKG/usr/lib/distcc && ln -s ../../bin/distcc bjam
fi
# install ccache symlinks if ccache is installed
if pkginfo -i |grep '^ccache '; then
install -d $PKG/usr/lib/ccache
cd $PKG/usr/lib/ccache && ln -s ../../bin/ccache bjam
fi
}