blob: 2b078fd4d2ab037148b2bbd004d01d190aee02c3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ess-5.2.2-r1.ebuild,v 1.6 2005/01/01 13:45:34 eradicator Exp $
inherit elisp
IUSE=""
DESCRIPTION="Emacs Speaks Statistics"
HOMEPAGE="http://stat.ethz.ch/ESS/"
SRC_URI="http://stat.ethz.ch/ESS/downloads/ess/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 alpha sparc ~amd64 ~ppc"
DEPEND="app-text/texi2html
sys-apps/sed
virtual/tetex"
RDEPEND=""
SITEFILE=50ess-gentoo.el
src_compile() {
#einfo "Compiling lisp sources..."
#pushd ${S}/lisp && make;
#popd;
#einfo "Making documentation..."
# The -glossary option doesn't work with Gentoo texi2html.
sed "s:-glossary::g" ${S}/doc/Makefile > ${T}/Makefile;
#mv -f ${T}/Makefile ${S}/doc/Makefile;
#pushd ${S}/doc && make;
#popd;
make PREFIX=/usr \
INFODIR=/usr/share/info \
LISPDIR=/usr/share/emacs/site-lisp/ess \
|| die
}
src_install() {
make PREFIX=${D}/usr \
INFODIR=${D}/usr/share/info \
LISPDIR=${D}/usr/share/emacs/site-lisp/ess \
install || die
elisp-site-file-install ${FILESDIR}/${SITEFILE};
dodir /usr/share/emacs/etc/ess
cp -a etc/* ${D}/usr/share/emacs/etc/ess
dohtml ${S}/doc/html/*.html
dodoc ${S}/doc/{NEWS,README,TODO}
insinto /usr/share/doc/${P}
doins ${S}/doc/ess-intro.pdf
}
pkg_postinst() {
elisp-site-regen
einfo "Please see /usr/share/doc/${P} for the complete documentation."
einfo "Usage hints are in /usr/share/emacs/site-lisp/${PN}/ess-site.el."
}
pkg_postrm() {
elisp-site-regen
}
|