public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/auctex/
Date: Sun, 24 Jan 2016 23:48:29 +0000 (UTC)	[thread overview]
Message-ID: <1453679289.e4f0eb28ed7286998c188ed62044bd309e70b277.ulm@gentoo> (raw)

commit:     e4f0eb28ed7286998c188ed62044bd309e70b277
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 24 23:48:09 2016 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 24 23:48:09 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4f0eb28

app-emacs/auctex: Version bump.

Package-Manager: portage-2.2.26

 app-emacs/auctex/Manifest            |  1 +
 app-emacs/auctex/auctex-11.89.ebuild | 60 ++++++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/app-emacs/auctex/Manifest b/app-emacs/auctex/Manifest
index 3a77401..f30f6d5 100644
--- a/app-emacs/auctex/Manifest
+++ b/app-emacs/auctex/Manifest
@@ -1,2 +1,3 @@
 DIST auctex-11.87.tar.gz 1206073 SHA256 63d57229e585dbf727f5545337615b997488bfdf475274da0718c90b77bd5cf2 SHA512 41a575a36ef2c111f214ad2e87a06c246751859a14ad3f8af77aaf180d8357a4c8d44c2f344b673404d2e011cdf4a193abda93f1b26ffff663f310ed430c5fa1 WHIRLPOOL d3bee56c1b940a2eb041a5b3b6e5ffe876b740e97c5793dd9295b42723abb5febd1fc40d9a0007df5d63f00547a5a59202eca2c102dfb878924ac07dac504eb0
 DIST auctex-11.88.tar.gz 1302836 SHA256 716867d5fbcc5c67cca781d7c1984e6a3a6d5da056ec3b4f35170805bf4dc83f SHA512 30c422b52b3fc698e453ada9643038dd30978f6b1a99f5118a53ae5b939d63246adcb1937f0e5c4cf166477dca78fa17d721402a90c833c9e91d75072ae0f67d WHIRLPOOL fa348913637bf6062184873f50c6988aa1afdd7e4a456acfb139d704de9769480503e796716a632e9769f7d3f68d70e6e42a739ae8742857fcf6390baec156d6
+DIST auctex-11.89.tar.gz 1332904 SHA256 98af296907b371083289a8b35bd6ff24cfd8fafb013033b724aacb5fe774c9b1 SHA512 a78ddefb46c1eb271646f3c4e723f49a913e391eb58263df3d3de272bc1ad5b70c0a9de682f28124aa5a48b36c030b3e83425667ee1a1973a054ff03ef1d8be9 WHIRLPOOL 6d8614961ddf95c764ac5f4dc8ce63bc265ddf2b8a33ee827594930b6239217f8818fffa4b30a204f8c2cf16d127c3ae97bd8d24421ce1f5254deb3f833e9e8a

diff --git a/app-emacs/auctex/auctex-11.89.ebuild b/app-emacs/auctex/auctex-11.89.ebuild
new file mode 100644
index 0000000..f563da8
--- /dev/null
+++ b/app-emacs/auctex/auctex-11.89.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit elisp
+
+DESCRIPTION="Extended support for (La)TeX, Texinfo and BibTeX files"
+HOMEPAGE="https://www.gnu.org/software/auctex/"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+ FDL-1.3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+IUSE="preview-latex"
+
+DEPEND="virtual/latex-base
+	preview-latex? (
+		app-text/dvipng
+		app-text/ghostscript-gpl
+	)"
+RDEPEND="${DEPEND}"
+
+TEXMF="/usr/share/texmf-site"
+
+src_configure() {
+	EMACS_NAME=emacs EMACS_FLAVOR=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)
+}
+
+src_compile() {
+	export VARTEXFONTS="${T}"/fonts
+	emake
+}
+
+src_install() {
+	emake -j1 DESTDIR="${D}" install
+	elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el"
+	if use preview-latex; then
+		elisp-site-file-install "${FILESDIR}/60${PN}-gentoo.el"
+	fi
+	dodoc ChangeLog* CHANGES FAQ INSTALL PROBLEMS.preview README RELEASE TODO
+}
+
+pkg_postinst() {
+	use preview-latex && texmf-update
+	elisp-site-regen
+}
+
+pkg_postrm(){
+	use preview-latex && texmf-update
+	elisp-site-regen
+}


             reply	other threads:[~2016-01-24 23:48 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-24 23:48 Ulrich Müller [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-03-06 12:58 [gentoo-commits] repo/gentoo:master commit in: app-emacs/auctex/ Agostino Sarubbo
2016-03-14 14:48 Agostino Sarubbo
2017-01-11 17:59 Ulrich Müller
2017-02-17 20:18 David Seifert
2017-02-18  8:32 Ulrich Müller
2018-02-15 20:47 Ulrich Müller
2018-02-15 20:47 Ulrich Müller
2018-03-19 13:26 Mikle Kolyada
2018-10-27 19:09 Mikle Kolyada
2018-10-28 17:40 Ulrich Müller
2019-10-07  8:42 Agostino Sarubbo
2019-10-07  8:59 Agostino Sarubbo
2019-10-07  9:53 Agostino Sarubbo
2019-11-01 10:43 Mikle Kolyada
2019-11-01 19:36 Ulrich Müller
2019-12-13 19:32 Mikle Kolyada
2020-05-28 15:40 Agostino Sarubbo
2020-05-28 15:42 Agostino Sarubbo
2020-05-29  7:39 Agostino Sarubbo
2020-06-03 15:12 Agostino Sarubbo
2021-01-06 13:07 Fabian Groffen
2021-02-06 16:50 Ulrich Müller
2022-05-09 12:41 Maciej Barć
2022-06-16 10:16 Jakov Smolić
2022-06-16 10:23 Ulrich Müller
2023-06-21 21:38 Maciej Barć
2023-06-21 21:38 Maciej Barć
2023-07-23 15:58 Arthur Zamarin
2023-11-13 12:38 Maciej Barć
2024-02-07 22:21 Maciej Barć
2024-03-13 10:11 Jakov Smolić
2024-05-06 18:00 Maciej Barć
2024-05-21  1:08 Maciej Barć
2024-05-21 19:04 Maciej Barć
2024-06-25 12:55 Arthur Zamarin
2024-08-30 12:59 Ulrich Müller
2024-09-01 20:56 Michael Orlitzky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1453679289.e4f0eb28ed7286998c188ed62044bd309e70b277.ulm@gentoo \
    --to=ulm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox