blob: 0ae0cb6a225906bf572c9cbc560c67c9020332d9 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/w3/w3-4.0_pre47-r1.ebuild,v 1.8 2004/06/24 22:27:33 agriffis Exp $
inherit elisp
DESCRIPTION="ull-featured web browser written entirely in Emacs Lisp"
HOMEPAGE="http://www.cs.indiana.edu/elisp/w3/docs.html"
SRC_URI="ftp://ftp.ibiblio.org/pub/packages/editors/xemacs/emacs-w3/${P/_pre/pre.}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc alpha ~ppc ~amd64"
DEPEND="virtual/emacs"
S="${WORKDIR}/${P/_pre/pre.}"
src_unpack() {
unpack ${A}
cd ${S} && patch -p1 <${FILESDIR}/w3-gentoo.patch || die
}
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--with-emacs \
--with-datadir=${SITELISP}/${PN} \
--with-lispdir=${SITELISP}/${PN} || die "./configure failed"
make || die
}
src_install() {
make prefix=${D}/usr infodir=${D}/usr/share/info datadir=${D}/${SITELISP}/${PN} \
lispdir=${D}/${SITELISP}/${PN} install || die
elisp-site-file-install ${FILESDIR}/50w3-gentoo.el
}
|