diff options
author | Marinus Schraal <foser@gentoo.org> | 2002-11-08 18:11:34 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2002-11-08 18:11:34 +0000 |
commit | a1bf133d9b39ba049ba5901f2d042cc710e29f57 (patch) | |
tree | 7980d63aab5d19035450de334f8b21214893b641 /dev-libs | |
parent | Moving libxml2 from 2.1 mask to stable (diff) | |
download | gentoo-2-a1bf133d9b39ba049ba5901f2d042cc710e29f57.tar.gz gentoo-2-a1bf133d9b39ba049ba5901f2d042cc710e29f57.tar.bz2 gentoo-2-a1bf133d9b39ba049ba5901f2d042cc710e29f57.zip |
Cleaned ebuild, masking for move to stable
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libxslt/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libxslt/libxslt-1.0.22.ebuild | 22 |
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 } |