Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/auctex/
Date: Fri, 01 Nov 2019 19:36:10
Message-Id: 1572636957.de9c6483524eab471e6ffe963e9abd08c72e1bbb.ulm@gentoo
1 commit: de9c6483524eab471e6ffe963e9abd08c72e1bbb
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 1 19:33:31 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 1 19:35:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de9c6483
7
8 app-emacs/auctex: Remove old.
9
10 Package-Manager: Portage-2.3.78, Repoman-2.3.17
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-emacs/auctex/auctex-12.1.ebuild | 61 -------------------------------------
14 1 file changed, 61 deletions(-)
15
16 diff --git a/app-emacs/auctex/auctex-12.1.ebuild b/app-emacs/auctex/auctex-12.1.ebuild
17 deleted file mode 100644
18 index ad2a784723d..00000000000
19 --- a/app-emacs/auctex/auctex-12.1.ebuild
20 +++ /dev/null
21 @@ -1,61 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -NEED_EMACS=24
27 -
28 -inherit elisp
29 -
30 -DESCRIPTION="Extensible package for writing and formatting TeX files in Emacs"
31 -HOMEPAGE="https://www.gnu.org/software/auctex/"
32 -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
33 -
34 -LICENSE="GPL-3+ FDL-1.3+"
35 -SLOT="0"
36 -KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
37 -IUSE="preview-latex"
38 -
39 -DEPEND="virtual/latex-base
40 - preview-latex? (
41 - app-text/dvipng
42 - app-text/ghostscript-gpl
43 - )"
44 -RDEPEND="${DEPEND}"
45 -
46 -TEXMF="/usr/share/texmf-site"
47 -
48 -src_configure() {
49 - econf --with-emacs \
50 - --with-auto-dir="${EPREFIX}/var/lib/auctex" \
51 - --with-lispdir="${EPREFIX}${SITELISP}/${PN}" \
52 - --with-packagelispdir="${EPREFIX}${SITELISP}/${PN}" \
53 - --with-packagedatadir="${EPREFIX}${SITEETC}/${PN}" \
54 - --with-texmf-dir="${EPREFIX}${TEXMF}" \
55 - --docdir="${EPREFIX}/usr/share/doc/${PF}" \
56 - --disable-build-dir-test \
57 - $(use_enable preview-latex preview)
58 -}
59 -
60 -src_compile() {
61 - export VARTEXFONTS="${T}"/fonts
62 - emake
63 -}
64 -
65 -src_install() {
66 - emake -j1 DESTDIR="${D}" install
67 - elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el"
68 - if use preview-latex; then
69 - elisp-site-file-install "${FILESDIR}/60${PN}-gentoo.el"
70 - fi
71 - dodoc ChangeLog* CHANGES FAQ INSTALL PROBLEMS.preview README RELEASE TODO
72 -}
73 -
74 -pkg_postinst() {
75 - use preview-latex && texmf-update
76 - elisp-site-regen
77 -}
78 -
79 -pkg_postrm(){
80 - use preview-latex && texmf-update
81 - elisp-site-regen
82 -}