blob: e5afd0dd67401d78f82b3ba08864e32f9f6fb8dd (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/acct/acct-6.3.5.ebuild,v 1.7 2004/06/14 07:51:59 mr_bones_ Exp $
inherit eutils
MY_P=${P/-/_}
DESCRIPTION="GNU system accounting utilities"
HOMEPAGE="http://www.gnu.org/directory/acct.html"
SRC_URI="http://ftp.debian.org/debian/pool/main/a/acct/${MY_P}.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64 ~ppc alpha"
IUSE=""
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
epatch "${FILESDIR}/${PF}-gentoo.diff"
}
src_install() {
dobin ac last lastcomm || die "dobin failed"
dosbin dump-utmp dump-acct accton sa || die "dosbin failed"
doinfo accounting.info
doman *.[18]
dodoc AUTHORS ChangeLog INSTALL NEWS README ToDo
keepdir /var/account
exeinto /etc/init.d
newexe "${FILESDIR}/acct.rc6" acct
}
|