Gentoo Archives: gentoo-commits

From: "Paul Varner (fuzzyray)" <fuzzyray@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/ufed: ChangeLog ufed-0.40.2.ebuild
Date: Fri, 02 Nov 2012 21:06:52
Message-Id: 20121102210635.22F4521600@flycatcher.gentoo.org
1 fuzzyray 12/11/02 21:06:35
2
3 Modified: ChangeLog
4 Added: ufed-0.40.2.ebuild
5 Log:
6 Version bunp to add fixes to support /etc/portage/make.conf and
7 /etc/portage/make.profile. See bug 434672 for details.
8
9 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x38AC371E)
10
11 Revision Changes Path
12 1.85 app-portage/ufed/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/ufed/ChangeLog?rev=1.85&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/ufed/ChangeLog?rev=1.85&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/ufed/ChangeLog?r1=1.84&r2=1.85
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-portage/ufed/ChangeLog,v
21 retrieving revision 1.84
22 retrieving revision 1.85
23 diff -u -r1.84 -r1.85
24 --- ChangeLog 12 Aug 2012 11:44:53 -0000 1.84
25 +++ ChangeLog 2 Nov 2012 21:06:34 -0000 1.85
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-portage/ufed
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-portage/ufed/ChangeLog,v 1.84 2012/08/12 11:44:53 ssuominen Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-portage/ufed/ChangeLog,v 1.85 2012/11/02 21:06:34 fuzzyray Exp $
31 +
32 +*ufed-0.40.2 (02 Nov 2012)
33 +
34 + 02 Nov 2012; Paul Varner <fuzzyray@g.o> +ufed-0.40.2.ebuild:
35 + Version bunp to add fixes to support /etc/portage/make.conf and
36 + /etc/portage/make.profile. See bug 434672 for details.
37 + Thanks to Sven Eden and Martin Väth for the patches.
38
39 *ufed-0.40.1-r1 (12 Aug 2012)
40
41
42
43
44 1.1 app-portage/ufed/ufed-0.40.2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/ufed/ufed-0.40.2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/ufed/ufed-0.40.2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: ufed-0.40.2.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-portage/ufed/ufed-0.40.2.ebuild,v 1.1 2012/11/02 21:06:34 fuzzyray Exp $
54
55 EAPI=2
56
57 inherit multilib autotools
58
59 DESCRIPTION="Gentoo Linux USE flags editor"
60 HOMEPAGE="http://www.gentoo.org/"
61 SRC_URI="mirror://gentoo/${P}.tar.bz2
62 http://dev.gentoo.org/~fuzzyray/distfiles/${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
67 IUSE=""
68
69 DEPEND="sys-libs/ncurses"
70 RDEPEND="${DEPEND}
71 dev-lang/perl"
72
73 src_prepare() {
74 # Change the version number to reflect the ebuild version
75 sed -i "s:,\[git\],:,\[${PVR}\],:" configure.ac
76 eautoreconf
77 }
78 src_configure() {
79 econf --libexecdir=/usr/$(get_libdir)/ufed
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die
84 }