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/automake: ChangeLog automake-9999.ebuild
Date: Fri, 02 Nov 2007 06:18:00
Message-Id: E1Inpqq-0004aa-V1@stork.gentoo.org
1 vapier 07/11/02 06:17:52
2
3 Modified: ChangeLog
4 Added: automake-9999.ebuild
5 Log:
6 Add support for git.
7 (Portage version: 2.1.3.16)
8
9 Revision Changes Path
10 1.107 sys-devel/automake/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.107&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.107&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/ChangeLog?r1=1.106&r2=1.107
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v
19 retrieving revision 1.106
20 retrieving revision 1.107
21 diff -u -r1.106 -r1.107
22 --- ChangeLog 8 Sep 2007 06:46:28 -0000 1.106
23 +++ ChangeLog 2 Nov 2007 06:17:52 -0000 1.107
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-devel/automake
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.106 2007/09/08 06:46:28 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.107 2007/11/02 06:17:52 vapier Exp $
29 +
30 +*automake-9999 (02 Nov 2007)
31 +
32 + 02 Nov 2007; Mike Frysinger <vapier@g.o> +automake-9999.ebuild:
33 + Add support for git.
34
35 08 Sep 2007; Mike Frysinger <vapier@g.o>
36 +files/automake-1.6.3-test-fixes.patch,
37
38
39
40 1.1 sys-devel/automake/automake-9999.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/automake-9999.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/automake-9999.ebuild?rev=1.1&content-type=text/plain
44
45 Index: automake-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/automake/automake-9999.ebuild,v 1.1 2007/11/02 06:17:52 vapier Exp $
50
51 EGIT_REPO_URI="git://git.savannah.gnu.org/automake.git"
52
53 inherit eutils git
54
55 DESCRIPTION="Used to generate Makefile.in from Makefile.am"
56 HOMEPAGE="http://sources.redhat.com/automake/"
57 SRC_URI=""
58
59 LICENSE="GPL-3"
60 SLOT="${PV:0:4}"
61 KEYWORDS=""
62 IUSE=""
63
64 RDEPEND="dev-lang/perl
65 >=sys-devel/automake-wrapper-2
66 >=sys-devel/autoconf-2.60
67 >=sys-apps/texinfo-4.7
68 sys-devel/gnuconfig"
69 DEPEND="${RDEPEND}
70 sys-apps/help2man"
71
72 src_unpack() {
73 git_src_unpack
74 cd "${S}"
75 sed -i \
76 -e "s|: (automake)| v${SLOT}: (automake${SLOT})|" \
77 doc/automake.texi || die "sed failed"
78 export WANT_AUTOCONF=2.5
79 }
80
81 src_compile() {
82 econf --docdir=/usr/share/doc/${PF} || die
83 emake || die
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die
88 dodoc NEWS README THANKS TODO AUTHORS ChangeLog
89
90 # SLOT the docs and junk
91 local x
92 for x in aclocal automake ; do
93 help2man ./${x} > ${x}-${SLOT}.1
94 doman ${x}-${SLOT}.1
95 rm -f "${D}"/usr/bin/${x}
96 done
97 cd "${D}"/usr/share/info || die
98 for x in *.info* ; do
99 mv "${x}" "${x/${PN}/${PN}${SLOT}}" || die
100 done
101
102 # remove all config.guess and config.sub files replacing them
103 # w/a symlink to a specific gnuconfig version
104 for x in guess sub ; do
105 dosym ../gnuconfig/config.${x} /usr/share/${PN}-${SLOT}/config.${x}
106 done
107 }
108
109
110
111 --
112 gentoo-commits@g.o mailing list