diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-16 20:02:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-16 20:02:59 +0000 |
commit | bcae12de9aa292cdce093fba7fd191d6daf5f192 (patch) | |
tree | 167aef8692b3b925817a0d3d2a505b3163cb9bbd /app-text/wdiff/wdiff-0.5.ebuild | |
parent | Fix stupid dependency on sys-libs/libtermcap-compat (i.e. remove it) #64212. ... (diff) | |
download | gentoo-2-bcae12de9aa292cdce093fba7fd191d6daf5f192.tar.gz gentoo-2-bcae12de9aa292cdce093fba7fd191d6daf5f192.tar.bz2 gentoo-2-bcae12de9aa292cdce093fba7fd191d6daf5f192.zip |
Fix stupid dependency on sys-libs/libtermcap-compat (i.e. remove it) #64212.
Diffstat (limited to 'app-text/wdiff/wdiff-0.5.ebuild')
-rw-r--r-- | app-text/wdiff/wdiff-0.5.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/app-text/wdiff/wdiff-0.5.ebuild b/app-text/wdiff/wdiff-0.5.ebuild deleted file mode 100644 index d8126ac8249b..000000000000 --- a/app-text/wdiff/wdiff-0.5.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wdiff/wdiff-0.5.ebuild,v 1.8 2004/06/28 04:18:57 ciaranm Exp $ - -inherit eutils - -DESCRIPTION="Create a diff disregarding formatting" -HOMEPAGE="http://www.gnu.org/software/wdiff/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz - mirror://gentoo/${P}-gentoo.diff.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ~sparc ~mips" -IUSE="build" - -DEPEND="sys-libs/libtermcap-compat - sys-apps/diffutils - sys-apps/less" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${WORKDIR}/${P}-gentoo.diff -} - -src_compile() { - # Cannot use econf here because the configure script that - # comes with wdiff is too old to understand the standard - # options. - - ./configure --prefix=/usr || die - emake || die -} - -src_install() { - einstall || die - - if ! use build - then - dodoc COPYING ChangeLog NEWS README - else - rm -rf ${D}/usr/share/info - fi -} |