diff options
author | Lisa M. Seelye <lisa@gentoo.org> | 2003-08-08 20:31:21 +0000 |
---|---|---|
committer | Lisa M. Seelye <lisa@gentoo.org> | 2003-08-08 20:31:21 +0000 |
commit | 9b97a0578fe5d6ca84781ffc36ab4ede48f4c238 (patch) | |
tree | dc60ed71e302f1d56f2536104f97f3f7afd96b75 /sys-devel/distcc/files | |
parent | Removed RDEPEND and made x86 (diff) | |
download | gentoo-2-9b97a0578fe5d6ca84781ffc36ab4ede48f4c238.tar.gz gentoo-2-9b97a0578fe5d6ca84781ffc36ab4ede48f4c238.tar.bz2 gentoo-2-9b97a0578fe5d6ca84781ffc36ab4ede48f4c238.zip |
Incorporated bug 26204 into the conf and init scripts (DISTCC_TMPDIR), and added a CVS Header
Diffstat (limited to 'sys-devel/distcc/files')
-rw-r--r-- | sys-devel/distcc/files/2.8/conf | 4 | ||||
-rw-r--r-- | sys-devel/distcc/files/2.8/init | 2 | ||||
-rw-r--r-- | sys-devel/distcc/files/2.9/conf | 4 | ||||
-rw-r--r-- | sys-devel/distcc/files/2.9/init | 2 |
4 files changed, 12 insertions, 0 deletions
diff --git a/sys-devel/distcc/files/2.8/conf b/sys-devel/distcc/files/2.8/conf index f4184e0cc158..e4ba6c620c87 100644 --- a/sys-devel/distcc/files/2.8/conf +++ b/sys-devel/distcc/files/2.8/conf @@ -1,4 +1,5 @@ # Copyright 2003 Gentoo Technologies, Inc +# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/2.8/conf,v 1.3 2003/08/08 20:31:11 lisa Exp $ # distccd configuration file # this is the distccd executable @@ -11,3 +12,6 @@ DISTCCD_PIDFILE=/var/run/distccd/distccd.pid # Default port is 3632. For most people the default is okay. # DISTCCD_OPTS="--nice 20 --port 3632" +# This is the path that distccd and the monitors will look +# for the state files. +DISTCC_TMPDIR="" diff --git a/sys-devel/distcc/files/2.8/init b/sys-devel/distcc/files/2.8/init index c183d62648ab..d89d77125f1a 100644 --- a/sys-devel/distcc/files/2.8/init +++ b/sys-devel/distcc/files/2.8/init @@ -1,4 +1,5 @@ #!/sbin/runscript +# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/2.8/init,v 1.2 2003/08/08 20:31:11 lisa Exp $ depend() { need net @@ -7,6 +8,7 @@ depend() { start() { rm -f ${DISTCCD_PIDFILE} ebegin "Starting distccd" + DISTCC_TMPDIR="${DISTCC_TMPDIR}" \ PATH="$(gcc-config --get-bin-path):${PATH}" \ /sbin/start-stop-daemon --start --quiet \ --startas ${DISTCCD_EXEC} \ diff --git a/sys-devel/distcc/files/2.9/conf b/sys-devel/distcc/files/2.9/conf index f4184e0cc158..0c8b4210db64 100644 --- a/sys-devel/distcc/files/2.9/conf +++ b/sys-devel/distcc/files/2.9/conf @@ -1,4 +1,5 @@ # Copyright 2003 Gentoo Technologies, Inc +# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/2.9/conf,v 1.2 2003/08/08 20:31:11 lisa Exp $ # distccd configuration file # this is the distccd executable @@ -11,3 +12,6 @@ DISTCCD_PIDFILE=/var/run/distccd/distccd.pid # Default port is 3632. For most people the default is okay. # DISTCCD_OPTS="--nice 20 --port 3632" +# This is the path that distccd and the monitors will look +# for the state files. +DISTCC_TMPDIR="" diff --git a/sys-devel/distcc/files/2.9/init b/sys-devel/distcc/files/2.9/init index c183d62648ab..7241a1eefc64 100644 --- a/sys-devel/distcc/files/2.9/init +++ b/sys-devel/distcc/files/2.9/init @@ -1,4 +1,5 @@ #!/sbin/runscript +# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/2.9/init,v 1.2 2003/08/08 20:31:11 lisa Exp $ depend() { need net @@ -7,6 +8,7 @@ depend() { start() { rm -f ${DISTCCD_PIDFILE} ebegin "Starting distccd" + DISTCC_TMPDIR="${DISTCC_TMPDIR}" \ PATH="$(gcc-config --get-bin-path):${PATH}" \ /sbin/start-stop-daemon --start --quiet \ --startas ${DISTCCD_EXEC} \ |