diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-08-03 02:30:34 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-08-03 02:30:34 +0000 |
commit | 2d901985feec7c6fc3b52f3b8ab19f63c06d1a05 (patch) | |
tree | 4c1c1d8d470b40441939533a6abe535723d5773b /dev-tex | |
parent | DEBUGBUILD -> use debug (diff) | |
download | historical-2d901985feec7c6fc3b52f3b8ab19f63c06d1a05.tar.gz historical-2d901985feec7c6fc3b52f3b8ab19f63c06d1a05.tar.bz2 historical-2d901985feec7c6fc3b52f3b8ab19f63c06d1a05.zip |
DEBUG -> use debug
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/chktex/chktex-1.5-r2.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/dev-tex/chktex/chktex-1.5-r2.ebuild b/dev-tex/chktex/chktex-1.5-r2.ebuild index 602dce92b97e..2a862435c447 100644 --- a/dev-tex/chktex/chktex-1.5-r2.ebuild +++ b/dev-tex/chktex/chktex-1.5-r2.ebuild @@ -1,14 +1,15 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/chktex/chktex-1.5-r2.ebuild,v 1.1 2003/06/09 13:11:26 satai Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/chktex/chktex-1.5-r2.ebuild,v 1.2 2003/08/03 02:30:34 vapier Exp $ -SRC_URI="http://www.ibiblio.org/pub/linux/distributions/gentoo/${P}.tar.gz" -HOMEPAGE="http://www.nongnu.org/chktex/" DESCRIPTION="Checks latex source for common mistakes" +HOMEPAGE="http://www.nongnu.org/chktex/" +SRC_URI="http://www.ibiblio.org/pub/linux/distributions/gentoo/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ppc sparc alpha" +IUSE="debug" DEPEND="app-text/tetex dev-lang/perl @@ -16,12 +17,11 @@ DEPEND="app-text/tetex dev-tex/latex2html" src_compile() { - [ -n "$DEBUG" ] && myconf="--enable-debug-info" || myconf="$myconf --disable-debug-info" - econf ${myconf} + econf `use_enable debug debug-info` || die emake || die } src_install() { - einstall + einstall || die dodoc COPYING SCOPTIONS } |