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-devel/autogen: ChangeLog autogen-5.17.4.ebuild
Date: Mon, 27 May 2013 09:56:43
Message-Id: 20130527095637.035592171D@flycatcher.gentoo.org
1 radhermit 13/05/27 09:56:36
2
3 Modified: ChangeLog
4 Added: autogen-5.17.4.ebuild
5 Log:
6 Version bump and add static-libs use flag.
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.97 sys-devel/autogen/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autogen/ChangeLog?rev=1.97&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autogen/ChangeLog?rev=1.97&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autogen/ChangeLog?r1=1.96&r2=1.97
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autogen/ChangeLog,v
20 retrieving revision 1.96
21 retrieving revision 1.97
22 diff -u -r1.96 -r1.97
23 --- ChangeLog 4 May 2013 05:26:51 -0000 1.96
24 +++ ChangeLog 27 May 2013 09:56:36 -0000 1.97
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-devel/autogen
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autogen/ChangeLog,v 1.96 2013/05/04 05:26:51 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autogen/ChangeLog,v 1.97 2013/05/27 09:56:36 radhermit Exp $
30 +
31 +*autogen-5.17.4 (27 May 2013)
32 +
33 + 27 May 2013; Tim Harder <radhermit@g.o> +autogen-5.17.4.ebuild:
34 + Version bump and add static-libs use flag.
35
36 04 May 2013; Mike Frysinger <vapier@g.o> autogen-5.17.3.ebuild,
37 files/autogen-5.17.3-libintl.patch:
38
39
40
41 1.1 sys-devel/autogen/autogen-5.17.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autogen/autogen-5.17.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autogen/autogen-5.17.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: autogen-5.17.4.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-devel/autogen/autogen-5.17.4.ebuild,v 1.1 2013/05/27 09:56:36 radhermit Exp $
51
52 EAPI="4"
53
54 inherit eutils
55
56 DESCRIPTION="Program and text file generation"
57 HOMEPAGE="http://www.gnu.org/software/autogen/"
58 SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos"
63 IUSE="libopts static-libs"
64
65 RDEPEND=">=dev-scheme/guile-1.8
66 dev-libs/libxml2"
67 DEPEND="${RDEPEND}"
68
69 src_configure() {
70 # suppress possibly incorrect -R flag
71 export ag_cv_test_ldflags=
72
73 econf $(use_enable static-libs static)
74 }
75
76 src_install() {
77 default
78 prune_libtool_files
79
80 if ! use libopts ; then
81 rm "${ED}"/usr/share/autogen/libopts-*.tar.gz || die
82 fi
83 }