summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLisa M. Seelye <lisa@gentoo.org>2007-03-05 00:30:50 +0000
committerLisa M. Seelye <lisa@gentoo.org>2007-03-05 00:30:50 +0000
commit704af858997422a4c13bd2f1fce0c6acc907896d (patch)
tree504862ed819572707bdc7b7e8950addf8aa428db /sys-devel
parentVersion bump. (diff)
downloadgentoo-2-704af858997422a4c13bd2f1fce0c6acc907896d.tar.gz
gentoo-2-704af858997422a4c13bd2f1fce0c6acc907896d.tar.bz2
gentoo-2-704af858997422a4c13bd2f1fce0c6acc907896d.zip
Pruning old versions as well as removing old PATCHLEVEL dirs that should not be in files dir.
(Portage version: 2.1.2.1)
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/distcc/ChangeLog6
-rw-r--r--sys-devel/distcc/files/2.17/conf40
-rw-r--r--sys-devel/distcc/files/2.17/init30
3 files changed, 5 insertions, 71 deletions
diff --git a/sys-devel/distcc/ChangeLog b/sys-devel/distcc/ChangeLog
index 0fc50be64f3c..07eb9a2450b8 100644
--- a/sys-devel/distcc/ChangeLog
+++ b/sys-devel/distcc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/distcc
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/ChangeLog,v 1.160 2007/01/05 09:14:13 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/ChangeLog,v 1.161 2007/03/05 00:30:50 lisa Exp $
+
+ 04 Mar 2007; Lisa Seelye <lisa@gentoo.org> -files/2.17/conf,
+ -files/2.17/init:
+ Prune old versions and old PATCHLEVEL dirs in files that shouldnt be there.
05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> distcc-2.16-r2.ebuild,
distcc-2.16-r3.ebuild, distcc-2.18.3-r6.ebuild, distcc-2.18.3-r7.ebuild,
diff --git a/sys-devel/distcc/files/2.17/conf b/sys-devel/distcc/files/2.17/conf
deleted file mode 100644
index a46161dd60eb..000000000000
--- a/sys-devel/distcc/files/2.17/conf
+++ /dev/null
@@ -1,40 +0,0 @@
-# /etc/conf.d/distccd: config file for /etc/init.d/distccd
-
-DISTCCD_OPTS=""
-
-# this is the distccd executable
-DISTCCD_EXEC=/usr/bin/distccd
-
-# this is where distccd will store its pid file
-DISTCCD_PIDFILE=/var/run/distccd/distccd.pid
-
-# set this option to run distccd with extra parameters
-# Default port is 3632. For most people the default is okay.
-DISTCCD_OPTS="${DISTCCD_OPTS} --port 3632"
-
-
-# Logging
-# You can change some logging options here:
-# --log-file FILE
-# --log-level LEVEL [critical,error,warning, notice, info, debug]
-#
-# Leaving --log-file blank will log to syslog
-# example: --log-file /dev/null --log-level warning
-# example: --log-level critical
-
-DISTCCD_OPTS="${DISTCCD_OPTS} --log-level critical"
-
-# SECURITY NOTICE:
-# It is HIGHLY recomended that you use the --allow or --listen options
-# for increased security. You can specify an IP to permit connections
-# from or a CIDR mask
-# --listen accepts only a single IP
-# example: --allow 192.168.0.0/24
-# example: --allow 192.168.0.5 --allow 192.168.0.150
-# example: --listen 192.168.0.2
-
-#DISTCCD_OPTS="${DISTCCD_OPTS} --allow 192.168.0.0/24 --listen 192.168.0.2"
-
-# set this for niceness
-# Default is 15
-DISTCCD_NICE="15"
diff --git a/sys-devel/distcc/files/2.17/init b/sys-devel/distcc/files/2.17/init
deleted file mode 100644
index cddadf345a80..000000000000
--- a/sys-devel/distcc/files/2.17/init
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/sbin/runscript
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/files/2.17/init,v 1.1 2004/08/22 19:14:10 lisa Exp $
-
-depend() {
- need net
- use ypbind
-}
-
-start() {
- [ -e "${DISTCCD_PIDFILE}" ] && rm -f ${DISTCCD_PIDFILE} &>/dev/null
-
- ebegin "Starting distccd"
- chown distcc `dirname ${DISTCCD_PIDFILE}` &>/dev/null
- TMPDIR="${TMPDIR}" \
- PATH="$(gcc-config --get-bin-path):${PATH}" \
- /sbin/start-stop-daemon --start --quiet --startas ${DISTCCD_EXEC} \
- --pidfile ${DISTCCD_PIDFILE} -- \
- --pid-file ${DISTCCD_PIDFILE} -N ${DISTCCD_NICE} --user distcc \
- ${DISTCCD_OPTS}
-
- eend $?
-}
-
-stop() {
- ebegin "Stopping distccd"
- start-stop-daemon --stop --quiet --pidfile "${DISTCCD_PIDFILE}"
- rm -f "${DISTCCD_PIDFILE}"
- eend $?
-}
-