Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/sumibi: sumibi-0.5.2.ebuild ChangeLog
Date: Thu, 28 Aug 2008 08:34:48
Message-Id: E1KYcxp-00016l-Ud@stork.gentoo.org
1 ulm 08/08/28 08:34:45
2
3 Modified: sumibi-0.5.2.ebuild ChangeLog
4 Log:
5 Restore src_install function, fixes bug 235986. Use elisp-compile instead of elisp-comp, bug 235442.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 i686)
7
8 Revision Changes Path
9 1.3 app-emacs/sumibi/sumibi-0.5.2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/sumibi/sumibi-0.5.2.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/sumibi/sumibi-0.5.2.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/sumibi/sumibi-0.5.2.ebuild?r1=1.2&r2=1.3
14
15 Index: sumibi-0.5.2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-emacs/sumibi/sumibi-0.5.2.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- sumibi-0.5.2.ebuild 3 Jul 2007 09:19:46 -0000 1.2
22 +++ sumibi-0.5.2.ebuild 28 Aug 2008 08:34:45 -0000 1.3
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/sumibi/sumibi-0.5.2.ebuild,v 1.2 2007/07/03 09:19:46 opfer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/sumibi/sumibi-0.5.2.ebuild,v 1.3 2008/08/28 08:34:45 ulm Exp $
29
30 inherit elisp
31
32 @@ -9,15 +9,23 @@
33 SRC_URI="mirror://sourceforge.jp/sumibi/17176/${P}.tar.gz"
34
35 LICENSE="GPL-2"
36 -KEYWORDS="~x86"
37 SLOT="0"
38 -DEPEND=""
39 +KEYWORDS="~x86"
40 IUSE=""
41 +
42 SITEFILE=50${PN}-gentoo.el
43 -DOCS="README CREDITS CHANGELOG"
44
45 src_compile() {
46 cd client/elisp
47 - elisp-comp *.el || die "elisp-comp failed"
48 - mv *.el* ..
49 + elisp-compile *.el || die "elisp-compile failed"
50 +}
51 +
52 +src_install() {
53 + cd client/elisp
54 + elisp-install ${PN} *.{el,elc} || die "elisp-install failed"
55 + elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
56 + || die "elisp-site-file-install failed"
57 +
58 + cd "${S}"
59 + dodoc README CREDITS CHANGELOG
60 }
61
62
63
64 1.4 app-emacs/sumibi/ChangeLog
65
66 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/sumibi/ChangeLog?rev=1.4&view=markup
67 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/sumibi/ChangeLog?rev=1.4&content-type=text/plain
68 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/sumibi/ChangeLog?r1=1.3&r2=1.4
69
70 Index: ChangeLog
71 ===================================================================
72 RCS file: /var/cvsroot/gentoo-x86/app-emacs/sumibi/ChangeLog,v
73 retrieving revision 1.3
74 retrieving revision 1.4
75 diff -u -r1.3 -r1.4
76 --- ChangeLog 3 Jul 2007 09:19:46 -0000 1.3
77 +++ ChangeLog 28 Aug 2008 08:34:45 -0000 1.4
78 @@ -1,6 +1,10 @@
79 # ChangeLog for app-emacs/sumibi
80 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
81 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/sumibi/ChangeLog,v 1.3 2007/07/03 09:19:46 opfer Exp $
82 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
83 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/sumibi/ChangeLog,v 1.4 2008/08/28 08:34:45 ulm Exp $
84 +
85 + 28 Aug 2008; Ulrich Mueller <ulm@g.o> sumibi-0.5.2.ebuild:
86 + Restore src_install function, fixes bug 235986. Use elisp-compile instead
87 + of elisp-comp, bug 235442.
88
89 03 Jul 2007; Christian Faulhammer <opfer@g.o> sumibi-0.5.2.ebuild:
90 changed location of IUSE; removed src_install()