summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Verwilst <verwilst@gentoo.org>2001-11-22 18:57:24 +0000
committerBart Verwilst <verwilst@gentoo.org>2001-11-22 18:57:24 +0000
commit80fdff7995d261db381ade41a37da35b65b9de56 (patch)
treeb1e82a1a1df7d5c1033d711bfcdcb231ce74930f /dev-libs/libpcre
parentMissed kde-env in the big commit :'o( (diff)
downloadgentoo-2-80fdff7995d261db381ade41a37da35b65b9de56.tar.gz
gentoo-2-80fdff7995d261db381ade41a37da35b65b9de56.tar.bz2
gentoo-2-80fdff7995d261db381ade41a37da35b65b9de56.zip
New version of libpcre, needed by kdelibs 2.2.2
Diffstat (limited to 'dev-libs/libpcre')
-rw-r--r--dev-libs/libpcre/files/digest-libpcre-3.51
-rw-r--r--dev-libs/libpcre/libpcre-3.5.ebuild27
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-libs/libpcre/files/digest-libpcre-3.5 b/dev-libs/libpcre/files/digest-libpcre-3.5
new file mode 100644
index 000000000000..20cccf659659
--- /dev/null
+++ b/dev-libs/libpcre/files/digest-libpcre-3.5
@@ -0,0 +1 @@
+MD5 55986bdd5f9424207a2ac74bf8345d17 pcre-3.5.tar.gz 339968
diff --git a/dev-libs/libpcre/libpcre-3.5.ebuild b/dev-libs/libpcre/libpcre-3.5.ebuild
new file mode 100644
index 000000000000..3c42b1a4efe0
--- /dev/null
+++ b/dev-libs/libpcre/libpcre-3.5.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Achim Gottinger <achim@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/libpcre-3.5.ebuild,v 1.1 2001/11/22 18:57:24 verwilst Exp $
+
+S=${WORKDIR}/pcre-${PV}
+DESCRIPTION="Perl compatible regular expressions"
+SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${PV}.tar.gz"
+DEPEND="virtual/glibc"
+
+src_compile() {
+ ./configure --host=${CHOST} \
+ --prefix=/usr \
+ --mandir=/usr/share/man
+ assert
+
+ make || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+
+ dodoc AUTHORS COPYING ChangeLog LICENCE NEWS NON-UNIX-USE README
+ dodoc doc/*.txt doc/Tech.Notes
+ docinto html
+ dodoc doc/*.html
+}