Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/cscope: ChangeLog cscope-15.7a.ebuild
Date: Sat, 02 May 2009 10:01:07
Message-Id: E1M0C1o-0005lp-7X@stork.gentoo.org
1 ulm 09/05/02 10:01:04
2
3 Modified: ChangeLog
4 Added: cscope-15.7a.ebuild
5 Log:
6 Version bump for security bug 263023.
7 (Portage version: 2.2_rc31/cvs/Linux i686)
8
9 Revision Changes Path
10 1.110 dev-util/cscope/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cscope/ChangeLog?rev=1.110&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cscope/ChangeLog?rev=1.110&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cscope/ChangeLog?r1=1.109&r2=1.110
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/cscope/ChangeLog,v
19 retrieving revision 1.109
20 retrieving revision 1.110
21 diff -u -r1.109 -r1.110
22 --- ChangeLog 14 Apr 2009 16:38:47 -0000 1.109
23 +++ ChangeLog 2 May 2009 10:01:04 -0000 1.110
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/cscope
26 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cscope/ChangeLog,v 1.109 2009/04/14 16:38:47 jer Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cscope/ChangeLog,v 1.110 2009/05/02 10:01:04 ulm Exp $
30 +
31 +*cscope-15.7a (02 May 2009)
32 +
33 + 02 May 2009; Ulrich Mueller <ulm@g.o> +cscope-15.7a.ebuild:
34 + Version bump for security bug 263023.
35
36 14 Apr 2009; Jeroen Roovers <jer@g.o> cscope-15.7.ebuild:
37 Stable for HPPA (bug #264509).
38
39
40
41 1.1 dev-util/cscope/cscope-15.7a.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cscope/cscope-15.7a.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cscope/cscope-15.7a.ebuild?rev=1.1&content-type=text/plain
45
46 Index: cscope-15.7a.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/cscope/cscope-15.7a.ebuild,v 1.1 2009/05/02 10:01:04 ulm Exp $
51
52 inherit elisp-common eutils
53
54 DESCRIPTION="Interactively examine a C program"
55 HOMEPAGE="http://cscope.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/cscope/${P}.tar.bz2"
57
58 LICENSE="BSD GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
61 IUSE="emacs"
62
63 RDEPEND=">=sys-libs/ncurses-5.2"
64 DEPEND="${RDEPEND}
65 sys-devel/flex
66 sys-devel/bison
67 >=sys-devel/autoconf-2.60
68 emacs? ( virtual/emacs )"
69
70 SITEFILE="50${PN}-gentoo.el"
71
72 src_compile() {
73 STRIP="no"
74
75 econf || die "econf failed"
76 make clean || die "make clean failed"
77 emake || die "emake failed"
78
79 if use emacs ; then
80 cd "${S}"/contrib/xcscope || die
81 elisp-compile *.el || die
82 fi
83 }
84
85 src_install() {
86 einstall || die "einstall failed"
87 dodoc AUTHORS ChangeLog NEWS README* TODO || die "dodoc failed"
88
89 if use emacs ; then
90 cd "${S}"/contrib/xcscope || die
91 elisp-install ${PN} *.el *.elc || die
92 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
93 dobin cscope-indexer || die "dobin failed"
94 fi
95
96 cd "${S}"/contrib/webcscope || die
97 docinto webcscope
98 dodoc INSTALL TODO cgi-lib.pl cscope hilite.c || die "dodoc failed"
99 insinto /usr/share/doc/${PF}/webcscope/icons; doins icons/*.gif
100 }
101
102 pkg_postinst() {
103 use emacs && elisp-site-regen
104 }
105
106 pkg_postrm() {
107 use emacs && elisp-site-regen
108 }