summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-07-18 08:04:05 +0000
committerUlrich Müller <ulm@gentoo.org>2011-07-18 08:04:05 +0000
commit14759f0d85c4404ef85d4c4b1e75a1564e63a63b (patch)
tree51ac6cb0479554d8389450329e842cce451339ca /app-emacs/auctex
parentVersion bump. (diff)
downloadgentoo-2-14759f0d85c4404ef85d4c4b1e75a1564e63a63b.tar.gz
gentoo-2-14759f0d85c4404ef85d4c4b1e75a1564e63a63b.tar.bz2
gentoo-2-14759f0d85c4404ef85d4c4b1e75a1564e63a63b.zip
Remove old.
(Portage version: 2.1.10.6/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs/auctex')
-rw-r--r--app-emacs/auctex/ChangeLog5
-rw-r--r--app-emacs/auctex/auctex-11.86.ebuild64
2 files changed, 4 insertions, 65 deletions
diff --git a/app-emacs/auctex/ChangeLog b/app-emacs/auctex/ChangeLog
index 9630e156c014..ae4d343adbd4 100644
--- a/app-emacs/auctex/ChangeLog
+++ b/app-emacs/auctex/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emacs/auctex
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.111 2011/07/18 00:45:44 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.112 2011/07/18 08:04:05 ulm Exp $
+
+ 18 Jul 2011; Ulrich Mueller <ulm@gentoo.org> -auctex-11.86.ebuild:
+ Remove old.
18 Jul 2011; Mark Loeser <halcy0n@gentoo.org> auctex-11.86-r1.ebuild:
Stable for ppc64; bug #368307
diff --git a/app-emacs/auctex/auctex-11.86.ebuild b/app-emacs/auctex/auctex-11.86.ebuild
deleted file mode 100644
index 6d1832ba2526..000000000000
--- a/app-emacs/auctex/auctex-11.86.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.86.ebuild,v 1.7 2011/06/19 16:38:44 armin76 Exp $
-
-EAPI=3
-
-inherit elisp eutils latex-package
-
-DESCRIPTION="Extended support for writing, formatting and using (La)TeX, Texinfo and BibTeX files"
-HOMEPAGE="http://www.gnu.org/software/auctex/"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3 FDL-1.2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
-IUSE="preview-latex"
-
-DEPEND="virtual/latex-base
- preview-latex? ( !dev-tex/preview-latex
- app-text/dvipng
- app-text/ghostscript-gpl )"
-RDEPEND="${DEPEND}"
-
-TEXMF="/usr/share/texmf-site"
-
-src_configure() {
- # Remove broken Info file (will be recreated by the build system)
- rm doc/auctex.info*
-
- EMACS_NAME=emacs EMACS_FLAVOUR=emacs econf --disable-build-dir-test \
- --with-auto-dir="${EPREFIX}/var/lib/auctex" \
- --with-lispdir="${EPREFIX}${SITELISP}/${PN}" \
- --with-packagelispdir="${EPREFIX}${SITELISP}/${PN}" \
- --with-packagedatadir="${EPREFIX}${SITEETC}/${PN}" \
- --with-texmf-dir="${EPREFIX}${TEXMF}" \
- --docdir="${EPREFIX}/usr/share/doc/${PF}" \
- $(use_enable preview-latex preview) || die "econf failed"
-}
-
-src_compile() {
- emake || die "emake failed"
- cd doc; emake tex-ref.pdf || die "creation of tex-ref.pdf failed"
-}
-
-src_install() {
- emake -j1 DESTDIR="${D}" install || die "emake install failed"
- elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" || die
- if use preview-latex; then
- elisp-site-file-install "${FILESDIR}/60${PN}-gentoo.el" || die
- fi
- keepdir /var/lib/auctex
- 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
-}