Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/global: ChangeLog global-5.7.1.ebuild global-4.7.2.ebuild global-5.6.1.ebuild global-5.3.ebuild
Date: Sun, 29 Jun 2008 17:59:32
Message-Id: E1KD1BP-0004MU-Ab@stork.gentoo.org
1 darkside 08/06/29 17:59:27
2
3 Modified: ChangeLog
4 Added: global-5.7.1.ebuild
5 Removed: global-4.7.2.ebuild global-5.6.1.ebuild
6 global-5.3.ebuild
7 Log:
8 Version bump, bug #217405. Remove old versions
9 (Portage version: 2.2_rc1/cvs/Linux 2.6.22-gentoo-r2 i686)
10
11 Revision Changes Path
12 1.30 dev-util/global/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/global/ChangeLog?rev=1.30&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/global/ChangeLog?rev=1.30&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/global/ChangeLog?r1=1.29&r2=1.30
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
21 retrieving revision 1.29
22 retrieving revision 1.30
23 diff -u -r1.29 -r1.30
24 --- ChangeLog 21 May 2008 16:02:02 -0000 1.29
25 +++ ChangeLog 29 Jun 2008 17:59:26 -0000 1.30
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-util/global
28 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.29 2008/05/21 16:02:02 dev-zero Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.30 2008/06/29 17:59:26 darkside Exp $
31 +
32 +*global-5.7.1 (29 Jun 2008)
33 +
34 + 29 Jun 2008; Jeremy Olexa <darkside@g.o> -global-4.7.2.ebuild,
35 + -global-5.3.ebuild, -global-5.6.1.ebuild, +global-5.7.1.ebuild:
36 + Version bump, bug #217405. Remove old versions
37
38 21 May 2008; Tiziano Müller <dev-zero@g.o> global-4.7.2.ebuild:
39 Changed dependency for postgresql from dev-db/postgresql to
40
41
42
43 1.1 dev-util/global/global-5.7.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/global/global-5.7.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/global/global-5.7.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: global-5.7.1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-5.7.1.ebuild,v 1.1 2008/06/29 17:59:26 darkside Exp $
53
54 inherit elisp-common
55
56 DESCRIPTION="GNU Global is a tag system to find the locations of a specified object in various sources."
57 HOMEPAGE="http://www.gnu.org/software/global/global.html"
58 SRC_URI="ftp://ftp.gnu.org/pub/gnu/${PN}/${P}.tar.gz"
59 LICENSE="GPL-3"
60
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
63 IUSE="doc vim emacs"
64
65 RDEPEND="vim? ( || ( app-editors/vim app-editors/gvim ) )
66 emacs? ( virtual/emacs )"
67 DEPEND="${DEPEND}
68 doc? ( sys-apps/texinfo )"
69
70 SITEFILE=50gtags-gentoo.el
71
72 src_compile() {
73 econf || die "econf failed"
74
75 if use doc; then
76 texi2pdf -q -o doc/global.pdf doc/global.txi
77 texi2html -o doc/global.html doc/global.txi
78 fi
79
80 if use emacs; then
81 elisp-comp *.el || die
82 fi
83
84 emake || die "emake failed"
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "emake install failed"
89 if use doc; then
90 dohtml doc/global.html
91 dodoc doc/global.pdf
92 fi
93 dodoc AUTHORS FAQ NEWS README THANKS
94
95 insinto /etc
96 doins gtags.conf
97 insinto /usr/share/${PN}
98 doins gtags.pl globash.rc
99
100 if use vim; then
101 insinto /usr/share/vim/vimfiles/plugin
102 doins gtags.vim
103 fi
104
105 if use emacs; then
106 elisp-install gtags *.{el,elc}
107 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
108 fi
109 }
110
111 pkg_postinst() {
112 use emacs && elisp-site-regen
113 }
114
115 pkg_postrm() {
116 use emacs && elisp-site-regen
117 }
118
119
120
121 --
122 gentoo-commits@l.g.o mailing list