diff options
Diffstat (limited to 'app-text/html-xml-utils/html-xml-utils-4.7.ebuild')
-rw-r--r-- | app-text/html-xml-utils/html-xml-utils-4.7.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/app-text/html-xml-utils/html-xml-utils-4.7.ebuild b/app-text/html-xml-utils/html-xml-utils-4.7.ebuild deleted file mode 100644 index c45827ddb3b0..000000000000 --- a/app-text/html-xml-utils/html-xml-utils-4.7.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/html-xml-utils/html-xml-utils-4.7.ebuild,v 1.1 2009/02/15 18:20:16 patrick Exp $ - -inherit eutils - -DESCRIPTION="A number of simple utilities for manipulating HTML and XML files." -SRC_URI="http://www.w3.org/Tools/HTML-XML-utils/${P}.tar.gz" -HOMEPAGE="http://www.w3.org/Tools/HTML-XML-utils/" -LICENSE="W3C" - -IUSE="" -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" -SLOT="0" - -DEPEND="dev-util/gperf - >=sys-apps/sed-4" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Replace references to normalize with normalize-html, which - # has been renamed due to clash described in #27399 - sed -i "s:normalize:&-html:g" *.1 || die "sed failed" - -} - -src_install () { - - make DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog README TODO - - # Check bug #27399, the following binary conflicts with - # one provided by the 'normalize' package, so we're - # renaming this one <obz@gentoo.org> - mv "${D}"/usr/bin/normalize "${D}"/usr/bin/normalize-html - mv "${D}"/usr/share/man/man1/normalize.1 \ - "${D}"/usr/share/man/man1/normalize-html.1 - -} |