summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriele Giorgetti <stroke@gentoo.org>2002-07-07 02:55:56 +0000
committerGabriele Giorgetti <stroke@gentoo.org>2002-07-07 02:55:56 +0000
commit1c08aa8e1f6a7b6b51f1c78e8729d7369e3035d9 (patch)
tree565c4d6d479763f0a8c6f383552cd75d57ee9674 /dev-libs/libxslt
parentNew version (diff)
downloadhistorical-1c08aa8e1f6a7b6b51f1c78e8729d7369e3035d9.tar.gz
historical-1c08aa8e1f6a7b6b51f1c78e8729d7369e3035d9.tar.bz2
historical-1c08aa8e1f6a7b6b51f1c78e8729d7369e3035d9.zip
new version and libxml2 dependence update.
Diffstat (limited to 'dev-libs/libxslt')
-rw-r--r--dev-libs/libxslt/ChangeLog6
-rw-r--r--dev-libs/libxslt/files/digest-libxslt-1.0.191
-rw-r--r--dev-libs/libxslt/libxslt-1.0.19.ebuild39
3 files changed, 45 insertions, 1 deletions
diff --git a/dev-libs/libxslt/ChangeLog b/dev-libs/libxslt/ChangeLog
index 3e5f609adf84..244d228e23b1 100644
--- a/dev-libs/libxslt/ChangeLog
+++ b/dev-libs/libxslt/ChangeLog
@@ -1,6 +1,10 @@
# 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.6 2002/05/27 22:58:25 spider Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.7 2002/07/07 02:55:56 stroke Exp $
+
+*libxslt-1.0.19 (07 Jul 2002)
+ 07 Jul 2002; Gabriele Giorgetti <stroke@gentoo.org> libxslt-1.0.19.ebuild :
+ new version and libxml2 dependence update.
*libxslt-1.0.18 (27 May 2002)
27 May 2002; Spider <spider@gentoo.org>libxslt-1.0.18.ebuild :
diff --git a/dev-libs/libxslt/files/digest-libxslt-1.0.19 b/dev-libs/libxslt/files/digest-libxslt-1.0.19
new file mode 100644
index 000000000000..ec08f8dd9c6f
--- /dev/null
+++ b/dev-libs/libxslt/files/digest-libxslt-1.0.19
@@ -0,0 +1 @@
+MD5 29bb138de7cbb5f76dcf56b968a887ff libxslt-1.0.19.tar.bz2 1490339
diff --git a/dev-libs/libxslt/libxslt-1.0.19.ebuild b/dev-libs/libxslt/libxslt-1.0.19.ebuild
new file mode 100644
index 000000000000..2502a1ae20f0
--- /dev/null
+++ b/dev-libs/libxslt/libxslt-1.0.19.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/libxslt-1.0.19.ebuild,v 1.1 2002/07/07 02:55:56 stroke Exp $
+
+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"
+
+RDEPEND="virtual/glibc
+ >=dev-libs/libxml2-2.4.23"
+
+DEPEND="${RDEPEND}
+ sys-devel/perl"
+
+src_compile() {
+ # Fix .la files of python site packages
+ libtoolize --copy --force
+
+ ./configure --host=${CHOST} \
+ --prefix=/usr \
+ --mandir=/usr/share/man || die
+
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} \
+ DOCS_DIR=/usr/share/doc/${PF}/python \
+ EXAMPLE_DIR=/usr/share/doc/${PF}/python/example \
+ BASE_DIR=/usr/share/doc \
+ DOC_MODULE=${PF} \
+ EXAMPLES_DIR=/usr/share/doc/${PF}/example \
+ TARGET_DIR=/usr/share/doc/${PF}/html \
+ install || die
+
+ dodoc AUTHORS COPYING* ChangeLog README NEWS TODO
+}