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