summaryrefslogtreecommitdiff
path: root/community/distcc
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-05-14 01:18:40 -0700
committerroot <root@rshg054.dnsready.net>2013-05-14 01:18:40 -0700
commit2e5b72e5e8dfb5199a9b0da7c76d052a456662c2 (patch)
treefa055d4e2f367acb518de6c4e06b77b6d8cbef75 /community/distcc
parent66cb4a487ad73063c6b000279a5d5558fb7603f5 (diff)
Tue May 14 01:18:40 PDT 2013
Diffstat (limited to 'community/distcc')
-rw-r--r--community/distcc/PKGBUILD7
-rw-r--r--community/distcc/distccd38
2 files changed, 2 insertions, 43 deletions
diff --git a/community/distcc/PKGBUILD b/community/distcc/PKGBUILD
index 4c3bd645e..c790c7ac6 100644
--- a/community/distcc/PKGBUILD
+++ b/community/distcc/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 81575 2012-12-24 15:00:09Z spupykin $
+# $Id: PKGBUILD 90657 2013-05-13 14:21:37Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
pkgname=distcc
pkgver=3.1
-pkgrel=10
+pkgrel=11
pkgdesc="A distributed C, C++, Obj C compiler"
arch=('i686' 'x86_64')
url="http://code.google.com/p/distcc/"
@@ -17,11 +17,9 @@ optdepends=('gtk2: for distccmon-gnome'
backup=('etc/conf.d/distccd'
'etc/distcc/hosts')
source=(http://distcc.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
- distccd
distccd.conf.d
distccd.service)
md5sums=('a1a9d3853df7133669fffec2a9aab9f3'
- '1c918474372c09304772c20c4de484fa'
'239aae53250e3e35288cba566bc0bbf1'
'09f0688da9c1840e518d2593bd5c3830')
@@ -46,7 +44,6 @@ 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
diff --git a/community/distcc/distccd b/community/distcc/distccd
deleted file mode 100644
index 4702d6820..000000000
--- a/community/distcc/distccd
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/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