Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/auctex: ChangeLog auctex-11.88.ebuild
Date: Sat, 01 Nov 2014 16:46:02
Message-Id: 20141101164558.78D639385@oystercatcher.gentoo.org
1 ulm 14/11/01 16:45:58
2
3 Modified: ChangeLog
4 Added: auctex-11.88.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
9
10 Revision Changes Path
11 1.128 app-emacs/auctex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.128&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auctex/ChangeLog?rev=1.128&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auctex/ChangeLog?r1=1.127&r2=1.128
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v
20 retrieving revision 1.127
21 retrieving revision 1.128
22 diff -u -r1.127 -r1.128
23 --- ChangeLog 1 Nov 2014 16:33:18 -0000 1.127
24 +++ ChangeLog 1 Nov 2014 16:45:58 -0000 1.128
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-emacs/auctex
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.127 2014/11/01 16:33:18 ulm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/ChangeLog,v 1.128 2014/11/01 16:45:58 ulm Exp $
30 +
31 +*auctex-11.88 (01 Nov 2014)
32 +
33 + 01 Nov 2014; Ulrich Müller <ulm@g.o> +auctex-11.88.ebuild:
34 + Version bump.
35
36 01 Nov 2014; Ulrich Müller <ulm@g.o> auctex-11.87-r1.ebuild:
37 Fix typo in src_configure, EMACS_FLAVOR instead of EMACS_FLAVOUR.
38
39
40
41 1.1 app-emacs/auctex/auctex-11.88.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auctex/auctex-11.88.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auctex/auctex-11.88.ebuild?rev=1.1&content-type=text/plain
45
46 Index: auctex-11.88.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.88.ebuild,v 1.1 2014/11/01 16:45:58 ulm Exp $
51
52 EAPI=5
53
54 inherit elisp latex-package
55
56 DESCRIPTION="Extended support for writing, formatting and using (La)TeX, Texinfo and BibTeX files"
57 HOMEPAGE="http://www.gnu.org/software/auctex/"
58 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-3+ FDL-1.3+"
61 SLOT="0"
62 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
63 IUSE="preview-latex"
64
65 DEPEND="virtual/latex-base
66 preview-latex? (
67 app-text/dvipng
68 app-text/ghostscript-gpl
69 )"
70 RDEPEND="${DEPEND}"
71
72 TEXMF="/usr/share/texmf-site"
73
74 src_prepare() {
75 elisp_src_prepare
76 }
77
78 src_configure() {
79 EMACS_NAME=emacs EMACS_FLAVOR=emacs econf --disable-build-dir-test \
80 --with-auto-dir="${EPREFIX}/var/lib/auctex" \
81 --with-lispdir="${EPREFIX}${SITELISP}/${PN}" \
82 --with-packagelispdir="${EPREFIX}${SITELISP}/${PN}" \
83 --with-packagedatadir="${EPREFIX}${SITEETC}/${PN}" \
84 --with-texmf-dir="${EPREFIX}${TEXMF}" \
85 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
86 $(use_enable preview-latex preview)
87 }
88
89 src_compile() {
90 export VARTEXFONTS="${T}"/fonts
91 emake
92 }
93
94 src_install() {
95 emake -j1 DESTDIR="${D}" install
96 elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el"
97 if use preview-latex; then
98 elisp-site-file-install "${FILESDIR}/60${PN}-gentoo.el"
99 fi
100 dodoc ChangeLog CHANGES FAQ INSTALL PROBLEMS.preview README RELEASE TODO
101 }
102
103 pkg_postinst() {
104 # rebuild TeX-inputfiles-database
105 use preview-latex && latex-package_pkg_postinst
106 elisp-site-regen
107 }
108
109 pkg_postrm(){
110 use preview-latex && latex-package_pkg_postrm
111 elisp-site-regen
112 }