diff options
author | Jeroen Roovers <jer@gentoo.org> | 2007-11-27 03:34:56 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2007-11-27 03:34:56 +0000 |
commit | fca13b9d07dc89e1d3af3c8bd0823e07c66e1218 (patch) | |
tree | a0e335bca291ed9f1b6902350a5f437247ea7f2c /dev-libs/libxml2 | |
parent | Stable for HPPA (bug #199322). (diff) | |
download | gentoo-2-fca13b9d07dc89e1d3af3c8bd0823e07c66e1218.tar.gz gentoo-2-fca13b9d07dc89e1d3af3c8bd0823e07c66e1218.tar.bz2 gentoo-2-fca13b9d07dc89e1d3af3c8bd0823e07c66e1218.zip |
Stable for HPPA (bug #199322).
(Portage version: 2.1.4_rc3)
Diffstat (limited to 'dev-libs/libxml2')
-rw-r--r-- | dev-libs/libxml2/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libxml2/libxml2-2.6.30.ebuild | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/dev-libs/libxml2/ChangeLog b/dev-libs/libxml2/ChangeLog index bfc978075437..3cdfb6953cf9 100644 --- a/dev-libs/libxml2/ChangeLog +++ b/dev-libs/libxml2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libxml2 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.198 2007/11/20 19:04:40 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.199 2007/11/27 03:34:56 jer Exp $ + + 27 Nov 2007; Jeroen Roovers <jer@gentoo.org> libxml2-2.6.30.ebuild: + Stable for HPPA (bug #199322). 20 Nov 2007; Markus Rothe <corsair@gentoo.org> libxml2-2.6.30.ebuild: Stable on ppc64; bug #199322 diff --git a/dev-libs/libxml2/libxml2-2.6.30.ebuild b/dev-libs/libxml2/libxml2-2.6.30.ebuild index 517ba822fef9..16b48f2fd4c1 100644 --- a/dev-libs/libxml2/libxml2-2.6.30.ebuild +++ b/dev-libs/libxml2/libxml2-2.6.30.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.7 2007/11/20 19:04:40 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.8 2007/11/27 03:34:56 jer Exp $ inherit libtool flag-o-matic eutils @@ -9,7 +9,7 @@ HOMEPAGE="http://www.xmlsoft.org/" LICENSE="MIT" SLOT="2" -KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~m68k mips ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd x86 ~x86-fbsd" +KEYWORDS="alpha amd64 ~arm hppa ia64 ~m68k mips ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd x86 ~x86-fbsd" IUSE="debug doc ipv6 python readline test" XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite" @@ -37,7 +37,7 @@ src_unpack() { if use test; then cp ${DISTDIR}/${XSTS_TARBALL_1} \ ${DISTDIR}/${XSTS_TARBALL_2} \ - ${S}/xstc/ \ + "${S}"/xstc/ \ || die "Failed to install test tarballs" fi @@ -73,7 +73,7 @@ src_compile() { # Patching the Makefiles to respect get_libdir # Fixes BUG #86766, please keep this. # Danny van Dyk <kugelfang@gentoo.org> 2005/03/26 - for x in $(find ${S} -name "Makefile") ; do + for x in $(find "${S}" -name "Makefile") ; do sed \ -e "s|^\(PYTHON_SITE_PACKAGES\ =\ \/usr\/\).*\(\/python.*\)|\1$(get_libdir)\2|g" \ -i ${x} \ @@ -89,8 +89,8 @@ src_install() { dodoc AUTHORS ChangeLog Copyright NEWS README* TODO* if ! use doc; then - rm -rf ${D}/usr/share/gtk-doc - rm -rf ${D}/usr/share/doc/${P}/html + rm -rf "${D}"/usr/share/gtk-doc + rm -rf "${D}"/usr/share/doc/${P}/html fi } |