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.8.ebuild ChangeLog
Date: Tue, 05 Mar 2013 02:38:29
Message-Id: 20130305023824.D53E82171E@flycatcher.gentoo.org
1 floppym 13/03/05 02:38:24
2
3 Modified: ChangeLog
4 Added: global-6.2.8.ebuild
5 Log:
6 Version bump. Ebuild by Arfrever.
7
8 (Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
9
10 Revision Changes Path
11 1.107 dev-util/global/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.107&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?rev=1.107&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/ChangeLog?r1=1.106&r2=1.107
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v
20 retrieving revision 1.106
21 retrieving revision 1.107
22 diff -u -r1.106 -r1.107
23 --- ChangeLog 18 Feb 2013 08:32:53 -0000 1.106
24 +++ ChangeLog 5 Mar 2013 02:38:24 -0000 1.107
25 @@ -1,10 +1,15 @@
26 # ChangeLog for dev-util/global
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.106 2013/02/18 08:32:53 naota Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.107 2013/03/05 02:38:24 floppym Exp $
30 +
31 +*global-6.2.8 (05 Mar 2013)
32 +
33 + 05 Mar 2013; Mike Gilbert <floppym@g.o> +global-6.2.8.ebuild:
34 + Version bump. Ebuild by Arfrever.
35
36 *global-6.2.7-r1 (18 Feb 2013)
37
38 - 18 Feb 2013; Naohiro Aota +global-6.2.7-r1.ebuild:
39 + 18 Feb 2013; Naohiro Aota <naota@g.o> +global-6.2.7-r1.ebuild:
40 Do not drop all .la files. #457856
41
42 *global-6.2.7 (20 Jan 2013)
43
44
45
46 1.1 dev-util/global/global-6.2.8.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.8.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/global/global-6.2.8.ebuild?rev=1.1&content-type=text/plain
50
51 Index: global-6.2.8.ebuild
52 ===================================================================
53 # Copyright 1999-2013 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.2.8.ebuild,v 1.1 2013/03/05 02:38:24 floppym Exp $
56
57 EAPI="5"
58
59 inherit elisp-common eutils
60
61 DESCRIPTION="GNU Global is a tag system to find the locations of a specified object in various sources."
62 HOMEPAGE="http://www.gnu.org/software/global/global.html"
63 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
68 IUSE="doc emacs vim"
69
70 RDEPEND="sys-devel/libtool
71 sys-libs/ncurses
72 emacs? ( virtual/emacs )
73 vim? ( || ( app-editors/vim app-editors/gvim ) )"
74 DEPEND="${DEPEND}
75 doc? ( app-text/texi2html sys-apps/texinfo )"
76
77 SITEFILE="50gtags-gentoo.el"
78
79 src_configure() {
80 econf "$(use_with emacs lispdir "${SITELISP}/${PN}")"
81 }
82
83 src_compile() {
84 if use doc; then
85 texi2pdf -q -o doc/global.pdf doc/global.texi
86 texi2html -o doc/global.html doc/global.texi
87 fi
88
89 if use emacs; then
90 elisp-compile *.el || die "elisp-compile failed"
91 fi
92
93 emake
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" install
98
99 if use doc; then
100 dohtml doc/global.html
101 [[ -f doc/global.pdf ]] && dodoc doc/global.pdf
102 fi
103
104 dodoc AUTHORS FAQ NEWS README THANKS
105
106 insinto /etc
107 doins gtags.conf
108
109 if use vim; then
110 insinto /usr/share/vim/vimfiles/plugin
111 doins gtags.vim
112 fi
113
114 if use emacs; then
115 elisp-install ${PN} *.{el,elc} || die "elisp-install failed"
116 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die "elisp-site-file-install failed"
117 fi
118
119 prune_libtool_files
120 }
121
122 pkg_postinst() {
123 use emacs && elisp-site-regen
124 }
125
126 pkg_postrm() {
127 use emacs && elisp-site-regen
128 }