blob: bf5a80d3db659838ba9f651207a3f78852b952a6 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2005 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.ebuild,v 1.6 2005/08/03 18:52:04 kloeri Exp $
inherit elisp
IUSE=""
MY_P="${P/_/}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="emacs-w3m is an interface program of w3m on Emacs."
HOMEPAGE="http://emacs-w3m.namazu.org"
SRC_URI="http://emacs-w3m.namazu.org/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ppc sparc x86"
DEPEND="virtual/w3m"
pkg_setup() {
# use async doesn't ensure you built w3m with async flag,
# but it's safe to abort if you have it.
ewarn
ewarn "emacs-w3m hangs if you build w3m with async support."
ewarn "Please turn off async USE flag if you set it."
ewarn
if use async ; then
die "async USE flag detected. aborting."
fi
}
src_compile() {
./configure --prefix=/usr \
--with-lispdir=${SITELISP}/${PN} \
--with-icondir=/usr/share/${PN}/icon
make || die
}
src_install () {
make lispdir=${D}/${SITELISP}/${PN} \
infodir=${D}/usr/share/info \
ICONDIR=${D}/usr/share/${PN}/icon \
install || die
make lispdir=${D}/${SITELISP}/${PN} \
ICONDIR=${D}/usr/share/${PN}/icon \
install-icons || die
elisp-site-file-install ${FILESDIR}/70emacs-w3m-gentoo.el
dodoc ChangeLog* README*
}
pkg_postinst() {
elisp-site-regen
einfo "Please see /usr/share/doc/${P}/README.gz."
einfo
einfo "If you want to use shimbun library, please emerge app-emacs/apel and app-emacs/flim."
einfo
}
pkg_postrm() {
elisp-site-regen
}
|