blob: 74a7140f4bfc6e7c5cb236633474aa133abbe727 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/watchdog/watchdog-5.2.4_p5.ebuild,v 1.6 2006/07/13 17:16:49 phreak Exp $
inherit eutils
MY_P=${PN}_${PV/_p*/}
S=${WORKDIR}/${P/_p*/}.orig
DESCRIPTION="A software watchdog"
HOMEPAGE="http://www.ibiblio.org/pub/Linux/system/daemons/watchdog/"
SRC_URI="mirror://debian/pool/main/w/watchdog/${MY_P}.orig.tar.gz
mirror://debian/pool/main/w/watchdog/${MY_P}-5.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm ~mips ppc sh x86"
IUSE=""
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-sundries.patch
epatch "${FILESDIR}"/${P}-uclibc.patch
epatch "${WORKDIR}"/${MY_P}-5.diff
}
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
newconfd "${FILESDIR}"/${PN}-conf.d ${PN}
newinitd "${FILESDIR}"/${PN}-init.d ${PN}
dodoc AUTHORS README TODO
docinto examples
dodoc examples/*
}
pkg_postinst() {
einfo
einfo "To enable the start-up script run:"
einfo " # rc-update add watchdog boot"
einfo
if [[ -f ${ROOT}/etc/watchdog/watchdog.conf ]]; then
ewarn
ewarn "Please notice that this release changes the configuration file"
ewarn "location to the standard /etc/watchdog.conf location. Make sure"
ewarn "you move the old /etc/watchdog/watchdog.conf file there."
ewarn
fi
}
|