blob: a1d8d076ab1b8a04f37c0c2e705db583d0433c17 (
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
|
# 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.13.ebuild,v 1.7 2003/10/09 15:24:27 usata 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
virtual/tetex"
S="${WORKDIR}/${P}"
src_unpack() {
unpack ${A}
cd ${S} && sed -e 's,/usr/local/lib/texmf/tex/,/usr/share/texmf/tex/,g' tex.el >tex.el.new \
&& mv tex.el.new tex.el || die
}
src_compile() {
make || die
}
src_install() {
dodir ${SITELISP}/auctex
make lispdir=${D}/${SITELISP} install install-contrib || die
# this is insane...
pushd ${D}/${SITELISP}
sed -e "s,${D}/,,g" tex-site.el >tex-site.el.new && \
mv tex-site.el.new tex-site.el || die
popd
pushd doc
dodir /usr/share/info
make infodir=${D}/usr/share/info install || die
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
}
|