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