blob: d014a62008186b91ba3e3f91382642a7e16a5f06 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.14.ebuild,v 1.4 2003/06/29 19:00:22 aliz Exp $
inherit elisp
IUSE=""
DESCRIPTION="AUC TeX is an extensible package that supports writing and formatting TeX files"
HOMEPAGE="http://www.gnu.org/software/auctex"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/emacs
>=sys-apps/sed-4
app-text/tetex"
S="${WORKDIR}/${P}"
src_unpack() {
unpack ${A}
sed -i 's,/usr/local/lib/texmf/tex/,/usr/share/texmf/tex/,g' ${S}/tex.el || die
}
src_compile() {
make || die
}
src_install() {
dodir ${SITELISP}/auctex
make lispdir=${D}/${SITELISP} install install-contrib || die
sed -i "s,${D}/,,g" ${D}/${SITELISP}/tex-site.el || die
pushd doc
dodir /usr/share/info
make infodir=${D}/usr/share/info install || die
for i in ${D}/usr/share/info/* ; do mv $i $i.info ; done
popd
elisp-site-file-install ${FILESDIR}/50auctex-gentoo.el
dodoc ChangeLog CHANGES COPYING INSTALLATION PROBLEMS README
}
pkg_postinst() {
elisp-site-regen
}
pkg_postrm() {
elisp-site-regen
}
|