diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-08-03 02:32:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-08-03 02:32:24 +0000 |
commit | 4f1b26d31ae703c1ee1f9ebb4a2890c6107a66da (patch) | |
tree | 9e36833db8981e0a4f03020b0f22756d0cf3d58a /dev-tex | |
parent | DEBUGBUILD -> use debug (diff) | |
download | gentoo-2-4f1b26d31ae703c1ee1f9ebb4a2890c6107a66da.tar.gz gentoo-2-4f1b26d31ae703c1ee1f9ebb4a2890c6107a66da.tar.bz2 gentoo-2-4f1b26d31ae703c1ee1f9ebb4a2890c6107a66da.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 } |