diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-04-12 10:11:33 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-04-12 10:11:33 +0000 |
commit | f1f35a39a379f58e48261a03d7d96f2e36fa4290 (patch) | |
tree | 5503c10f6d5b02d61432bc15e1d9b142a2edd6e9 /app-misc/fdutils | |
parent | made tetex optional (diff) | |
download | gentoo-2-f1f35a39a379f58e48261a03d7d96f2e36fa4290.tar.gz gentoo-2-f1f35a39a379f58e48261a03d7d96f2e36fa4290.tar.bz2 gentoo-2-f1f35a39a379f58e48261a03d7d96f2e36fa4290.zip |
better tetex optional
Diffstat (limited to 'app-misc/fdutils')
-rw-r--r-- | app-misc/fdutils/ChangeLog | 4 | ||||
-rw-r--r-- | app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild | 14 |
2 files changed, 12 insertions, 6 deletions
diff --git a/app-misc/fdutils/ChangeLog b/app-misc/fdutils/ChangeLog index dcd3ab1820b5..86541ce7ba3c 100644 --- a/app-misc/fdutils/ChangeLog +++ b/app-misc/fdutils/ChangeLog @@ -4,6 +4,10 @@ *fdutils-5.4.20020222-r1 (03 Oct 2002) + 12 Apr 2003; Seemant Kulleen <seemant@gentoo.org> + fdutils-5.4.20020222-r1.ebuild: + better tetex optionality by Paul Thompson <thompson@pobox.com> in bug #19178 + 12 Apr 2003; Seemant Kulleen <seemant@gentoo.org> Manifest, fdutils-5.4.20020222-r1.ebuild: tetex is now optional diff --git a/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild b/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild index 1865ffd2bec9..2b48c5784fd3 100644 --- a/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild +++ b/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild,v 1.6 2003/04/12 09:37:10 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild,v 1.7 2003/04/12 10:11:33 seemant Exp $ S=${WORKDIR}/${PN}-5.4 DESCRIPTION="The fdutils package contains utilities for configuring and debugging the Linux floppy driver" @@ -22,12 +22,14 @@ src_unpack() { src_compile() { - local myconf="src doc info" - - use tetex && myconf="${myconf} html dvi" - econf --enable-fdmount-floppy-only || die - make ${myconf} || die + + if use tetex + then + make || die + else + make compile || die + fi } src_install() { |