diff options
author | Mamoru Komachi <usata@gentoo.org> | 2006-02-01 16:06:06 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2006-02-01 16:06:06 +0000 |
commit | 5cf045fc6dbe0210089161868e6ee2a161e8f9ad (patch) | |
tree | 335b08ef02e25f5f8c9e1b3a3beaa5429881710d /app-emacs/auctex/auctex-11.82.ebuild | |
parent | Recommit after making pycrpto fix for bad RMD160 digest errors. (diff) | |
download | gentoo-2-5cf045fc6dbe0210089161868e6ee2a161e8f9ad.tar.gz gentoo-2-5cf045fc6dbe0210089161868e6ee2a161e8f9ad.tar.bz2 gentoo-2-5cf045fc6dbe0210089161868e6ee2a161e8f9ad.zip |
Version bumped and fixed bug #118100. Thanks to Christian Faulhammer <v-li@gmx.de> and Matsui Tetsushi <VED03370@nifty.ne.jp>.
(Portage version: 2.0.53)
Diffstat (limited to 'app-emacs/auctex/auctex-11.82.ebuild')
-rw-r--r-- | app-emacs/auctex/auctex-11.82.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/app-emacs/auctex/auctex-11.82.ebuild b/app-emacs/auctex/auctex-11.82.ebuild new file mode 100644 index 000000000000..1d692de99e37 --- /dev/null +++ b/app-emacs/auctex/auctex-11.82.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.82.ebuild,v 1.1 2006/02/01 16:06:06 usata Exp $ + +inherit elisp eutils latex-package + +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="~amd64 ~ppc ~ppc-macos ~ppc64 ~sparc ~x86" +IUSE="preview-latex" + +DEPEND="preview-latex? ( !dev-tex/preview-latex )" + +src_unpack() { + unpack ${A} + cd ${S} + + # skip XEmacs detection. this is a workaround for emacs23 + epatch ${FILESDIR}/${P}-configure.diff +} + +src_compile() { + econf --disable-build-dir-test \ + --with-auto-dir=${D}/var/lib/auctex \ + --with-lispdir=${D}/usr/share/emacs/site-lisp \ + $(use_enable preview-latex preview) || die "econf failed" + emake || die +} + +src_install() { + einstall || die + dosed ${SITELISP}/tex-site.el || die + elisp-site-file-install ${FILESDIR}/51auctex-gentoo.el + if use preview-latex; then + elisp-site-file-install ${FILESDIR}/60auctex-gentoo.el + fi + dodoc ChangeLog CHANGES README RELEASE TODO FAQ INSTALL* +} + +pkg_postinst() { + # rebuild TeX-inputfiles-database + use preview-latex && latex-package_pkg_postinst + elisp-site-regen +} + +pkg_postrm(){ + use preview-latex && latex-package_pkg_postrm + elisp-site-regen +} |