blob: 8ee06b7531ebd5da032e36f21cb98d856e227d9f (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-w3m/emacs-w3m-1.3.80.ebuild,v 1.2 2004/01/18 19:41:27 usata Exp $
inherit elisp
IUSE=""
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"
# This is development release and is not intended to be stable
KEYWORDS="~x86"
# This version won't run on w3m and w3m-m17n
DEPEND="virtual/emacs
>=net-www/w3mmee-0.3.2_p24-r3
>=app-emacs/apel-10.3
virtual/flim"
S=${WORKDIR}/${P}
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-w3mmee-gentoo.el
dodoc ChangeLog* README* TIPS* FAQ*
}
pkg_postinst() {
elisp-site-regen
einfo "Please see /usr/share/doc/${P}/README.gz."
}
pkg_postrm() {
elisp-site-regen
}
|