blob: 5952a7b21e14ce1da251026e6cf6375dafb5dbce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/navi2ch/navi2ch-1.8.1.ebuild,v 1.1 2008/12/01 00:45:34 matsuu Exp $
inherit elisp
DESCRIPTION="A navigator for 2ch"
HOMEPAGE="http://navi2ch.sourceforge.net/"
SRC_URI="mirror://sourceforge/navi2ch/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
SITEFILE=50${PN}-gentoo.el
src_compile() {
econf \
--with-lispdir=${SITELISP}/${PN} \
--with-icondir=${SITEETC}/${PN} \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
elisp-install ${PN} contrib/*.el || die "elisp-install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
|| die "elisp-site-file-install failed"
dodoc ChangeLog* NEWS README TODO
newdoc contrib/README README.contrib
}
pkg_postinst() {
elisp-site-regen
elog
elog "Please add to your ~/.emacs"
elog "If you use mona-font,"
elog "\t(setq navi2ch-mona-enable t)"
elog "If you use izonmoji-mode,"
elog "\t(require 'izonmoji-mode)"
elog "\t(add-hook 'navi2ch-bm-mode-hook 'izonmoji-mode-on)"
elog "\t(add-hook 'navi2ch-article-mode-hook 'izonmoji-mode-on)"
elog "\t(add-hook 'navi2ch-popup-article-mode-hook 'izonmoji-mode-on)"
elog
}
|