Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/debianutils: debianutils-4.2.1.ebuild ChangeLog
Date: Sat, 04 Feb 2012 18:00:25
Message-Id: 20120204180015.5361D2004B@flycatcher.gentoo.org
1 radhermit 12/02/04 18:00:15
2
3 Modified: ChangeLog
4 Added: debianutils-4.2.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.168 sys-apps/debianutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/debianutils/ChangeLog?rev=1.168&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/debianutils/ChangeLog?rev=1.168&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/debianutils/ChangeLog?r1=1.167&r2=1.168
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/debianutils/ChangeLog,v
20 retrieving revision 1.167
21 retrieving revision 1.168
22 diff -u -r1.167 -r1.168
23 --- ChangeLog 5 Dec 2011 10:08:17 -0000 1.167
24 +++ ChangeLog 4 Feb 2012 18:00:15 -0000 1.168
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/debianutils
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/ChangeLog,v 1.167 2011/12/05 10:08:17 radhermit Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/ChangeLog,v 1.168 2012/02/04 18:00:15 radhermit Exp $
31 +
32 +*debianutils-4.2.1 (04 Feb 2012)
33 +
34 + 04 Feb 2012; Tim Harder <radhermit@g.o> +debianutils-4.2.1.ebuild:
35 + Version bump.
36
37 *debianutils-4.1 (05 Dec 2011)
38
39
40
41
42 1.1 sys-apps/debianutils/debianutils-4.2.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/debianutils/debianutils-4.2.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/debianutils/debianutils-4.2.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: debianutils-4.2.1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/debianutils-4.2.1.ebuild,v 1.1 2012/02/04 18:00:15 radhermit Exp $
52
53 EAPI=4
54
55 inherit eutils flag-o-matic
56
57 DESCRIPTION="A selection of tools from Debian"
58 HOMEPAGE="http://packages.qa.debian.org/d/debianutils.html"
59 SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz"
60
61 LICENSE="BSD GPL-2 SMAIL"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
64 IUSE="kernel_linux static"
65
66 PDEPEND="|| ( >=sys-apps/coreutils-6.10-r1 sys-freebsd/freebsd-ubin )"
67
68 src_prepare() {
69 epatch "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch
70 }
71
72 src_configure() {
73 use static && append-ldflags -static
74 default
75 }
76
77 src_install() {
78 into /
79 dobin tempfile run-parts
80 if use kernel_linux ; then
81 dosbin installkernel
82 fi
83
84 into /usr
85 dosbin savelog
86
87 doman tempfile.1 run-parts.8 savelog.8
88 use kernel_linux && doman installkernel.8
89 cd debian
90 dodoc changelog control
91 keepdir /etc/kernel/postinst.d
92 }