blob: d467ee3cf6e22ae02840d67afc19e69fba70f35f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.53.ebuild,v 1.4 2004/10/16 22:20:56 weeve Exp $
inherit elisp
DESCRIPTION="AUCTeX 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 ppc ~amd64 sparc"
IUSE=""
DEPEND="virtual/emacs
virtual/tetex"
src_compile() {
econf --with-auto-dir=${D}/var/lib/auctex \
--with-lispdir=${D}/usr/share/emacs/site-lisp \
--with-tex-input-dirs="/usr/share/texmf/tex/;/usr/share/texmf/bibtex/bst/" || die "econf failed"
emake || die
}
src_install() {
einstall || die
dosed ${SITELISP}/tex-site.el || die
elisp-site-file-install ${FILESDIR}/50auctex-gentoo.el
dodoc ChangeLog CHANGES INSTALLATION PROBLEMS README
}
|