mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
added back community/distcc to remove avahi dep
This commit is contained in:
parent
1f2508fc8f
commit
9857a3deb9
3 changed files with 101 additions and 0 deletions
55
community/distcc/PKGBUILD
Normal file
55
community/distcc/PKGBUILD
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
# $Id: PKGBUILD 55020 2011-08-31 13:12:35Z spupykin $
|
||||||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||||||
|
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
|
||||||
|
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
||||||
|
|
||||||
|
# ALARM: Kevin Mihelich <kevin@plugapps.com>
|
||||||
|
# - added --without-avahi to configure
|
||||||
|
|
||||||
|
pkgname=distcc
|
||||||
|
pkgver=3.1
|
||||||
|
pkgrel=5.1
|
||||||
|
pkgdesc="A distributed C, C++, Obj C compiler"
|
||||||
|
arch=('i686' 'x86_64')
|
||||||
|
url="http://code.google.com/p/distcc/"
|
||||||
|
license=('GPL')
|
||||||
|
depends=('gcc' 'popt')
|
||||||
|
makedepends=('gtk2' 'pkgconfig' 'python2')
|
||||||
|
optdepends=('gtk2: for distccmon-gnome'
|
||||||
|
'python2')
|
||||||
|
backup=(etc/conf.d/distccd)
|
||||||
|
source=(http://distcc.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
|
||||||
|
distccd
|
||||||
|
distccd.conf.d)
|
||||||
|
md5sums=('a1a9d3853df7133669fffec2a9aab9f3'
|
||||||
|
'1c918474372c09304772c20c4de484fa'
|
||||||
|
'89aaf6e9072092e283465a14e83f0f94')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
|
||||||
|
[ -f Makefile ] || PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
|
||||||
|
--with-gtk \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--without-avahi
|
||||||
|
make WERROR_CFLAGS= INCLUDESERVER_PYTHON=/usr/bin/python2
|
||||||
|
}
|
||||||
|
|
||||||
|
check() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
# make TEST_PYTHON=/usr/bin/python2 check
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
make DESTDIR="${pkgdir}/" INCLUDESERVER_PYTHON=/usr/bin/python2 install
|
||||||
|
install -D -m644 ${srcdir}/distccd.conf.d ${pkgdir}/etc/conf.d/distccd
|
||||||
|
install -D -m755 ${srcdir}/distccd ${pkgdir}/etc/rc.d/distccd
|
||||||
|
|
||||||
|
install -d ${pkgdir}/usr/lib/${pkgname}/bin
|
||||||
|
ln -sf /usr/bin/${pkgname} ${pkgdir}/usr/lib/${pkgname}/bin/cc
|
||||||
|
ln -sf /usr/bin/${pkgname} ${pkgdir}/usr/lib/${pkgname}/bin/gcc
|
||||||
|
ln -sf /usr/bin/${pkgname} ${pkgdir}/usr/lib/${pkgname}/bin/g++
|
||||||
|
ln -sf /usr/bin/${pkgname} ${pkgdir}/usr/lib/${pkgname}/bin/cpp
|
||||||
|
}
|
38
community/distcc/distccd
Executable file
38
community/distcc/distccd
Executable file
|
@ -0,0 +1,38 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
[ -f /etc/conf.d/distccd ] && . /etc/conf.d/distccd
|
||||||
|
|
||||||
|
. /etc/rc.conf
|
||||||
|
. /etc/rc.d/functions
|
||||||
|
|
||||||
|
PID=`pidof -o %PPID /usr/bin/distccd`
|
||||||
|
case "$1" in
|
||||||
|
start)
|
||||||
|
stat_busy "Starting distcc Daemon"
|
||||||
|
[ -z "$PID" ] && /usr/bin/distccd --daemon ${DISTCC_ARGS}
|
||||||
|
if [ $? -gt 0 ]; then
|
||||||
|
stat_fail
|
||||||
|
else
|
||||||
|
add_daemon distccd
|
||||||
|
stat_done
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
stop)
|
||||||
|
stat_busy "Stopping distcc Daemon"
|
||||||
|
[ ! -z "$PID" ] && kill $PID &> /dev/null
|
||||||
|
if [ $? -gt 0 ]; then
|
||||||
|
stat_fail
|
||||||
|
else
|
||||||
|
rm_daemon distccd
|
||||||
|
stat_done
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
restart)
|
||||||
|
$0 stop
|
||||||
|
sleep 1
|
||||||
|
$0 start
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "usage: $0 {start|stop|restart}"
|
||||||
|
esac
|
||||||
|
exit 0
|
8
community/distcc/distccd.conf.d
Normal file
8
community/distcc/distccd.conf.d
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#
|
||||||
|
# Parameters to be passed to distccd
|
||||||
|
#
|
||||||
|
# You must explicitly add IPs (or subnets) that are allowed to connect,
|
||||||
|
# using the --allow switch. See the distccd manpage for more info.
|
||||||
|
#
|
||||||
|
DISTCC_ARGS="--user nobody --allow 127.0.0.1"
|
||||||
|
|
Loading…
Reference in a new issue