# 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.2 2012/05/09 17:13:07 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 ~amd64-fbsd ~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 }