Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r1.ebuild
Date: Mon, 26 Apr 2010 02:25:23
Message-Id: 20100426022517.CFB312C04E@corvid.gentoo.org
1 vapier 10/04/26 02:25:17
2
3 Modified: ChangeLog chrpath-0.13-r1.ebuild
4 Log:
5 Clean up installed paths.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.14 app-admin/chrpath/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.14&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.14&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/chrpath/ChangeLog?r1=1.13&r2=1.14
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v
18 retrieving revision 1.13
19 retrieving revision 1.14
20 diff -u -r1.13 -r1.14
21 --- ChangeLog 15 Apr 2010 17:08:25 -0000 1.13
22 +++ ChangeLog 26 Apr 2010 02:25:17 -0000 1.14
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-admin/chrpath
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.13 2010/04/15 17:08:25 hwoarang Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.14 2010/04/26 02:25:17 vapier Exp $
28 +
29 + 26 Apr 2010; Mike Frysinger <vapier@g.o> chrpath-0.13-r1.ebuild:
30 + Clean up installed paths.
31
32 15 Apr 2010; Markos Chandras <hwoarang@g.o> chrpath-0.13-r1.ebuild,
33 +files/chrpath-0.13-testsuite-1.patch:
34
35
36
37 1.3 app-admin/chrpath/chrpath-0.13-r1.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/chrpath/chrpath-0.13-r1.ebuild?rev=1.3&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/chrpath/chrpath-0.13-r1.ebuild?rev=1.3&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/chrpath/chrpath-0.13-r1.ebuild?r1=1.2&r2=1.3
42
43 Index: chrpath-0.13-r1.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r1.ebuild,v
46 retrieving revision 1.2
47 retrieving revision 1.3
48 diff -u -r1.2 -r1.3
49 --- chrpath-0.13-r1.ebuild 15 Apr 2010 17:08:25 -0000 1.2
50 +++ chrpath-0.13-r1.ebuild 26 Apr 2010 02:25:17 -0000 1.3
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r1.ebuild,v 1.2 2010/04/15 17:08:25 hwoarang Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r1.ebuild,v 1.3 2010/04/26 02:25:17 vapier Exp $
56
57 EAPI="2"
58
59 @@ -13,18 +13,18 @@
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 -KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux
64 -~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
65 +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
66 IUSE=""
67
68 src_prepare() {
69 epatch "${FILESDIR}"/${PN}-multilib.patch
70 epatch "${FILESDIR}"/${PN}-keepgoing.patch
71 epatch "${FILESDIR}"/${P}-testsuite-1.patch
72 + sed -i -e '/^docdir/d' Makefile.am # use standard docdir
73 eautoreconf
74 }
75
76 src_install() {
77 - einstall
78 - dodoc ChangeLog AUTHORS NEWS README || die "dodoc failed"
79 + emake install DESTDIR="${D}" || die
80 + dodoc ChangeLog AUTHORS NEWS README
81 }