summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Brix Andersen <brix@gentoo.org>2005-12-14 18:43:25 +0000
committerHenrik Brix Andersen <brix@gentoo.org>2005-12-14 18:43:25 +0000
commita6699a3008f5d47e5c256f74c01dae1678f7b1f3 (patch)
treece476c4d6240d22f71faced91353283ffd24543e /sys-apps/watchdog
parentPruned old ebuilds. (diff)
downloadhistorical-a6699a3008f5d47e5c256f74c01dae1678f7b1f3.tar.gz
historical-a6699a3008f5d47e5c256f74c01dae1678f7b1f3.tar.bz2
historical-a6699a3008f5d47e5c256f74c01dae1678f7b1f3.zip
Pruned old ebuilds.
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'sys-apps/watchdog')
-rw-r--r--sys-apps/watchdog/ChangeLog5
-rw-r--r--sys-apps/watchdog/files/digest-watchdog-5.21
-rw-r--r--sys-apps/watchdog/watchdog-5.2.ebuild50
3 files changed, 4 insertions, 52 deletions
diff --git a/sys-apps/watchdog/ChangeLog b/sys-apps/watchdog/ChangeLog
index 9deafb5d707a..7091767d3d0f 100644
--- a/sys-apps/watchdog/ChangeLog
+++ b/sys-apps/watchdog/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/watchdog
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/watchdog/ChangeLog,v 1.2 2005/11/27 10:14:24 brix Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/watchdog/ChangeLog,v 1.3 2005/12/14 18:43:25 brix Exp $
+
+ 14 Dec 2005; Henrik Brix Andersen <brix@gentoo.org> -watchdog-5.2.ebuild:
+ Pruned old ebuilds.
*watchdog-5.2.4_p5 (27 Nov 2005)
diff --git a/sys-apps/watchdog/files/digest-watchdog-5.2 b/sys-apps/watchdog/files/digest-watchdog-5.2
deleted file mode 100644
index ff7a265cda3f..000000000000
--- a/sys-apps/watchdog/files/digest-watchdog-5.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 aed04b6789fc592a401c05b8f3828a16 watchdog-5.2.tar.gz 126296
diff --git a/sys-apps/watchdog/watchdog-5.2.ebuild b/sys-apps/watchdog/watchdog-5.2.ebuild
deleted file mode 100644
index 016ca627a1ac..000000000000
--- a/sys-apps/watchdog/watchdog-5.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/watchdog/watchdog-5.2.ebuild,v 1.1 2005/11/27 10:07:03 brix Exp $
-
-inherit eutils
-
-DESCRIPTION="A software watchdog"
-HOMEPAGE="http://www.ibiblio.org/pub/Linux/system/daemons/watchdog/"
-SRC_URI="http://www.ibiblio.org/pub/Linux/system/daemons/watchdog/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PV}-sundries.patch
- epatch ${FILESDIR}/${PV}-alpha.patch
-}
-
-src_compile() {
- econf \
- --sysconfdir=/etc/watchdog \
- --with-configfile=/etc/watchdog/watchdog.conf \
- || die "econf failed"
- emake || die
-}
-
-src_install() {
- dodir /etc/watchdog
- make DESTDIR="${D}" install || die
-
- exeinto /etc/init.d
- doexe ${FILESDIR}/watchdog
- insinto /etc/conf.d
- newins ${FILESDIR}/watchdog.conf.d watchdog
-}
-
-pkg_postinst() {
- einfo "To enable the start-up script run \"rc-update add watchdog boot\"."
- if [ ! -e ${ROOT}/dev/watchdog ] ; then
- ewarn "No /dev/watchdog found! Make sure your kernel has watchdog support"
- ewarn "compiled in or the kernel module is loaded. The watchdog service"
- ewarn "will not start at boot until your kernel is configured properly."
- fi
-}