Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/navi2ch: navi2ch-1.8.3.ebuild ChangeLog
Date: Mon, 11 May 2009 14:36:15
Message-Id: E1M3Wbw-0008JK-5b@stork.gentoo.org
1 matsuu 09/05/11 14:36:08
2
3 Modified: ChangeLog
4 Added: navi2ch-1.8.3.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.52 app-emacs/navi2ch/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/ChangeLog?rev=1.52&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/ChangeLog?rev=1.52&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/ChangeLog?r1=1.51&r2=1.52
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/ChangeLog,v
19 retrieving revision 1.51
20 retrieving revision 1.52
21 diff -u -r1.51 -r1.52
22 --- ChangeLog 1 Mar 2009 23:52:46 -0000 1.51
23 +++ ChangeLog 11 May 2009 14:36:08 -0000 1.52
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emacs/navi2ch
26 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/ChangeLog,v 1.51 2009/03/01 23:52:46 matsuu Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/ChangeLog,v 1.52 2009/05/11 14:36:08 matsuu Exp $
30 +
31 +*navi2ch-1.8.3 (11 May 2009)
32 +
33 + 11 May 2009; MATSUU Takuto <matsuu@g.o> +navi2ch-1.8.3.ebuild:
34 + Version bumped.
35
36 *navi2ch-1.8.2 (01 Mar 2009)
37
38
39
40
41 1.1 app-emacs/navi2ch/navi2ch-1.8.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/navi2ch-1.8.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/navi2ch-1.8.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: navi2ch-1.8.3.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/app-emacs/navi2ch/navi2ch-1.8.3.ebuild,v 1.1 2009/05/11 14:36:08 matsuu Exp $
51
52 inherit elisp
53
54 DESCRIPTION="A navigator for 2ch"
55 HOMEPAGE="http://navi2ch.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/navi2ch/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE=""
62
63 SITEFILE=50${PN}-gentoo.el
64
65 src_compile() {
66 econf \
67 --with-lispdir=${SITELISP}/${PN} \
68 --with-icondir=${SITEETC}/${PN} \
69 || die "econf failed"
70 emake || die "emake failed"
71 }
72
73 src_install() {
74 emake DESTDIR="${D}" install || die "emake install failed"
75 elisp-install ${PN} contrib/*.el || die "elisp-install failed"
76 elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
77 || die "elisp-site-file-install failed"
78 dodoc ChangeLog* NEWS README TODO
79 newdoc contrib/README README.contrib
80 }
81
82 pkg_postinst() {
83 elisp-site-regen
84 elog
85 elog "Please add to your ~/.emacs"
86 elog "If you use mona-font,"
87 elog "\t(setq navi2ch-mona-enable t)"
88 elog "If you use izonmoji-mode,"
89 elog "\t(require 'izonmoji-mode)"
90 elog "\t(add-hook 'navi2ch-bm-mode-hook 'izonmoji-mode-on)"
91 elog "\t(add-hook 'navi2ch-article-mode-hook 'izonmoji-mode-on)"
92 elog "\t(add-hook 'navi2ch-popup-article-mode-hook 'izonmoji-mode-on)"
93 elog
94 }