2013-02-01 10:03:15 +00:00
|
|
|
# Template file for 'chroot-distcc'
|
|
|
|
pkgname=chroot-distcc
|
|
|
|
version=3.2rc1
|
2014-06-08 09:52:36 +00:00
|
|
|
revision=3
|
2013-02-01 10:03:15 +00:00
|
|
|
wrksrc="distcc-${version}"
|
2014-01-01 15:10:11 +00:00
|
|
|
bootstrap=yes
|
2014-01-08 09:55:31 +00:00
|
|
|
build_style=gnu-configure
|
|
|
|
configure_args="--with-included-popt --without-avahi --without-gnome
|
|
|
|
--without-gtk --disable-Werror ac_cv_path_PYTHON=/bin/false"
|
|
|
|
make_install_target="install-programs"
|
2014-01-01 15:10:11 +00:00
|
|
|
conflicts="distcc>=0"
|
2013-02-01 10:03:15 +00:00
|
|
|
short_desc="Distributed compilation for faster C/C++ builds -- for xbps-src use"
|
2014-06-08 09:52:36 +00:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2013-02-01 10:03:15 +00:00
|
|
|
homepage="http://code.google.com/p/distcc"
|
|
|
|
license="GPL-2"
|
|
|
|
distfiles="http://distcc.googlecode.com/files/distcc-${version}.tar.bz2"
|
|
|
|
checksum=311671e844625d7fdb18dd3d096cd855751cfe8de13827682bcb7beff9133b30
|
|
|
|
|
2014-01-08 09:55:31 +00:00
|
|
|
pre_configure() {
|
2013-02-01 10:03:15 +00:00
|
|
|
sed -i -e 's|^\(all: $(bin_PROGRAMS)\) pump include-server|\1|g' Makefile.in
|
|
|
|
}
|
|
|
|
|
2014-01-08 09:55:31 +00:00
|
|
|
post_install() {
|
2013-02-01 10:03:15 +00:00
|
|
|
# Remove useless files.
|
|
|
|
rm -f ${DESTDIR}/usr/bin/distccd
|
|
|
|
rm -rf ${DESTDIR}/etc
|
|
|
|
rm -rf ${DESTDIR}/usr/share
|
|
|
|
|
|
|
|
# gcc wrappers
|
|
|
|
vmkdir usr/lib/distcc/bin
|
|
|
|
for f in gcc cc c++ cpp g++; do
|
|
|
|
ln -sfr ${DESTDIR}/usr/bin/distcc ${DESTDIR}/usr/lib/distcc/bin/${f}
|
|
|
|
done
|
|
|
|
}
|