summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-04-14 17:13:05 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-04-14 17:13:05 +0000
commit73a88aca8235e5e292c0c26e97e99dff8c51a77c (patch)
treecf21da08dbb093e5a903cf22a20e120a0b025919 /dev-tex
parentAdd ~amd64-linux keyword. (diff)
downloadgentoo-2-73a88aca8235e5e292c0c26e97e99dff8c51a77c.tar.gz
gentoo-2-73a88aca8235e5e292c0c26e97e99dff8c51a77c.tar.bz2
gentoo-2-73a88aca8235e5e292c0c26e97e99dff8c51a77c.zip
version bump, by Shark in bug #411283
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'dev-tex')
-rw-r--r--dev-tex/chktex/ChangeLog9
-rw-r--r--dev-tex/chktex/chktex-1.6.6.ebuild35
2 files changed, 42 insertions, 2 deletions
diff --git a/dev-tex/chktex/ChangeLog b/dev-tex/chktex/ChangeLog
index 90cdd9e29143..649913153e76 100644
--- a/dev-tex/chktex/ChangeLog
+++ b/dev-tex/chktex/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-tex/chktex
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/chktex/ChangeLog,v 1.38 2011/10/16 17:16:33 grobian Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/chktex/ChangeLog,v 1.39 2012/04/14 17:13:05 aballier Exp $
+
+*chktex-1.6.6 (14 Apr 2012)
+
+ 14 Apr 2012; Alexis Ballier <aballier@gentoo.org> +chktex-1.6.6.ebuild:
+ version bump, by Shark in bug #411283
16 Oct 2011; Fabian Groffen <grobian@gentoo.org> chktex-1.6.4.ebuild:
Marked ~x86-macos
diff --git a/dev-tex/chktex/chktex-1.6.6.ebuild b/dev-tex/chktex/chktex-1.6.6.ebuild
new file mode 100644
index 000000000000..9ab6918274d3
--- /dev/null
+++ b/dev-tex/chktex/chktex-1.6.6.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/chktex/chktex-1.6.6.ebuild,v 1.1 2012/04/14 17:13:05 aballier Exp $
+
+DESCRIPTION="Checks latex source for common mistakes"
+HOMEPAGE="http://www.nongnu.org/chktex/"
+SRC_URI="http://download.savannah.gnu.org/releases/chktex/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="debug doc"
+
+DEPEND="virtual/latex-base
+ dev-lang/perl
+ sys-apps/groff
+ doc? ( dev-tex/latex2html )"
+
+src_compile() {
+ econf `use_enable debug debug-info` || die
+ emake || die
+ if use doc ; then
+ emake html || die "emake html failed"
+ fi
+}
+
+src_install() {
+ emake install DESTDIR="${D}" || die
+ dodoc NEWS
+ if use doc ; then
+ dohtml HTML/ChkTeX/*
+ dodoc HTML/ChkTeX.tex
+ fi
+ doman *.1
+}