Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/idb: ChangeLog idb-10.1.018.ebuild
Date: Mon, 13 Oct 2008 22:15:48
Message-Id: E1KpVhY-0004ZN-BB@stork.gentoo.org
1 bicatali 08/10/13 22:15:44
2
3 Modified: ChangeLog idb-10.1.018.ebuild
4 Log:
5 Fixed emacs site file installation, thanks to ulm, closing bug #241594.
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r7 x86_64)
7
8 Revision Changes Path
9 1.13 dev-lang/idb/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/idb/ChangeLog?rev=1.13&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/idb/ChangeLog?rev=1.13&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/idb/ChangeLog?r1=1.12&r2=1.13
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/idb/ChangeLog,v
18 retrieving revision 1.12
19 retrieving revision 1.13
20 diff -u -r1.12 -r1.13
21 --- ChangeLog 2 Sep 2008 09:45:52 -0000 1.12
22 +++ ChangeLog 13 Oct 2008 22:15:44 -0000 1.13
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-lang/idb
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/ChangeLog,v 1.12 2008/09/02 09:45:52 bicatali Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/ChangeLog,v 1.13 2008/10/13 22:15:44 bicatali Exp $
28 +
29 + 13 Oct 2008; Sébastien Fabbro <bicatali@g.o>
30 + +files/50idb-gentoo.el, idb-10.1.018.ebuild:
31 + Fixed emacs site file installation, thanks to ulm, closing bug #241594.
32
33 *idb-10.1.018 (02 Sep 2008)
34
35
36
37
38 1.2 dev-lang/idb/idb-10.1.018.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/idb/idb-10.1.018.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/idb/idb-10.1.018.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/idb/idb-10.1.018.ebuild?r1=1.1&r2=1.2
43
44 Index: idb-10.1.018.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-lang/idb/idb-10.1.018.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- idb-10.1.018.ebuild 2 Sep 2008 09:45:52 -0000 1.1
51 +++ idb-10.1.018.ebuild 13 Oct 2008 22:15:44 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/idb-10.1.018.ebuild,v 1.1 2008/09/02 09:45:52 bicatali Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/idb/idb-10.1.018.ebuild,v 1.2 2008/10/13 22:15:44 bicatali Exp $
57
58 inherit rpm elisp-common
59
60 @@ -33,7 +33,8 @@
61 RDEPEND="virtual/libstdc++
62 x11-libs/libXft
63 x11-libs/libXt
64 - dev-libs/libxml2"
65 + dev-libs/libxml2
66 + emacs? ( virtual/emacs )"
67
68 src_unpack() {
69 unpack ${A}
70 @@ -68,8 +69,10 @@
71 MANPATH=${instdir}/man
72 EOF
73 doenvd 06idb || die "installing env file failed"
74 - use emacs && \
75 - elisp-site-file-install "${S}"${instdir}/bin/*.el
76 + if use emacs; then
77 + elisp-install ${PN} "${S}"${instdir}/bin/*.el || die
78 + elisp-site-file-install "${FILESDIR}"/50${PN}-gentoo.el || die
79 + fi
80 }
81
82 pkg_postinst () {