Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/acct: acct-6.5.5-r1.ebuild ChangeLog
Date: Wed, 26 Jan 2011 05:36:32
Message-Id: 20110126053622.F0B8820057@flycatcher.gentoo.org
1 jer 11/01/26 05:36:22
2
3 Modified: ChangeLog
4 Added: acct-6.5.5-r1.ebuild
5 Log:
6 Make logrotate script compatible with both baselayout 1 and 2, by Eugeny Shkrigunov (bug #351428), patches by Robert Trace.
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux i686)
9
10 Revision Changes Path
11 1.47 sys-process/acct/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/ChangeLog?rev=1.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-process/acct/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 23 Jan 2011 14:52:48 -0000 1.46
24 +++ ChangeLog 26 Jan 2011 05:36:22 -0000 1.47
25 @@ -1,6 +1,14 @@
26 # ChangeLog for sys-process/acct
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-process/acct/ChangeLog,v 1.46 2011/01/23 14:52:48 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-process/acct/ChangeLog,v 1.47 2011/01/26 05:36:22 jer Exp $
30 +
31 +*acct-6.5.5-r1 (26 Jan 2011)
32 +
33 + 26 Jan 2011; Jeroen Roovers <jer@g.o> +acct-6.5.5-r1.ebuild,
34 + +files/acct.initd-r1, +files/acct.logrotate-r1, files/acct.initd,
35 + files/acct.logrotate:
36 + Make logrotate script compatible with both baselayout 1 and 2, by Eugeny
37 + Shkrigunov (bug #351428), patches by Robert Trace.
38
39 23 Jan 2011; Raúl Porcel <armin76@g.o> acct-6.5.5.ebuild:
40 alpha stable wrt #350050
41
42
43
44 1.1 sys-process/acct/acct-6.5.5-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/acct-6.5.5-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/acct-6.5.5-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: acct-6.5.5-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2011 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.5.5-r1.ebuild,v 1.1 2011/01/26 05:36:22 jer Exp $
54
55 EAPI="2"
56
57 inherit eutils
58
59 DESCRIPTION="GNU system accounting utilities"
60 HOMEPAGE="https://savannah.gnu.org/projects/acct/"
61 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~x86"
66 IUSE=""
67
68 src_configure() {
69 econf --enable-linux-multiformat
70 }
71
72 src_install() {
73 emake install DESTDIR="${D}" || die
74 dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
75 keepdir /var/account
76 newinitd "${FILESDIR}"/acct.initd-r1 acct || die
77 newconfd "${FILESDIR}"/acct.confd acct || die
78 insinto /etc/logrotate.d
79 newins "${FILESDIR}"/acct.logrotate-r1 acct || die
80
81 # sys-apps/sysvinit already provides this
82 rm "${D}"/usr/bin/last "${D}"/usr/share/man/man1/last.1 || die
83
84 # accton in / is only a temp workaround for #239748
85 dodir /sbin
86 mv "${D}"/usr/sbin/accton "${D}"/sbin/ || die
87 }