diff options
author | Tim Biermann <tbier@posteo.de> | 2022-02-28 15:27:20 +0100 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-02-28 15:27:20 +0100 |
commit | 9af22b35852523dc2ed20b141b02ad19a991888d (patch) | |
tree | 81bc14e92a989f22d3eff961687daed7eaf679cc /distcc | |
parent | fb69d435de02a450f3f9228bb63220e52439f809 (diff) | |
download | contrib-9af22b35852523dc2ed20b141b02ad19a991888d.tar.gz contrib-9af22b35852523dc2ed20b141b02ad19a991888d.tar.xz |
distcc: move rundir to /run
Diffstat (limited to 'distcc')
-rw-r--r-- | distcc/.footprint | 3 | ||||
-rw-r--r-- | distcc/.signature | 6 | ||||
-rw-r--r-- | distcc/Pkgfile | 10 |
3 files changed, 9 insertions, 10 deletions
diff --git a/distcc/.footprint b/distcc/.footprint index f3a18168c..99ad0484f 100644 --- a/distcc/.footprint +++ b/distcc/.footprint @@ -82,6 +82,3 @@ drwxr-xr-x root/root usr/share/man/man1/ -rw-r--r-- root/root usr/share/man/man1/include_server.1.gz -rw-r--r-- root/root usr/share/man/man1/lsdistcc.1.gz -rw-r--r-- root/root usr/share/man/man1/pump.1.gz -drwxr-xr-x root/root var/ -drwxr-xr-x root/root var/run/ -drwxr-xr-x distcc/distcc var/run/distcc/ diff --git a/distcc/.signature b/distcc/.signature index e6dd6c1fb..2900953e8 100644 --- a/distcc/.signature +++ b/distcc/.signature @@ -1,7 +1,7 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF3wn98CWr520YAVBLjfYQJOjzyYe12X90c41Cx2aY9m1f5GPqiIc1wOEOIC96ahfYlfBPHW+I/Is40/Lwe53pBQ0= -SHA256 (Pkgfile) = 6a59a781996dcfa65f56eab286cec2e77348dad8963aa75e1acefcddd09d135d -SHA256 (.footprint) = fb48d5aa6716e60ef693e7f6fa644a28ed997cdb4277e030ae704717c0db74a2 +RWSagIOpLGJF34ZZJCLwJkYiPxk1IGFFPNPyLm2Q8/UV/7wSM3VdFCqHd+o36rXDcyc3X5Yk99A8MFItgk7FxiTdWvrqgJCzxAw= +SHA256 (Pkgfile) = 0810a680d6adc88d25b4844ba69968fa491249a21a5d84a5cf4b3f05036eae17 +SHA256 (.footprint) = e887b46b7a5b0ae6ec61d54fc92b2bcac33e3b29cc4f694c0310d59175567815 SHA256 (distcc-3.4.tar.gz) = 2b99edda9dad9dbf283933a02eace6de7423fe5650daa4a728c950e5cd37bd7d SHA256 (distccd) = 43729d96aea5b876de1d52e0978db322f1853c082fc0ca127e82cb0db63d3579 SHA256 (distccd.conf) = afd1ba97aaf23061ba4b4d1a1613eee3a709c91311260de494ce063556b463e3 diff --git a/distcc/Pkgfile b/distcc/Pkgfile index b2ec9af57..881117d5f 100644 --- a/distcc/Pkgfile +++ b/distcc/Pkgfile @@ -1,22 +1,24 @@ # Description: A tool to distribute compilations. # URL: https://github.com/distcc/distcc # Maintainer: Danny Rawlins, crux at romster dot me -# Optional: gtk avahi +# Optional: avahi gtk3 name=distcc version=3.4 -release=2 +release=3 source=(https://github.com/distcc/distcc/releases/download/v$version/$name-$version.tar.gz distccd distccd.conf) build() { cd $name-$version -prt-get isinst gtk3 || PKGMK_DISTCC+=' --without-gtk' -prt-get isinst popt || PKGMK_DISTCC+=' --with-included-popt' + prt-get isinst gtk3 || PKGMK_DISTCC+=' --without-gtk' + prt-get isinst popt || PKGMK_DISTCC+=' --with-included-popt' ./autogen.sh + sed -i 's/ install-gnome-data//g' Makefile.in + ./configure ${PKGMK_DISTCC} \ --prefix=/usr \ --sysconfdir=/etc \ |