Gentoo Archives: gentoo-commits

From: "Akinori Hattori (hattya)" <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/namazu: ChangeLog namazu-2.0.18.ebuild
Date: Fri, 01 Aug 2008 15:45:36
Message-Id: E1KOwov-0006G4-OK@stork.gentoo.org
1 hattya 08/08/01 15:45:33
2
3 Modified: ChangeLog namazu-2.0.18.ebuild
4 Log:
5 remove lisp/browse-url-for-emacs-19.28.el in src_compile.
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.28 app-text/namazu/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/namazu/ChangeLog?rev=1.28&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/namazu/ChangeLog?rev=1.28&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/namazu/ChangeLog?r1=1.27&r2=1.28
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-text/namazu/ChangeLog,v
18 retrieving revision 1.27
19 retrieving revision 1.28
20 diff -u -r1.27 -r1.28
21 --- ChangeLog 1 Aug 2008 15:43:29 -0000 1.27
22 +++ ChangeLog 1 Aug 2008 15:45:33 -0000 1.28
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-text/namazu
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-text/namazu/ChangeLog,v 1.27 2008/08/01 15:43:29 hattya Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-text/namazu/ChangeLog,v 1.28 2008/08/01 15:45:33 hattya Exp $
28 +
29 + 01 Aug 2008; Akinori Hattori <hattya@g.o> namazu-2.0.18.ebuild:
30 + remove lisp/browse-url-for-emacs-19.28.el in src_compile.
31
32 01 Aug 2008; Akinori Hattori <hattya@g.o> -namazu-2.0.16.ebuild,
33 -namazu-2.0.17.ebuild, -namazu-2.0.17-r1.ebuild:
34
35
36
37 1.4 app-text/namazu/namazu-2.0.18.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/namazu/namazu-2.0.18.ebuild?rev=1.4&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/namazu/namazu-2.0.18.ebuild?rev=1.4&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/namazu/namazu-2.0.18.ebuild?r1=1.3&r2=1.4
42
43 Index: namazu-2.0.18.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-text/namazu/namazu-2.0.18.ebuild,v
46 retrieving revision 1.3
47 retrieving revision 1.4
48 diff -u -r1.3 -r1.4
49 --- namazu-2.0.18.ebuild 26 Mar 2008 16:49:39 -0000 1.3
50 +++ namazu-2.0.18.ebuild 1 Aug 2008 15:45:33 -0000 1.4
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/app-text/namazu/namazu-2.0.18.ebuild,v 1.3 2008/03/26 16:49:39 corsair Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/app-text/namazu/namazu-2.0.18.ebuild,v 1.4 2008/08/01 15:45:33 hattya Exp $
56
57 inherit elisp-common
58
59 @@ -25,8 +25,6 @@
60 www-client/lynx
61 )"
62
63 -SITEFILE=50${PN}-gentoo.el
64 -
65 src_unpack() {
66
67 unpack ${A}
68 @@ -53,8 +51,10 @@
69
70 if use emacs; then
71 cd lisp
72 - elisp-comp {namazu,gnus-nmz-1}.el || die "elisp-comp failed"
73 + rm -f browse*
74 + elisp-comp *.el || die
75 fi
76 +
77 }
78
79 src_install () {
80 @@ -70,20 +70,23 @@
81 doins etc/*.png
82
83 if use emacs; then
84 - elisp-install ${PN} lisp/{namazu,gnus-nmz-1}.el{,c} \
85 - || die "elisp-install failed"
86 - elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
87 - || die "elisp-site-file-install failed"
88 + elisp-install ${PN} lisp/*.el* || die
89 + elisp-site-file-install "${FILESDIR}"/50${PN}-gentoo.el || die
90
91 docinto lisp
92 dodoc lisp/ChangeLog*
93 fi
94
95 }
96 +
97 pkg_postinst() {
98 +
99 use emacs && elisp-site-regen
100 +
101 }
102
103 pkg_postrm() {
104 +
105 use emacs && elisp-site-regen
106 +
107 }