Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/chktex/
Date: Tue, 02 Aug 2016 08:42:42
Message-Id: 1470127352.e64c3fe8fcb1e8da7405ab31eefce87497ea1c07.aballier@gentoo
1 commit: e64c3fe8fcb1e8da7405ab31eefce87497ea1c07
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 2 08:42:12 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 2 08:42:32 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e64c3fe8
7
8 dev-tex/chktex: build dvi file at src_compile instead of src_install; should fix bugs #568840 and #580918
9
10 Package-Manager: portage-2.3.0
11
12 dev-tex/chktex/chktex-1.7.5.ebuild | 4 +++-
13 1 file changed, 3 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-tex/chktex/chktex-1.7.5.ebuild b/dev-tex/chktex/chktex-1.7.5.ebuild
16 index cca1bf4..5d1fb74 100644
17 --- a/dev-tex/chktex/chktex-1.7.5.ebuild
18 +++ b/dev-tex/chktex/chktex-1.7.5.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 @@ -40,6 +40,7 @@ src_configure() {
26
27 src_compile() {
28 autotools-utils_src_compile
29 + autotools-utils_src_compile ChkTeX.dvi
30 use doc && autotools-utils_src_compile html
31 }
32
33 @@ -48,6 +49,7 @@ src_install() {
34 HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
35 DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
36 fi
37 + DOCS+=("${AUTOTOOLS_BUILD_DIR}/ChkTeX.dvi")
38 autotools-utils_src_install
39 doman *.1
40 }