summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-08-23 01:39:26 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-08-23 01:39:26 +0000
commit210edeb0e0625d466a150a87c47f23b0c95e0530 (patch)
tree1a97b8743040ffbc458d16d2d2ba223bdee5e68f /net-misc/netkit-timed
parentFix init script for #107484 & #102179 (chroot & multiple instance support) (diff)
downloadgentoo-2-210edeb0e0625d466a150a87c47f23b0c95e0530.tar.gz
gentoo-2-210edeb0e0625d466a150a87c47f23b0c95e0530.tar.bz2
gentoo-2-210edeb0e0625d466a150a87c47f23b0c95e0530.zip
remove unused patches
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/netkit-timed')
-rw-r--r--net-misc/netkit-timed/ChangeLog8
-rw-r--r--net-misc/netkit-timed/files/0.17-timed.patch25
-rw-r--r--net-misc/netkit-timed/files/timed.rc535
3 files changed, 6 insertions, 62 deletions
diff --git a/net-misc/netkit-timed/ChangeLog b/net-misc/netkit-timed/ChangeLog
index c7df5ab77c3f..74090adb47a9 100644
--- a/net-misc/netkit-timed/ChangeLog
+++ b/net-misc/netkit-timed/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/netkit-timed
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-timed/ChangeLog,v 1.20 2008/02/05 11:11:42 corsair Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-timed/ChangeLog,v 1.21 2009/08/23 01:39:25 darkside Exp $
+
+ 23 Aug 2009; Jeremy Olexa <darkside@gentoo.org> -files/0.17-timed.patch,
+ -files/timed.rc5:
+ remove unused patches
05 Feb 2008; Markus Rothe <corsair@gentoo.org>
netkit-timed-0.17-r8.ebuild:
diff --git a/net-misc/netkit-timed/files/0.17-timed.patch b/net-misc/netkit-timed/files/0.17-timed.patch
deleted file mode 100644
index 59e7952c28bc..000000000000
--- a/net-misc/netkit-timed/files/0.17-timed.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -ru netkit-timed-0.17.orig/timed/timed/timed.c netkit-timed-0.17/timed/timed/timed.c
---- netkit-timed-0.17.orig/timed/timed/timed.c 1999-12-13 03:35:07.000000000 +0930
-+++ netkit-timed-0.17/timed/timed/timed.c 2004-08-07 09:37:11.924147496 +0930
-@@ -39,10 +39,10 @@
- * From: @(#)timed.c 5.1 (Berkeley) 5/11/93
- */
- char timed_rcsid[] =
-- "$Id: 0.17-timed.patch,v 1.1 2004/08/07 01:31:34 dragonheart Exp $";
-+ "$Id: 0.17-timed.patch,v 1.1 2004/08/07 01:31:34 dragonheart Exp $";
-
- #ifdef sgi
--#ident "$Revision: 1.1 $"
-+#ident "$Revision: 1.1 $"
- #endif /* sgi */
-
- #define TSPTYPES
-@@ -899,7 +899,7 @@
- get_goodgroup(int force)
- {
- # define NG_DELAY (30*60*CLK_TCK) /* 30 minutes */
-- static unsigned long last_update = -NG_DELAY;
-+ const unsigned long last_update = -NG_DELAY;
- unsigned long new_update;
- /* struct hosttbl *htp; */
- struct goodhost *ghp, **ghpp;
diff --git a/net-misc/netkit-timed/files/timed.rc5 b/net-misc/netkit-timed/files/timed.rc5
deleted file mode 100644
index 96e9a8aa7d0b..000000000000
--- a/net-misc/netkit-timed/files/timed.rc5
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-#RCUPDATE:3 4:71:This line is required for script management
-
-. /etc/rc.d/config/functions
-. /etc/rc.d/config/basic
-
-SERVICE=timed
-EXE="/usr/sbin/timed"
-opts="start stop reconfig restart"
-
-start() {
- ebegin "Starting ${SERVICE}"
- start-stop-daemon --start --quiet --exec $EXE -- $TIMED 1>&2
- eend $? "Error starting ${SERVICE}."
-}
-
-stop() {
- ebegin "Stopping ${SERVICE}"
- start-stop-daemon --stop --quiet -u root -n $SERVICE 1>&2
- eend $? "Error stopping ${SERVICE}."
-}
-
-reconfig () {
- ebegin "Reconfiguring ${SERVICE}"
- start-stop-daemon --stop --quiet -u root -n $SERVICE --signal 1 1>&2
- eend $? "Error reconfiguring ${SERVICE}."
-}
-
-restart () {
- stop
- start
-}
-doservice ${@}
-
-