Gentoo Archives: gentoo-commits

From: "Timothy Redaelli (drizzt)" <drizzt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/gnulib: ChangeLog gnulib-9999-r1.ebuild
Date: Sat, 27 Oct 2007 17:25:19
Message-Id: E1IlpPO-0008Bu-5Q@stork.gentoo.org
1 drizzt 07/10/27 17:25:14
2
3 Modified: ChangeLog
4 Added: gnulib-9999-r1.ebuild
5 Log:
6 Now gnulib uses git, make a symlink instead of wrapper since is not necessary.
7
8 (Portage version: 2.1.3.16)
9
10 Revision Changes Path
11 1.2 dev-libs/gnulib/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/gnulib/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/gnulib/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/gnulib/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/gnulib/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 8 May 2007 16:14:50 -0000 1.1
24 +++ ChangeLog 27 Oct 2007 17:25:13 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/gnulib
27 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gnulib/ChangeLog,v 1.1 2007/05/08 16:14:50 drizzt Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gnulib/ChangeLog,v 1.2 2007/10/27 17:25:13 drizzt Exp $
30 +
31 +*gnulib-9999-r1 (27 Oct 2007)
32 +
33 + 27 Oct 2007; Timothy Redaelli <drizzt@g.o> +gnulib-9999-r1.ebuild:
34 + Now gnulib uses git, make a symlink instead of wrapper since is not necessary.
35
36 *gnulib-9999 (08 May 2007)
37
38
39
40
41 1.1 dev-libs/gnulib/gnulib-9999-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/gnulib/gnulib-9999-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/gnulib/gnulib-9999-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnulib-9999-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/gnulib/gnulib-9999-r1.ebuild,v 1.1 2007/10/27 17:25:13 drizzt Exp $
51
52 EGIT_REPO_URI="git://git.savannah.gnu.org/gnulib.git"
53
54 inherit eutils git
55
56 DESCRIPTION="Gnulib is a library of common routines intended to be shared at the source level."
57 HOMEPAGE="http://www.gnu.org/software/gnulib"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS=""
62 IUSE=""
63
64 DEPEND=""
65 RDEPEND=""
66
67 S="${WORKDIR}"/${PN}
68
69 src_compile() {
70 emake -C doc info html || die "emake failed"
71 }
72
73 src_install() {
74 dodoc README COPYING ChangeLog
75 dohtml doc/gnulib.html
76 doinfo doc/gnulib.info
77
78 insinto /usr/share/${PN}
79 doins -r lib
80 doins -r m4
81 doins -r modules
82
83 # remove CVS dirs
84 #find "${D}" -name CVS -type d -print0 | xargs -0 rm -r
85
86 # install the real script
87 exeinto /usr/share/${PN}
88 doexe gnulib-tool
89
90 # create and install the wrapper
91 dosym /usr/share/${PN}/gnulib-tool /usr/bin/gnulib-tool
92 }
93
94
95
96 --
97 gentoo-commits@g.o mailing list