summaryrefslogtreecommitdiff
blob: 7007f3cd8040a42acd767926b011b32760d03319 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/uptimed/uptimed-0.3.3.ebuild,v 1.8 2005/01/01 15:28:19 eradicator Exp $

DESCRIPTION="System uptime record daemon that keeps track of your highest uptimes"
HOMEPAGE="http://unixcode.org/uptimed/"
SRC_URI="http://unixcode.org/downloads/uptimed/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64 sparc"
IUSE=""

DEPEND="virtual/libc"

src_unpack() {
	unpack ${A}
	cd ${S}
	sed -i -e "s:-d /var/:-d ${D}/var/:" Makefile.in || die
}

src_install() {
	make DESTDIR=${D} install || die
	keepdir /var/spool/uptimed
	dodoc ChangeLog README TODO AUTHORS CREDITS INSTALL.cgi sample-cgi/*
	doinitd ${FILESDIR}/uptimed || die
}

pkg_postinst() {
	echo
	einfo "Start uptimed with '/etc/init.d/uptimed start'"
	einfo "To view your uptime records, use the command 'uprecords'."
	echo
}