diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-03-28 19:19:14 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-03-28 19:19:14 +0000 |
commit | 653851b48e27af2265805a33765415070d4c6c77 (patch) | |
tree | a006443697ed45af9590c9a6b0eede4e05d2d007 /app-emacs/auctex/auctex-11.14.ebuild | |
parent | Fixed the bad digest, also added documentation install. (diff) | |
download | historical-653851b48e27af2265805a33765415070d4c6c77.tar.gz historical-653851b48e27af2265805a33765415070d4c6c77.tar.bz2 historical-653851b48e27af2265805a33765415070d4c6c77.zip |
minor version bump
Diffstat (limited to 'app-emacs/auctex/auctex-11.14.ebuild')
-rw-r--r-- | app-emacs/auctex/auctex-11.14.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/app-emacs/auctex/auctex-11.14.ebuild b/app-emacs/auctex/auctex-11.14.ebuild new file mode 100644 index 000000000000..53040b004b96 --- /dev/null +++ b/app-emacs/auctex/auctex-11.14.ebuild @@ -0,0 +1,49 @@ +# 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.1 2003/03/28 19:19:14 mkennedy 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="http://savannah.nongnu.org/download/auctex/beta.pkg/${PV}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/emacs + 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 +} |