1 |
ulm 10/01/31 19:40:09 |
2 |
|
3 |
Modified: ChangeLog |
4 |
Added: navi2ch-1.8.3-r1.ebuild |
5 |
Log: |
6 |
Add prefix keywords, change EAPI to 3. |
7 |
(Portage version: 2.2_rc62/cvs/Linux i686) |
8 |
|
9 |
Revision Changes Path |
10 |
1.60 app-emacs/navi2ch/ChangeLog |
11 |
|
12 |
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/ChangeLog?rev=1.60&view=markup |
13 |
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/ChangeLog?rev=1.60&content-type=text/plain |
14 |
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/ChangeLog?r1=1.59&r2=1.60 |
15 |
|
16 |
Index: ChangeLog |
17 |
=================================================================== |
18 |
RCS file: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/ChangeLog,v |
19 |
retrieving revision 1.59 |
20 |
retrieving revision 1.60 |
21 |
diff -u -r1.59 -r1.60 |
22 |
--- ChangeLog 31 Aug 2009 18:09:55 -0000 1.59 |
23 |
+++ ChangeLog 31 Jan 2010 19:40:08 -0000 1.60 |
24 |
@@ -1,6 +1,11 @@ |
25 |
# ChangeLog for app-emacs/navi2ch |
26 |
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 |
27 |
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/ChangeLog,v 1.59 2009/08/31 18:09:55 fauli Exp $ |
28 |
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 |
29 |
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/ChangeLog,v 1.60 2010/01/31 19:40:08 ulm Exp $ |
30 |
+ |
31 |
+*navi2ch-1.8.3-r1 (31 Jan 2010) |
32 |
+ |
33 |
+ 31 Jan 2010; Ulrich Mueller <ulm@g.o> +navi2ch-1.8.3-r1.ebuild: |
34 |
+ Add prefix keywords, change EAPI to 3. |
35 |
|
36 |
31 Aug 2009; Christian Faulhammer <fauli@g.o> |
37 |
-navi2ch-1.8.1.ebuild, -navi2ch-1.8.2.ebuild: |
38 |
|
39 |
|
40 |
|
41 |
1.1 app-emacs/navi2ch/navi2ch-1.8.3-r1.ebuild |
42 |
|
43 |
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/navi2ch-1.8.3-r1.ebuild?rev=1.1&view=markup |
44 |
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/navi2ch-1.8.3-r1.ebuild?rev=1.1&content-type=text/plain |
45 |
|
46 |
Index: navi2ch-1.8.3-r1.ebuild |
47 |
=================================================================== |
48 |
# Copyright 1999-2010 Gentoo Foundation |
49 |
# Distributed under the terms of the GNU General Public License v2 |
50 |
# $Header: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/navi2ch-1.8.3-r1.ebuild,v 1.1 2010/01/31 19:40:08 ulm Exp $ |
51 |
|
52 |
EAPI=3 |
53 |
|
54 |
inherit elisp |
55 |
|
56 |
DESCRIPTION="A navigator for 2ch" |
57 |
HOMEPAGE="http://navi2ch.sourceforge.net/" |
58 |
SRC_URI="mirror://sourceforge/navi2ch/${P}.tar.gz" |
59 |
|
60 |
LICENSE="GPL-2" |
61 |
SLOT="0" |
62 |
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" |
63 |
IUSE="" |
64 |
|
65 |
SITEFILE="50${PN}-gentoo.el" |
66 |
|
67 |
src_configure() { |
68 |
econf \ |
69 |
--with-lispdir="${EPREFIX}${SITELISP}/${PN}" \ |
70 |
--with-icondir="${EPREFIX}${SITEETC}/${PN}" |
71 |
} |
72 |
|
73 |
# This is NOT redundant, elisp.eclass redefines src_compile |
74 |
src_compile() { |
75 |
emake || die "emake failed" |
76 |
} |
77 |
|
78 |
src_install() { |
79 |
emake DESTDIR="${D}" install || die "emake install failed" |
80 |
elisp-install ${PN} contrib/*.el || die |
81 |
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die |
82 |
dodoc ChangeLog* NEWS README TODO || die |
83 |
newdoc contrib/README README.contrib || die |
84 |
} |
85 |
|
86 |
pkg_postinst() { |
87 |
elisp-site-regen |
88 |
elog |
89 |
elog "Please add to your ~/.emacs" |
90 |
elog "If you use mona-font," |
91 |
elog "\t(setq navi2ch-mona-enable t)" |
92 |
elog "If you use izonmoji-mode," |
93 |
elog "\t(require 'izonmoji-mode)" |
94 |
elog "\t(add-hook 'navi2ch-bm-mode-hook 'izonmoji-mode-on)" |
95 |
elog "\t(add-hook 'navi2ch-article-mode-hook 'izonmoji-mode-on)" |
96 |
elog "\t(add-hook 'navi2ch-popup-article-mode-hook 'izonmoji-mode-on)" |
97 |
elog |
98 |
} |