forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
emacs-w3m-1.4.528_pre20140213.ebuild
49 lines (37 loc) · 1.11 KB
/
emacs-w3m-1.4.528_pre20140213.ebuild
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit readme.gentoo elisp autotools
DESCRIPTION="emacs-w3m is an interface program of w3m on Emacs"
HOMEPAGE="http://emacs-w3m.namazu.org/"
SRC_URI="http://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="linguas_ja"
DEPEND="virtual/w3m"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
SITEFILE="70${PN}-gentoo.el"
src_prepare() {
eautoreconf
}
src_configure() {
default
}
src_compile() {
emake all-en $(use linguas_ja && echo all-ja)
}
src_install() {
emake lispdir="${ED}${SITELISP}/${PN}" \
infodir="${ED}/usr/share/info" \
ICONDIR="${ED}${SITEETC}/${PN}" \
install-en $(use linguas_ja && echo install-ja) install-icons
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
dodoc ChangeLog* NEWS README
use linguas_ja && dodoc BUGS.ja NEWS.ja README.ja
DOC_CONTENTS="If you want to use the shimbun library, please emerge
app-emacs/apel and app-emacs/flim."
readme.gentoo_create_doc
}