Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tex/chktex: chktex-1.7.4.ebuild ChangeLog
Date: Wed, 29 Apr 2015 15:15:46
Message-Id: 20150429151537.10E1599B@oystercatcher.gentoo.org
1 aballier 15/04/29 15:15:35
2
3 Modified: ChangeLog
4 Added: chktex-1.7.4.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: Alexis Ballier <aballier@g.o>
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.59 dev-tex/chktex/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/chktex/ChangeLog?rev=1.59&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/chktex/ChangeLog?rev=1.59&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/chktex/ChangeLog?r1=1.58&r2=1.59
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-tex/chktex/ChangeLog,v
21 retrieving revision 1.58
22 retrieving revision 1.59
23 diff -u -r1.58 -r1.59
24 --- ChangeLog 29 Apr 2015 15:13:50 -0000 1.58
25 +++ ChangeLog 29 Apr 2015 15:15:35 -0000 1.59
26 @@ -1,6 +1,11 @@
27 # ChangeLog for dev-tex/chktex
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/chktex/ChangeLog,v 1.58 2015/04/29 15:13:50 aballier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/chktex/ChangeLog,v 1.59 2015/04/29 15:15:35 aballier Exp $
31 +
32 +*chktex-1.7.4 (29 Apr 2015)
33 +
34 + 29 Apr 2015; Alexis Ballier <aballier@g.o> +chktex-1.7.4.ebuild:
35 + version bump
36
37 29 Apr 2015; Alexis Ballier <aballier@g.o> chktex-1.7.3.ebuild:
38 set VARTEXFONTS to within the sandbox, bug #538672
39
40
41
42 1.1 dev-tex/chktex/chktex-1.7.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/chktex/chktex-1.7.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/chktex/chktex-1.7.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: chktex-1.7.4.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-tex/chktex/chktex-1.7.4.ebuild,v 1.1 2015/04/29 15:15:35 aballier Exp $
52
53 EAPI=4
54 AUTOTOOLS_AUTORECONF=true
55
56 inherit autotools-utils
57
58 DESCRIPTION="Checks latex source for common mistakes"
59 HOMEPAGE="http://www.nongnu.org/chktex/"
60 SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
65 IUSE="debug doc +pcre test"
66 # Tests fail without pcre. Enable pcre by default and make tests depend on it.
67 REQUIRED_USE="test? ( pcre )"
68
69 RDEPEND="virtual/latex-base
70 dev-lang/perl
71 pcre? ( dev-libs/libpcre )"
72 DEPEND="${RDEPEND}
73 sys-apps/groff
74 doc? ( dev-tex/latex2html )"
75
76 PATCHES=( "${FILESDIR}/${PN}-1.7.1-asneeded.patch" )
77 DOCS=( NEWS )
78
79 src_configure() {
80 export VARTEXFONTS="${T}/fonts" #538672
81
82 local myeconfargs=(
83 $(use_enable debug debug-info)
84 $(use_enable pcre)
85 )
86 autotools-utils_src_configure
87 }
88
89 src_compile() {
90 autotools-utils_src_compile
91 use doc && autotools-utils_src_compile html
92 }
93
94 src_install() {
95 if use doc ; then
96 HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX/")
97 DOCS+=("${AUTOTOOLS_BUILD_DIR}/HTML/ChkTeX.tex")
98 fi
99 autotools-utils_src_install
100 doman *.1
101 }