blob: c271a5631ca1117eb54a0d2a879b7da33aefab32 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/uptimed/uptimed-0.3.16-r3.ebuild,v 1.3 2009/03/20 13:10:10 gentoofan23 Exp $
inherit autotools
DESCRIPTION="System uptime record daemon that keeps track of your highest uptimes"
HOMEPAGE="http://podgorny.cz/uptimed"
SRC_URI="http://podgorny.cz/uptimed/releases/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
pkg_setup() {
enewgroup uptimed
enewuser uptimed -1 -1 -1 uptimed
}
src_unpack() {
unpack ${A}
cd "${S}"
# respect DESTDIR
sed -i -e 's|-d \(/var/spool.*\)$|-d $(DESTDIR)\1|' Makefile.am || \
die "sed failed."
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
diropts -o uptimed -g uptimed
dodir /var/run/uptimed
keepdir /var/spool/uptimed
fowners uptimed:uptimed /var/spool/uptimed
dodoc ChangeLog README TODO AUTHORS CREDITS INSTALL.cgi sample-cgi/*
newinitd "${FILESDIR}"/uptimed.init uptimed
}
pkg_postinst() {
echo
elog "Start uptimed with '/etc/init.d/uptimed start'"
elog "To view your uptime records, use the command 'uprecords'."
echo
}
|