From f99470ae352cc7d5ccf74ca31d8864d061e739c1 Mon Sep 17 00:00:00 2001 From: Danny Rawlins Date: Sun, 22 Jul 2007 12:10:23 +1000 Subject: [PATCH] boost-jam: new port --- boost-jam/.footprint | 8 ++++++++ boost-jam/.md5sum | 1 + boost-jam/Pkgfile | 29 +++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 boost-jam/.footprint create mode 100644 boost-jam/.md5sum create mode 100644 boost-jam/Pkgfile diff --git a/boost-jam/.footprint b/boost-jam/.footprint new file mode 100644 index 000000000..17a50f74a --- /dev/null +++ b/boost-jam/.footprint @@ -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 diff --git a/boost-jam/.md5sum b/boost-jam/.md5sum new file mode 100644 index 000000000..b3abe147c --- /dev/null +++ b/boost-jam/.md5sum @@ -0,0 +1 @@ +70d9d33c51961a6660862c35a5862e47 boost-jam-3.1.14.tgz diff --git a/boost-jam/Pkgfile b/boost-jam/Pkgfile new file mode 100644 index 000000000..a8e6a0490 --- /dev/null +++ b/boost-jam/Pkgfile @@ -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 +} +