diff options
author | Danny van Dyk <kugelfang@gentoo.org> | 2005-03-26 15:27:38 +0000 |
---|---|---|
committer | Danny van Dyk <kugelfang@gentoo.org> | 2005-03-26 15:27:38 +0000 |
commit | 8656a72aca33b1184825dcb2e6f39522cb99d22e (patch) | |
tree | cdedbef84f3f49f90e6382d4f537bd0193fa7334 /dev-libs/libxslt | |
parent | update kernels and add udev min version (diff) | |
download | gentoo-2-8656a72aca33b1184825dcb2e6f39522cb99d22e.tar.gz gentoo-2-8656a72aca33b1184825dcb2e6f39522cb99d22e.tar.bz2 gentoo-2-8656a72aca33b1184825dcb2e6f39522cb99d22e.zip |
Fixed BUG #86756.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-libs/libxslt')
-rw-r--r-- | dev-libs/libxslt/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/libxslt/libxslt-1.1.13-r1.ebuild | 13 |
2 files changed, 17 insertions, 2 deletions
diff --git a/dev-libs/libxslt/ChangeLog b/dev-libs/libxslt/ChangeLog index 5faa578479bd..9d3bd8bc5644 100644 --- a/dev-libs/libxslt/ChangeLog +++ b/dev-libs/libxslt/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/libxslt # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.97 2005/03/25 02:00:53 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.98 2005/03/26 15:27:38 kugelfang Exp $ + + 26 Mar 2005; Danny van Dyk <kugelfang@gentoo.org> + libxslt-1.1.13-r1.ebuild: + Fixed BUG #86756 (multilib-strict). *libxslt-1.1.13-r1 (25 Mar 2005) diff --git a/dev-libs/libxslt/libxslt-1.1.13-r1.ebuild b/dev-libs/libxslt/libxslt-1.1.13-r1.ebuild index 18ca9b3d7bf5..56ede493f349 100644 --- a/dev-libs/libxslt/libxslt-1.1.13-r1.ebuild +++ b/dev-libs/libxslt/libxslt-1.1.13-r1.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/dev-libs/libxslt/libxslt-1.1.13-r1.ebuild,v 1.1 2005/03/25 02:00:53 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/libxslt-1.1.13-r1.ebuild,v 1.2 2005/03/26 15:27:38 kugelfang Exp $ inherit libtool gnome.org eutils python @@ -37,6 +37,17 @@ src_compile() { $(use_with python) \ $(use_with crypt crypto) \ || die "configure failed" + + # Patching the Makefiles to respect get_libdir + # Fixes BUG #86756, please keep this. + # Danny van Dyk <kugelfang@gentoo.org> 2005/03/26 + has_multilib_profile && for x in $(find ${S} -name "Makefile") ; do + sed \ + -e "s|^\(PYTHON_SITE_PACKAGES\ =\ \/usr\/\).*\(\/python.*\)|\1$(get_libdir)\2|g" \ + -i ${x} \ + || die "sed failed" + done + emake || die "make failed" } |