blob: af2f6b74af789824d6753bbb17b46753a91d94b3 (
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
|
# 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-10.0g.ebuild,v 1.2 2003/02/13 07:03:16 vapier Exp $
inherit elisp
IUSE=""
DESCRIPTION="AUC TeX is an extensible package that supports writing and formatting TeX files"
HOMEPAGE="http://mirrors.sunsite.dk/auctex/www/auctex/"
SRC_URI="ftp://sunsite.dk/packages/auctex/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/emacs
app-text/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 NEWS INSTALL
}
pkg_postinst() {
elisp-site-regen
}
pkg_postrm() {
elisp-site-regen
}
|