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.1.ebuild
Date: Mon, 01 Dec 2008 00:45:37
Message-Id: E1L6wus-0005kl-IY@stork.gentoo.org
1 matsuu 08/12/01 00:45:34
2
3 Modified: ChangeLog
4 Added: navi2ch-1.8.1.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6_rc2/cvs/Linux 2.6.27-gentoo-r2 x86_64)
8
9 Revision Changes Path
10 1.44 app-emacs/navi2ch/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/ChangeLog?rev=1.44&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/ChangeLog?rev=1.44&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/ChangeLog?r1=1.43&r2=1.44
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/ChangeLog,v
19 retrieving revision 1.43
20 retrieving revision 1.44
21 diff -u -r1.43 -r1.44
22 --- ChangeLog 14 Jun 2008 14:03:14 -0000 1.43
23 +++ ChangeLog 1 Dec 2008 00:45:34 -0000 1.44
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emacs/navi2ch
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/ChangeLog,v 1.43 2008/06/14 14:03:14 opfer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/ChangeLog,v 1.44 2008/12/01 00:45:34 matsuu Exp $
29 +
30 +*navi2ch-1.8.1 (01 Dec 2008)
31 +
32 + 01 Dec 2008; MATSUU Takuto <matsuu@g.o> +navi2ch-1.8.1.ebuild:
33 + Version bumped.
34
35 14 Jun 2008; Christian Faulhammer <opfer@g.o>
36 -navi2ch-1.7.5.ebuild:
37
38
39
40 1.1 app-emacs/navi2ch/navi2ch-1.8.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/navi2ch-1.8.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/navi2ch/navi2ch-1.8.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: navi2ch-1.8.1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 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.1.ebuild,v 1.1 2008/12/01 00:45:34 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 }