Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/chrpath: ChangeLog chrpath-0.13-r2.ebuild chrpath-0.13-r1.ebuild
Date: Mon, 29 Aug 2011 19:23:37
Message-Id: 20110829192322.72FBD20051@flycatcher.gentoo.org
1 hwoarang 11/08/29 19:23:22
2
3 Modified: ChangeLog
4 Added: chrpath-0.13-r2.ebuild
5 Removed: chrpath-0.13-r1.ebuild
6 Log:
7 revbump with improved patch for prefix. Thanks to Fabian Groffen and Mario Fetka for their help. Bug #365817
8
9 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.15 app-admin/chrpath/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.15&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?rev=1.15&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/ChangeLog?r1=1.14&r2=1.15
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v
21 retrieving revision 1.14
22 retrieving revision 1.15
23 diff -u -r1.14 -r1.15
24 --- ChangeLog 26 Apr 2010 02:25:17 -0000 1.14
25 +++ ChangeLog 29 Aug 2011 19:23:22 -0000 1.15
26 @@ -1,6 +1,14 @@
27 # ChangeLog for app-admin/chrpath
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.14 2010/04/26 02:25:17 vapier Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/ChangeLog,v 1.15 2011/08/29 19:23:22 hwoarang Exp $
32 +
33 +*chrpath-0.13-r2 (29 Aug 2011)
34 +
35 + 29 Aug 2011; Markos Chandras <hwoarang@g.o> -chrpath-0.13-r1.ebuild,
36 + +chrpath-0.13-r2.ebuild, +files/chrpath-0.13-multilib.patch,
37 + -files/chrpath-multilib.patch:
38 + revbump with improved patch for prefix. Thanks to Fabian Groffen and Mario
39 + Fetka for their help. Bug #365817
40
41 26 Apr 2010; Mike Frysinger <vapier@g.o> chrpath-0.13-r1.ebuild:
42 Clean up installed paths.
43
44
45
46 1.1 app-admin/chrpath/chrpath-0.13-r2.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild?rev=1.1&content-type=text/plain
50
51 Index: chrpath-0.13-r2.ebuild
52 ===================================================================
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/app-admin/chrpath/chrpath-0.13-r2.ebuild,v 1.1 2011/08/29 19:23:22 hwoarang Exp $
56
57 EAPI="2"
58
59 inherit eutils autotools
60
61 DESCRIPTION="chrpath can modify the rpath and runpath of ELF executables"
62 HOMEPAGE="http://directory.fsf.org/project/chrpath/"
63 # original upstream no longer exists (ftp://ftp.hungry.com/pub/hungry)
64 SRC_URI="http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
69 IUSE=""
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${P}-multilib.patch
73 epatch "${FILESDIR}"/${PN}-keepgoing.patch
74 epatch "${FILESDIR}"/${P}-testsuite-1.patch
75 sed -i -e '/^docdir/d' Makefile.am # use standard docdir
76 eautoreconf
77 }
78
79 src_install() {
80 emake install DESTDIR="${D}" || die
81 dodoc ChangeLog AUTHORS NEWS README
82 }