51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
# Description: A tool to distribute compilations.
|
|
# URL: http://distcc.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Johannes Winkelmann, jw at tks6 dot net
|
|
# Optional: python
|
|
|
|
name=distcc
|
|
version=3.1
|
|
release=4
|
|
source=(http://distcc.googlecode.com/files/$name-$version.tar.bz2
|
|
distccd)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-nls \
|
|
--without-gnome \
|
|
--without-gtk \
|
|
--disable-Werror \
|
|
--with-included-popt
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
# distccd should be in sbin
|
|
install -d $PKG/usr/sbin
|
|
mv $PKG/usr/bin/distccd $PKG/usr/sbin/distccd
|
|
|
|
# install service
|
|
install -m 0755 -D $SRC/distccd $PKG/etc/rc.d/distccd
|
|
|
|
# create the masquerade directory
|
|
install -d $PKG/usr/lib/distcc
|
|
cd $PKG/usr/lib/distcc
|
|
for c in cc c++ gcc g++ cpp; do
|
|
ln -s ../../bin/distcc $c
|
|
done
|
|
cd -
|
|
|
|
rm -rf $PKG/usr/share/doc $PKG/usr/etc/default $PKG/usr/etc/distcc
|
|
rmdir $PKG/usr/etc $PKG/usr/share
|
|
|
|
# python is required for pump mode
|
|
if [ "$(prt-get isinst python)" = 'package python is not installed' ]; then
|
|
rm $PKG/usr/man/man1/{pump,include_server}.1
|
|
fi
|
|
}
|