summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2007-12-22 18:32:51 +0000
committerUlrich Müller <ulm@gentoo.org>2007-12-22 18:32:51 +0000
commit2d60ca9b485cb7ab15e3af994932de73f413a43f (patch)
tree2f26f8ba71afdd4cf5b8e3318b770cbb25ae59d0 /app-emacs/auctex
parentAdded ~ppc wrt bug 188194 (diff)
downloadgentoo-2-2d60ca9b485cb7ab15e3af994932de73f413a43f.tar.gz
gentoo-2-2d60ca9b485cb7ab15e3af994932de73f413a43f.tar.bz2
gentoo-2-2d60ca9b485cb7ab15e3af994932de73f413a43f.zip
Remove old revision.
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'app-emacs/auctex')
-rw-r--r--app-emacs/auctex/ChangeLog6
-rw-r--r--app-emacs/auctex/auctex-11.84-r1.ebuild99
-rw-r--r--app-emacs/auctex/files/auctex-11.84-ppc64_configure.patch34
-rw-r--r--app-emacs/auctex/files/digest-auctex-11.84-r13
4 files changed, 5 insertions, 137 deletions
diff --git a/app-emacs/auctex/ChangeLog b/app-emacs/auctex/ChangeLog
index b903e77ee0c7..85ef05201614 100644
--- a/app-emacs/auctex/ChangeLog
+++ b/app-emacs/auctex/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-emacs/auctex
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.75 2007/12/22 17:23:00 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.76 2007/12/22 18:32:51 ulm Exp $
+
+ 22 Dec 2007; Ulrich Mueller <ulm@gentoo.org>
+ -files/auctex-11.84-ppc64_configure.patch, -auctex-11.84-r1.ebuild:
+ Remove old revision.
22 Dec 2007; Tobias Scherbaum <dertobi123@gentoo.org>
auctex-11.84-r2.ebuild:
diff --git a/app-emacs/auctex/auctex-11.84-r1.ebuild b/app-emacs/auctex/auctex-11.84-r1.ebuild
deleted file mode 100644
index efe057b484ca..000000000000
--- a/app-emacs/auctex/auctex-11.84-r1.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.84-r1.ebuild,v 1.10 2007/05/15 03:28:35 opfer Exp $
-
-inherit elisp eutils latex-package autotools
-
-DESCRIPTION="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 FDL-1.2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 sparc x86"
-IUSE="preview-latex"
-
-DEPEND="virtual/tetex
- preview-latex? ( !dev-tex/preview-latex
- app-text/dvipng
- virtual/ghostscript )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # skip XEmacs detection. this is a workaround for emacs23
- epatch "${FILESDIR}/${P}-configure.diff"
- # allow compilation of Japanese TeX files, fixed in upstream's CVS
- # not needed for next release (>=11.85)
- epatch "${FILESDIR}/${P}-japanes.patch"
- # detection of Emacs fails on ppc64 with version 21, see bug #131761
- use ppc64 && epatch "${FILESDIR}/${P}-ppc64_configure.patch"
-}
-
-src_compile() {
- # Don't install in the main tree, as this causes file collisions
- # with app-text/tetex, see bug #155944
- if use preview-latex; then
- local TEXMFPATH="$(kpsewhich -var-value=TEXMFSITE)"
- local TEXMFCONFIGFILE="$(kpsewhich texmf.cnf)"
-
- if [ -z "${TEXMFPATH}" ]; then
- eerror "You haven't defined the TEXMFSITE variable in your TeX config."
- eerror "Please do so in the file ${TEXMFCONFIGFILE:-/var/lib/texmf/web2c/texmf.cnf}"
- die "Define TEXMFSITE in TeX configuration!"
- else
- # go through the colon separated list of directories (maybe only one) provided in the variable
- # TEXMFPATH (generated from TEXMFSITE from TeX's config) and choose only the first entry.
- # All entries are separated by colons, even when defined with semi-colons, kpsewhich changes
- # the output to a generic format, so IFS has to be redefined.
- local IFS="${IFS}:"
-
- for strippedpath in ${TEXMFPATH}
- do
- if [ -d ${strippedpath} ]; then
- local PREVIEW_TEXMFDIR="${strippedpath}"
- break
- fi
- done
-
- # verify if an existing path was chosen to prevent from installing into the wrong directory
- if [ -z ${PREVIEW_TEXMFDIR} ]; then
- eerror "TEXMFSITE does not contain any existing directory."
- eerror "Please define an existing directory in your TeX config file"
- eerror "${TEXMFCONFIGFILE:-/var/lib/texmf/web2c/texmf.cnf} or create at least one of the there specified directories"
- die "TEXMFSITE variable did not contain an existing directory"
- fi
-
- dodir "${PREVIEW_TEXMFDIR}"
- fi
- fi
-
- econf --disable-build-dir-test \
- --with-auto-dir="${D}/var/lib/auctex" \
- --with-lispdir="${D}/usr/share/emacs/site-lisp" \
- --with-texmf-dir="${D}/${PREVIEW_TEXMFDIR}" \
- $(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}/52auctex-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
-}
diff --git a/app-emacs/auctex/files/auctex-11.84-ppc64_configure.patch b/app-emacs/auctex/files/auctex-11.84-ppc64_configure.patch
deleted file mode 100644
index 3ca7e5a4a57a..000000000000
--- a/app-emacs/auctex/files/auctex-11.84-ppc64_configure.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- /tmp/configure 2007-03-02 13:33:25.000000000 +0100
-+++ configure 2007-03-02 13:35:44.000000000 +0100
-@@ -2032,31 +2032,6 @@
- { echo "$as_me:$LINENO: result: \"${emacsprefix}\"" >&5
- echo "${ECHO_T}\"${emacsprefix}\"" >&6; }
-
--
--{ echo "$as_me:$LINENO: checking if ${EMACS_NAME} is recent enough" >&5
--echo $ECHO_N "checking if ${EMACS_NAME} is recent enough... $ECHO_C" >&6; }
--
-- elisp="(cond ((< emacs-major-version 21) \"no\")
-- ((> emacs-major-version 21) \"yes\")
-- ((< emacs-minor-version 01) \"no\")
-- (t \"yes\"))"
-- OUTPUT=./conftest-$$
-- echo "${EMACS}" -batch -no-site-file -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1
-- "${EMACS}" -batch -no-site-file -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1
-- result="`cat ${OUTPUT}`"
-- echo "=> ${result}" >& 5 2>&1
-- rm -f ${OUTPUT}
--
--{ echo "$as_me:$LINENO: result: ${result}" >&5
--echo "${ECHO_T}${result}" >&6; }
--if test "${result}" != "yes"
--then
-- { { echo "$as_me:$LINENO: error: This package requires at least ${EMACS_NAME} version 21.1 Aborting!" >&5
--echo "$as_me: error: This package requires at least ${EMACS_NAME} version 21.1 Aborting!" >&2;}
-- { (exit 1); exit 1; }; }
--fi
--
--
- { echo "$as_me:$LINENO: checking for MULE support" >&5
- echo $ECHO_N "checking for MULE support... $ECHO_C" >&6; }
-
diff --git a/app-emacs/auctex/files/digest-auctex-11.84-r1 b/app-emacs/auctex/files/digest-auctex-11.84-r1
deleted file mode 100644
index c88a621c6913..000000000000
--- a/app-emacs/auctex/files/digest-auctex-11.84-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 73970c51221524442c11cde13d0584e9 auctex-11.84.tar.gz 927517
-RMD160 305f5327eac1bfe7f2770deb6617a50926c65f4f auctex-11.84.tar.gz 927517
-SHA256 3f25e99ddecc21422bbddf27ecbfcab49b187eb00f69788aaba1cf818fe557d1 auctex-11.84.tar.gz 927517