summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-02-15 18:20:16 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-02-15 18:20:16 +0000
commit108a72c38685983dd990765a5f7582ac4ede2b02 (patch)
tree2a6011418ca3c08a75423fdd74f0c6c3b4496d9d /app-text
parentBump to 1.04, fixes #203796 (diff)
downloadgentoo-2-108a72c38685983dd990765a5f7582ac4ede2b02.tar.gz
gentoo-2-108a72c38685983dd990765a5f7582ac4ede2b02.tar.bz2
gentoo-2-108a72c38685983dd990765a5f7582ac4ede2b02.zip
Bump to 4.7, new dep on gperf, added ~amd64 keyword, close #203795
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/html-xml-utils/ChangeLog10
-rw-r--r--app-text/html-xml-utils/html-xml-utils-4.7.ebuild41
2 files changed, 49 insertions, 2 deletions
diff --git a/app-text/html-xml-utils/ChangeLog b/app-text/html-xml-utils/ChangeLog
index 25254545b4fe..6b8d8e24bb3b 100644
--- a/app-text/html-xml-utils/ChangeLog
+++ b/app-text/html-xml-utils/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-text/html-xml-utils
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/html-xml-utils/ChangeLog,v 1.33 2008/01/11 21:14:34 grobian Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/html-xml-utils/ChangeLog,v 1.34 2009/02/15 18:20:16 patrick Exp $
+
+*html-xml-utils-4.7 (15 Feb 2009)
+
+ 15 Feb 2009; Patrick Lauer <patrick@gentoo.org>
+ +html-xml-utils-4.7.ebuild:
+ Bump to 4.7, new dep on gperf, added ~amd64 keyword, close #203795
11 Jan 2008; Fabian Groffen <grobian@gentoo.org>
html-xml-utils-3.7.ebuild:
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
new file mode 100644
index 000000000000..c45827ddb3b0
--- /dev/null
+++ b/app-text/html-xml-utils/html-xml-utils-4.7.ebuild
@@ -0,0 +1,41 @@
+# 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
+
+}