Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/global: global-6.2.12.ebuild global-6.3.ebuild ChangeLog
Date: Tue, 10 Jun 2014 01:22:18
Message-Id: 20140610012214.0A4312004E@flycatcher.gentoo.org
1 floppym 14/06/10 01:22:13
2
3 Modified: ChangeLog
4 Added: global-6.2.12.ebuild global-6.3.ebuild
5 Log:
6 Version bumps (bug #512832). Ebuilds by Arfrever.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
9
10 Revision Changes Path
11 1.126 dev-util/global/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.126&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.126&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?r1=1.125&r2=1.126
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
20 retrieving revision 1.125
21 retrieving revision 1.126
22 diff -u -r1.125 -r1.126
23 --- ChangeLog 8 Jun 2014 11:11:06 -0000 1.125
24 +++ ChangeLog 10 Jun 2014 01:22:13 -0000 1.126
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-util/global
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.125 2014/06/08 11:11:06 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.126 2014/06/10 01:22:13 floppym Exp $
30 +
31 +*global-6.3 (10 Jun 2014)
32 +*global-6.2.12 (10 Jun 2014)
33 +
34 + 10 Jun 2014; Mike Gilbert <floppym@g.o> +global-6.2.12.ebuild,
35 + +global-6.3.ebuild:
36 + Version bumps (bug #512832). Ebuilds by Arfrever.
37
38 08 Jun 2014; Agostino Sarubbo <ago@g.o> global-6.2.11.ebuild:
39 Stable for ppc, wrt bug #512456
40
41
42
43 1.1 dev-util/global/global-6.2.12.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.12.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.12.ebuild?rev=1.1&content-type=text/plain
47
48 Index: global-6.2.12.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.12.ebuild,v 1.1 2014/06/10 01:22:13 floppym Exp $
53
54 EAPI="5"
55
56 inherit autotools elisp-common eutils
57
58 DESCRIPTION="GNU Global is a tag system to find the locations of a specified object in various sources."
59 HOMEPAGE="http://www.gnu.org/software/global/global.html"
60 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
65 IUSE="doc emacs vim"
66
67 RDEPEND="sys-devel/libtool
68 sys-libs/ncurses
69 emacs? ( virtual/emacs )
70 vim? ( || ( app-editors/vim app-editors/gvim ) )"
71 DEPEND="${DEPEND}
72 doc? ( app-text/texi2html sys-apps/texinfo )"
73
74 SITEFILE="50gtags-gentoo.el"
75
76 src_prepare() {
77 epatch "${FILESDIR}/${PN}-6.2.9-tinfo.patch"
78 eautoreconf
79 }
80
81 src_configure() {
82 econf "$(use_with emacs lispdir "${SITELISP}/${PN}")"
83 }
84
85 src_compile() {
86 if use doc; then
87 texi2pdf -q -o doc/global.pdf doc/global.texi
88 texi2html -o doc/global.html doc/global.texi
89 fi
90
91 if use emacs; then
92 elisp-compile *.el
93 fi
94
95 emake
96 }
97
98 src_install() {
99 emake DESTDIR="${D}" install
100
101 if use doc; then
102 dohtml doc/global.html
103 dodoc doc/global.pdf
104 fi
105
106 dodoc AUTHORS FAQ NEWS README THANKS
107
108 insinto /etc
109 doins gtags.conf
110
111 if use vim; then
112 insinto /usr/share/vim/vimfiles/plugin
113 doins gtags.vim
114 fi
115
116 if use emacs; then
117 elisp-install ${PN} *.{el,elc}
118 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
119 fi
120
121 prune_libtool_files
122 }
123
124 pkg_postinst() {
125 use emacs && elisp-site-regen
126 }
127
128 pkg_postrm() {
129 use emacs && elisp-site-regen
130 }
131
132
133
134 1.1 dev-util/global/global-6.3.ebuild
135
136 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.3.ebuild?rev=1.1&view=markup
137 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.3.ebuild?rev=1.1&content-type=text/plain
138
139 Index: global-6.3.ebuild
140 ===================================================================
141 # Copyright 1999-2014 Gentoo Foundation
142 # Distributed under the terms of the GNU General Public License v2
143 # $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.3.ebuild,v 1.1 2014/06/10 01:22:13 floppym Exp $
144
145 EAPI="5"
146
147 inherit autotools elisp-common eutils
148
149 DESCRIPTION="GNU Global is a tag system to find the locations of a specified object in various sources."
150 HOMEPAGE="http://www.gnu.org/software/global/global.html"
151 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
152
153 LICENSE="GPL-3"
154 SLOT="0"
155 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
156 IUSE="doc emacs vim"
157
158 RDEPEND="sys-devel/libtool
159 sys-libs/ncurses
160 emacs? ( virtual/emacs )
161 vim? ( || ( app-editors/vim app-editors/gvim ) )"
162 DEPEND="${DEPEND}
163 doc? ( app-text/texi2html sys-apps/texinfo )"
164
165 SITEFILE="50gtags-gentoo.el"
166
167 src_prepare() {
168 epatch "${FILESDIR}/${PN}-6.2.9-tinfo.patch"
169 eautoreconf
170 }
171
172 src_configure() {
173 econf "$(use_with emacs lispdir "${SITELISP}/${PN}")"
174 }
175
176 src_compile() {
177 if use doc; then
178 texi2pdf -q -o doc/global.pdf doc/global.texi
179 texi2html -o doc/global.html doc/global.texi
180 fi
181
182 if use emacs; then
183 elisp-compile *.el
184 fi
185
186 emake
187 }
188
189 src_install() {
190 emake DESTDIR="${D}" install
191
192 if use doc; then
193 dohtml doc/global.html
194 dodoc doc/global.pdf
195 fi
196
197 dodoc AUTHORS FAQ NEWS README THANKS
198
199 insinto /etc
200 doins gtags.conf
201
202 if use vim; then
203 insinto /usr/share/vim/vimfiles/plugin
204 doins gtags.vim
205 fi
206
207 if use emacs; then
208 elisp-install ${PN} *.{el,elc}
209 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
210 fi
211
212 prune_libtool_files
213 }
214
215 pkg_postinst() {
216 use emacs && elisp-site-regen
217 }
218
219 pkg_postrm() {
220 use emacs && elisp-site-regen
221 }