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