Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/acct: ChangeLog acct-6.3.5-r3.ebuild
Date: Mon, 06 Oct 2008 23:35:05
Message-Id: E1KmzbS-0001kU-5g@stork.gentoo.org
1 robbat2 08/10/06 23:35:02
2
3 Modified: ChangeLog
4 Added: acct-6.3.5-r3.ebuild
5 Log:
6 Lots of other distros have moved the accton binary over to /sbin, jump in the fire as well so that bootchart can be used when /usr is on a different partition, as reported in bug #239748.
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64)
8
9 Revision Changes Path
10 1.14 sys-process/acct/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/acct/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/acct/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/acct/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-process/acct/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -p -w -b -B -u -u -r1.13 -r1.14
22 --- ChangeLog 29 Nov 2007 07:19:45 -0000 1.13
23 +++ ChangeLog 6 Oct 2008 23:35:01 -0000 1.14
24 @@ -1,6 +1,14 @@
25 # ChangeLog for sys-process/acct
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-process/acct/ChangeLog,v 1.13 2007/11/29 07:19:45 opfer Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-process/acct/ChangeLog,v 1.14 2008/10/06 23:35:01 robbat2 Exp $
30 +
31 +*acct-6.3.5-r3 (06 Oct 2008)
32 +
33 + 06 Oct 2008; Robin H. Johnson <robbat2@g.o>
34 + +files/acct.rc6-6.3.5-r3, +acct-6.3.5-r3.ebuild:
35 + Lots of other distros have moved the accton binary over to /sbin, jump in
36 + the fire as well so that bootchart can be used when /usr is on a different
37 + partition, as reported in bug #239748.
38
39 29 Nov 2007; Christian Faulhammer <opfer@g.o> acct-6.3.5-r2.ebuild:
40 stable x86
41
42
43
44 1.1 sys-process/acct/acct-6.3.5-r3.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/acct/acct-6.3.5-r3.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-process/acct/acct-6.3.5-r3.ebuild?rev=1.1&content-type=text/plain
48
49 Index: acct-6.3.5-r3.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-process/acct/acct-6.3.5-r3.ebuild,v 1.1 2008/10/06 23:35:01 robbat2 Exp $
54
55 inherit eutils
56
57 PATCH_VER="ts02-12"
58 MY_P=${P}-${PATCH_VER}
59 DESCRIPTION="GNU system accounting utilities"
60 HOMEPAGE="http://www.gnu.org/directory/acct.html"
61 SRC_URI="http://www.physik3.uni-rostock.de/tim/kernel/utils/acct/${MY_P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86"
66 IUSE=""
67
68 DEPEND=""
69
70 S=${WORKDIR}/${MY_P}
71
72 src_compile() {
73 econf --enable-linux-multiformat || die "econf failed"
74 emake || die "emake failed"
75 }
76
77 src_install() {
78 into /
79 dosbin accton || die "dosbin failed"
80 into /usr
81 dobin ac lastcomm || die "dobin failed"
82 dosbin dump-utmp dump-acct sa || die "dosbin failed"
83 dosym /sbin/accton /usr/sbin/accton
84 doinfo accounting.info
85 doman {ac,lastcomm}.1 {accton,sa}.8
86 dodoc AUTHORS ChangeLog INSTALL NEWS README ToDo
87 keepdir /var/account
88 newinitd "${FILESDIR}"/acct.rc6-6.3.5-r3 acct
89 newconfd "${FILESDIR}"/acct.confd acct
90 }