diff options
author | Henrik Brix Andersen <brix@gentoo.org> | 2006-04-18 09:46:05 +0000 |
---|---|---|
committer | Henrik Brix Andersen <brix@gentoo.org> | 2006-04-18 09:46:05 +0000 |
commit | b3ab1dd1556064bb273d2760ad0c1e08d2b042f1 (patch) | |
tree | 27b59c4ece99711ae1f4dad15c7304b30eeb377a /sys-apps/watchdog/files | |
parent | added scapy visual USE flag (diff) | |
download | gentoo-2-b3ab1dd1556064bb273d2760ad0c1e08d2b042f1.tar.gz gentoo-2-b3ab1dd1556064bb273d2760ad0c1e08d2b042f1.tar.bz2 gentoo-2-b3ab1dd1556064bb273d2760ad0c1e08d2b042f1.zip |
Version bump.
(Portage version: 2.0.54)
Diffstat (limited to 'sys-apps/watchdog/files')
5 files changed, 60 insertions, 0 deletions
diff --git a/sys-apps/watchdog/files/digest-watchdog-5.2.5_p1 b/sys-apps/watchdog/files/digest-watchdog-5.2.5_p1 new file mode 100644 index 000000000000..2d046a5a59a7 --- /dev/null +++ b/sys-apps/watchdog/files/digest-watchdog-5.2.5_p1 @@ -0,0 +1,2 @@ +MD5 cb4581c3af21559ecf054aa066045f3a watchdog_5.2.5-1.diff.gz 8240 +MD5 ec498ce0abf0a789b8ad748eb1109ed7 watchdog_5.2.5.orig.tar.gz 128599 diff --git a/sys-apps/watchdog/files/watchdog-5.2.5_p1-conf.d b/sys-apps/watchdog/files/watchdog-5.2.5_p1-conf.d new file mode 100644 index 000000000000..35a9a5a333f8 --- /dev/null +++ b/sys-apps/watchdog/files/watchdog-5.2.5_p1-conf.d @@ -0,0 +1,6 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/watchdog/files/watchdog-5.2.5_p1-conf.d,v 1.1 2006/04/18 09:46:05 brix Exp $ + +# for more info, see watchdog(8) +WATCHDOG_OPTS="" diff --git a/sys-apps/watchdog/files/watchdog-5.2.5_p1-init.d b/sys-apps/watchdog/files/watchdog-5.2.5_p1-init.d new file mode 100644 index 000000000000..f0b2f520b640 --- /dev/null +++ b/sys-apps/watchdog/files/watchdog-5.2.5_p1-init.d @@ -0,0 +1,22 @@ +#!/sbin/runscript +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/watchdog/files/watchdog-5.2.5_p1-init.d,v 1.1 2006/04/18 09:46:05 brix Exp $ + +depend() { + need localmount + use logger +} + +start() { + ebegin "Starting watchdog" + start-stop-daemon --start --quiet --exec /usr/sbin/watchdog \ + -- ${WATCHDOG_OPTS} + eend ${?} +} + +stop() { + ebegin "Stopping watchdog" + start-stop-daemon --stop --retry 5 --quiet --exec /usr/sbin/watchdog + eend ${?} +} diff --git a/sys-apps/watchdog/files/watchdog-5.2.5_p1-sundries.patch b/sys-apps/watchdog/files/watchdog-5.2.5_p1-sundries.patch new file mode 100644 index 000000000000..2d3d0a1f2986 --- /dev/null +++ b/sys-apps/watchdog/files/watchdog-5.2.5_p1-sundries.patch @@ -0,0 +1,19 @@ +--- include/sundries.h.orig 2004-08-06 01:33:43.525091352 -0400 ++++ include/sundries.h 2004-08-06 01:33:58.254852088 -0400 +@@ -46,16 +46,7 @@ + char *xstrconcat3 (const char *, const char *, const char *); + char *xstrconcat4 (const char *, const char *, const char *, const char *); + +-/* Here is some serious cruft. */ +-#ifdef __GNUC__ +-#if defined(__GNUC_MINOR__) && __GNUC__ == 2 && __GNUC_MINOR__ >= 5 + void die (int errcode, const char *fmt, ...) __attribute__ ((noreturn)); +-#else /* GNUC < 2.5 */ +-void die (int errcode, const char *fmt, ...); +-#endif /* GNUC < 2.5 */ +-#else /* !__GNUC__ */ +-void die (int errcode, const char *fmt, ...); +-#endif /* !__GNUC__ */ + + #ifdef HAVE_NFS + int nfsmount (const char *spec, const char *node, int *flags, diff --git a/sys-apps/watchdog/files/watchdog-5.2.5_p1-uclibc.patch b/sys-apps/watchdog/files/watchdog-5.2.5_p1-uclibc.patch new file mode 100644 index 000000000000..1986ed88774a --- /dev/null +++ b/sys-apps/watchdog/files/watchdog-5.2.5_p1-uclibc.patch @@ -0,0 +1,11 @@ +--- src/fstab.c.orig 2004-08-23 15:32:22 +0000 ++++ src/fstab.c 2004-08-23 15:32:36 +0000 +@@ -237,7 +237,7 @@ + /* Ensure that the lock is released if we are interrupted. */ + static void + handler (int sig) { +- die (EX_USER, "%s", sys_siglist[sig]); ++ die (EX_USER, "%s", strsignal(sig)); + } + + static void |