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: auctex-11.85-r1.ebuild
Date: Sat, 30 Jan 2010 21:58:56
Message-Id: E1NbLLA-0008Ta-BR@stork.gentoo.org
1 ulm 10/01/30 21:58:52
2
3 Modified: auctex-11.85-r1.ebuild
4 Log:
5 Properly split off src_configure for EAPI 3.
6 (Portage version: 2.2_rc62/cvs/Linux i686)
7
8 Revision Changes Path
9 1.2 app-emacs/auctex/auctex-11.85-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.85-r1.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.85-r1.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/auctex/auctex-11.85-r1.ebuild?r1=1.1&r2=1.2
14
15 Index: auctex-11.85-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.85-r1.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- auctex-11.85-r1.ebuild 30 Jan 2010 18:03:35 -0000 1.1
22 +++ auctex-11.85-r1.ebuild 30 Jan 2010 21:58:51 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.85-r1.ebuild,v 1.1 2010/01/30 18:03:35 ulm Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/auctex/auctex-11.85-r1.ebuild,v 1.2 2010/01/30 21:58:51 ulm Exp $
28
29 EAPI=3
30
31 @@ -23,7 +23,7 @@
32
33 TEXMF="/usr/share/texmf-site"
34
35 -src_compile() {
36 +src_configure() {
37 # Remove broken Info file (will be recreated by the build system)
38 rm doc/auctex.info
39
40 @@ -35,6 +35,9 @@
41 --with-texmf-dir="${EPREFIX}${TEXMF}" \
42 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
43 $(use_enable preview-latex preview) || die "econf failed"
44 +}
45 +
46 +src_compile() {
47 emake || die "emake failed"
48 cd doc; emake tex-ref.pdf || die "creation of tex-ref.pdf failed"
49 }