blob: 60699a497a92530772c66e5b1ee54ba32892d42f (
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
48
49
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-w3m/emacs-w3m-1.4.4-r3.ebuild,v 1.4 2009/07/16 16:47:03 nixnut Exp $
inherit elisp
DESCRIPTION="emacs-w3m is an interface program of w3m on Emacs"
HOMEPAGE="http://emacs-w3m.namazu.org"
SRC_URI="http://emacs-w3m.namazu.org/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ppc sparc x86"
IUSE="linguas_ja"
DEPEND="virtual/w3m"
RDEPEND="${DEPEND}"
SITEFILE="70${PN}-gentoo.el"
src_compile() {
econf || die "econf failed"
emake all-en $(useq linguas_ja && echo all-ja) || die "emake failed"
}
src_install() {
emake lispdir="${D}${SITELISP}/${PN}" \
infodir="${D}/usr/share/info" \
ICONDIR="${D}${SITEETC}/${PN}" \
install-en $(useq linguas_ja && echo install-ja) install-icons \
|| die "emake install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
dodoc ChangeLog* README
use linguas_ja && dodoc README.ja
}
pkg_postinst() {
elisp-site-regen
einfo "Please see /usr/share/doc/${PF}/README*"
einfo
elog "If you want to use the shimbun library, please emerge app-emacs/apel"
elog "and app-emacs/flim."
einfo
}
pkg_postrm() {
elisp-site-regen
}
|