summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2002-11-08 18:11:34 +0000
committerMarinus Schraal <foser@gentoo.org>2002-11-08 18:11:34 +0000
commitfb77dbcf2f37a25fb91bf22cc3c5919d11cd1f20 (patch)
tree4447c41eb4bb801285881b44b1aed069e268fd0d /dev-libs
parentMoving libxml2 from 2.1 mask to stable (diff)
downloadhistorical-fb77dbcf2f37a25fb91bf22cc3c5919d11cd1f20.tar.gz
historical-fb77dbcf2f37a25fb91bf22cc3c5919d11cd1f20.tar.bz2
historical-fb77dbcf2f37a25fb91bf22cc3c5919d11cd1f20.zip
Cleaned ebuild, masking for move to stable
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libxslt/ChangeLog7
-rw-r--r--dev-libs/libxslt/libxslt-1.0.22.ebuild22
2 files changed, 18 insertions, 11 deletions
diff --git a/dev-libs/libxslt/ChangeLog b/dev-libs/libxslt/ChangeLog
index bf1237526685..a2bf06144e9b 100644
--- a/dev-libs/libxslt/ChangeLog
+++ b/dev-libs/libxslt/ChangeLog
@@ -1,11 +1,14 @@
# ChangeLog for dev-libs/libxslt
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.13 2002/10/28 13:32:30 foser Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.14 2002/11/08 18:11:34 foser Exp $
*libxslt-1.0.22 (27 Oct 2002)
- 27 Oct 2002; foser <foser@gentoo.org> libxslt-1.0.22.ebuild :
+ 07 Nov 2002; foser <foser@gentoo.org> libxslt-1.0.22.ebuild :
+ Added python USE flag. Fixed license to be MIT.
+ Removed some obsolete stuff
+ 27 Oct 2002; foser <foser@gentoo.org> libxslt-1.0.22.ebuild :
Gnome 2.1 commit
*libxslt-1.0.20 (06 Sep 2002)
diff --git a/dev-libs/libxslt/libxslt-1.0.22.ebuild b/dev-libs/libxslt/libxslt-1.0.22.ebuild
index f1171764ed7e..fe8fccc5f24a 100644
--- a/dev-libs/libxslt/libxslt-1.0.22.ebuild
+++ b/dev-libs/libxslt/libxslt-1.0.22.ebuild
@@ -1,19 +1,19 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/libxslt-1.0.22.ebuild,v 1.1 2002/10/28 13:32:30 foser Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/libxslt-1.0.22.ebuild,v 1.2 2002/11/08 18:11:34 foser Exp $
-inherit libtool gnome.org debug
+inherit libtool gnome.org
+IUSE="python"
S=${WORKDIR}/${P}
DESCRIPTION="XSLT libraries and tools"
-#SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.bz2"
HOMEPAGE="http://www.gnome.org/"
-
SLOT="0"
-LICENSE="GPL-2 LGPL-2"
-KEYWORDS="x86 sparc sparc64 ppc alpha"
+LICENSE="MIT"
+KEYWORDS="~x86 ~sparc ~sparc64 ~ppc ~alpha"
-RDEPEND=">=dev-libs/libxml2-2.4.25"
+RDEPEND=">=dev-libs/libxml2-2.4.23
+ python? ( dev-lang/python )"
DEPEND="${RDEPEND}
sys-devel/perl"
@@ -22,10 +22,14 @@ src_compile() {
# Fix .la files of python site packages
elibtoolize
- econf || die
+ local myconf
+
+ use python && myconf="--with-python" || myconf="--without-python"
+
+ econf ${myconf} || die
+
#libxslt-1.0.19 didn't like parallel make; test a good deal before re-enabling
#(drobbins, 24 Jul 2002)
- patch -p0 < ${FILESDIR}/Makefile-py.patch
make || die
}