Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/autoconf: ChangeLog autoconf-9999.ebuild
Date: Fri, 02 Nov 2007 06:30:55
Message-Id: E1Inq3O-0004gz-VY@stork.gentoo.org
1 vapier 07/11/02 06:30:50
2
3 Modified: ChangeLog
4 Added: autoconf-9999.ebuild
5 Log:
6 Add support for git.
7 (Portage version: 2.1.3.16)
8
9 Revision Changes Path
10 1.110 sys-devel/autoconf/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/ChangeLog?rev=1.110&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/ChangeLog?rev=1.110&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/ChangeLog?r1=1.109&r2=1.110
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v
19 retrieving revision 1.109
20 retrieving revision 1.110
21 diff -u -r1.109 -r1.110
22 --- ChangeLog 22 Sep 2007 20:15:54 -0000 1.109
23 +++ ChangeLog 2 Nov 2007 06:30:50 -0000 1.110
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-devel/autoconf
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.109 2007/09/22 20:15:54 philantrop Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.110 2007/11/02 06:30:50 vapier Exp $
29 +
30 +*autoconf-9999 (02 Nov 2007)
31 +
32 + 02 Nov 2007; Mike Frysinger <vapier@g.o> +autoconf-9999.ebuild:
33 + Add support for git.
34
35 22 Sep 2007; Wulf C. Krueger <philantrop@g.o>
36 autoconf-2.61-r1.ebuild:
37
38
39
40 1.1 sys-devel/autoconf/autoconf-9999.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/autoconf-9999.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/autoconf/autoconf-9999.ebuild?rev=1.1&content-type=text/plain
44
45 Index: autoconf-9999.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-9999.ebuild,v 1.1 2007/11/02 06:30:50 vapier Exp $
50
51 EGIT_REPO_URI="git://git.savannah.gnu.org/autoconf.git"
52
53 inherit git
54
55 DESCRIPTION="Used to create autoconfiguration files"
56 HOMEPAGE="http://www.gnu.org/software/autoconf/autoconf.html"
57 SRC_URI=""
58
59 LICENSE="GPL-3"
60 SLOT="2.5"
61 KEYWORDS=""
62 IUSE="emacs"
63
64 DEPEND=">=sys-apps/texinfo-4.3
65 >=sys-devel/m4-1.4.6
66 dev-lang/perl"
67 RDEPEND="${DEPEND}
68 >=sys-devel/autoconf-wrapper-4-r2"
69 PDEPEND="emacs? ( app-emacs/autoconf-mode )"
70
71 src_unpack() {
72 git_src_unpack
73 cd "${S}"
74 if [[ ! -e configure ]] ; then
75 autoreconf || die
76 fi
77 }
78
79 src_compile() {
80 # Disable Emacs in the build system since it is in a separate package.
81 export EMACS=no
82 econf --program-suffix="-${PV}" || die
83 # econf updates config.{sub,guess} which forces the manpages
84 # to be regenerated which we dont want to do #146621
85 touch man/*.1
86 # From configure output:
87 # Parallel builds via `make -jN' do not work.
88 emake -j1 || die
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die
93 dodoc AUTHORS BUGS NEWS README TODO THANKS \
94 ChangeLog ChangeLog.0 ChangeLog.1 ChangeLog.2
95 }
96
97
98
99 --
100 gentoo-commits@g.o mailing list