Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
vapier 11/10/20 05:07:53
Modified: ChangeLog
Added: acct-6.5.5-r2.ebuild
Log:
Add arm love. Add cross-compile fix by Diego Elio Pettenò. Clean up init.d script #367815 by Robert Trace.
(Portage version: 2.2.0_alpha65/cvs/Linux x86_64)
Revision Changes Path
1.52 sys-process/acct/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/acct/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 11 Jul 2011 03:14:23 -0000 1.51
+++ ChangeLog 20 Oct 2011 05:07:52 -0000 1.52
@@ -1,6 +1,13 @@
# ChangeLog for sys-process/acct
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/acct/ChangeLog,v 1.51 2011/07/11 03:14:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/acct/ChangeLog,v 1.52 2011/10/20 05:07:52 vapier Exp $
+
+*acct-6.5.5-r2 (20 Oct 2011)
+
+ 20 Oct 2011; Mike Frysinger <vapier@g.o> +acct-6.5.5-r2.ebuild,
+ +files/acct-6.5.5-cross-compile.patch, files/acct.initd:
+ Add arm love. Add cross-compile fix by Diego Elio Pettenò. Clean up init.d
+ script #367815 by Robert Trace.
11 Jul 2011; Jeroen Roovers <jer@g.o> metadata.xml:
"was mistaken in terms of how this works"
1.1 sys-process/acct/acct-6.5.5-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/acct-6.5.5-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/acct/acct-6.5.5-r2.ebuild?rev=1.1&content-type=text/plain
Index: acct-6.5.5-r2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/acct/acct-6.5.5-r2.ebuild,v 1.1 2011/10/20 05:07:52 vapier Exp $
EAPI="2"
inherit eutils autotools
DESCRIPTION="GNU system accounting utilities"
HOMEPAGE="https://savannah.gnu.org/projects/acct/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86"
IUSE=""
src_prepare() {
epatch "${FILESDIR}"/${PN}-6.5.5-cross-compile.patch
eautoreconf
}
src_configure() {
econf --enable-linux-multiformat
}
src_install() {
emake install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
keepdir /var/account
newinitd "${FILESDIR}"/acct.initd acct || die
newconfd "${FILESDIR}"/acct.confd acct || die
insinto /etc/logrotate.d
newins "${FILESDIR}"/acct.logrotate acct || die
# sys-apps/sysvinit already provides this
rm "${D}"/usr/bin/last "${D}"/usr/share/man/man1/last.1 || die
# accton in / is only a temp workaround for #239748
dodir /sbin
mv "${D}"/usr/sbin/accton "${D}"/sbin/ || die
}
|
|