# Maintainer: Alexander F. Rødseth # Contributor: John # Contributor: Sergej Pupykin # Contributor: Judd Vinet # Contributor: Giovanni Scafora # ALARM: Kevin Mihelich # - added --without-avahi to configure # - removed gtk2 from deps and --with-gtk from configure # - patch to allow zero timeout (INT_MAX time to complete) pkgname=distcc pkgver=3.3.3 pkgrel=9 _gccver=10.2.0 # Current GCC version, used for symlinks. See FS#69044 pkgdesc='Distributed compilation service for C, C++ and Objective-C' arch=(x86_64) url='https://github.com/distcc/distcc' license=(GPL) depends=(popt) makedepends=(git python) optdepends=("gcc=$_gccver" python) backup=(etc/conf.d/distccd etc/distcc/hosts) source=("git+$url#commit=4cde9bcfbda589abd842e3bbc652ce369085eaae" # tag: v3.3.3 distccd.conf.d distccd.service sysusers.conf allow-zero-timeout.patch) sha256sums=('SKIP' '43e02b461841ca2976816c244a0eca8b24820ca143f73cc0924403d75a8c012f' '360493245590d8c1480ff93cd30c9e81cb86efebacd78e45f37e7d6cdbcc2136' '4e037a6225f498b51d6902d117be979454ac78ec5fd2f65f1d5a38e10859612a' '73ac95393ee94bcb28f49499e8eec61bfd29a7de38889eaebd237fbbcba6e2c6') prepare() { cd $pkgname patch -p1 -i ../allow-zero-timeout.patch ./autogen.sh sed -i 's/ install-gnome-data//g' Makefile.in # FS#66418, support Python 3.9 find . -name "*.py" -type f -exec sed -i 's/e.clock(/e.perf_counter(/g' {} \; } build() { cd "$pkgname" export CFLAGS+=' -fcommon' ./configure \ --enable-rfc2553 \ --mandir=/usr/share/man \ --prefix=/usr \ --sbindir=/usr/bin \ --sysconfdir=/etc \ --without-avahi make WERROR_CFLAGS= INCLUDESERVER_PYTHON=/usr/bin/python } package() { make -C $pkgname \ DESTDIR="$pkgdir" \ INCLUDESERVER_PYTHON=/usr/bin/python \ install # Configuration install -Dm644 distccd.conf.d "$pkgdir/etc/conf.d/distccd" install -Dm644 distccd.service \ "$pkgdir/usr/lib/systemd/system/distccd.service" # Symlinks install -d "$pkgdir/usr/lib/$pkgname/bin" _targets=(c++ c89 c99 cc clang clang++ cpp g++ gcc) for bin in "${_targets[@]}"; do # For whitelist since version 3.3, see FS#57978 ln -sf ../../bin/$pkgname "$pkgdir/usr/lib/$pkgname/$bin" # Needed for makepkg to work ln -sf ../../../bin/$pkgname "$pkgdir/usr/lib/$pkgname/bin/$bin" done # FS#67629 install -Dm644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/distccd.conf" } # getver: distcc.org