diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-17 00:04:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-17 00:04:07 +0000 |
commit | b56c7c90cb6c8a3e5b013449f35245652f800d99 (patch) | |
tree | e47a9d5c7577da91434b39e612d20ee8f756dc25 /sys-apps/texinfo | |
parent | app-portage/qfile -> app-portage/portage-utils (diff) | |
download | gentoo-2-b56c7c90cb6c8a3e5b013449f35245652f800d99.tar.gz gentoo-2-b56c7c90cb6c8a3e5b013449f35245652f800d99.tar.bz2 gentoo-2-b56c7c90cb6c8a3e5b013449f35245652f800d99.zip |
only punt texi2pdf when using older versions of tetex #93691
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'sys-apps/texinfo')
-rw-r--r-- | sys-apps/texinfo/texinfo-4.8.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-apps/texinfo/texinfo-4.8.ebuild b/sys-apps/texinfo/texinfo-4.8.ebuild index 09c910368c31..6bce98302a4d 100644 --- a/sys-apps/texinfo/texinfo-4.8.ebuild +++ b/sys-apps/texinfo/texinfo-4.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.8.ebuild,v 1.10 2005/05/13 01:51:55 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.8.ebuild,v 1.11 2005/06/17 00:04:07 vapier Exp $ inherit flag-o-matic eutils @@ -55,7 +55,7 @@ src_install() { make DESTDIR="${D}" install || die "install failed" dosbin ${FILESDIR}/mkinfodir # tetex installs this guy #76812 - rm -f "${D}"/usr/bin/texi2pdf + has_version '<app-text/tetex-3' && rm -f "${D}"/usr/bin/texi2pdf if [[ ! -f ${D}/usr/share/info/texinfo.info ]] ; then die "Could not install texinfo.info!!!" |