blob: ebf6c6a01371242d2866470080a118271aab5883 (
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
|
# 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.1.ebuild,v 1.10 2005/01/01 15:28:19 eradicator Exp $
DESCRIPTION="Standard informational utilities and process-handling tools"
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=""
src_compile() {
sed -i -e "s:-d /var/:-d ${D}/var/:g" ${S}/Makefile.am
sed -i -e "s:-d /var/:-d ${D}/var/:g" ${S}/Makefile.in
econf || die
emake || die
}
src_install() {
dodir /usr/bin
dodir /usr/sbin
dodir /var/spool/uptimed
keepdir /var/spool/uptimed
make DESTDIR=${D} install || die
dodoc README NEWS TODO AUTHORS CREDITS
dodoc INSTALL.cgi sample-cgi/*
exeinto /etc/init.d ; newexe ${FILESDIR}/uptimed uptimed
}
pkg_postinst() {
einfo "To start uptimed, you must enable the /etc/init.d/uptimed rc file"
einfo "You may start uptimed now with:"
einfo "/etc/init.d/uptimed start"
einfo "To view your uptimes, use the command 'uprecords'."
}
|