summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-04-30 09:39:24 +0000
committerAchim Gottinger <achim@gentoo.org>2001-04-30 09:39:24 +0000
commit2f8176cde2bae619e6d3bc579306c4ad339a50d8 (patch)
tree8d336734020bf4bb8f95cb36a7b9a6c5d9159791 /dev-libs/libpcre
parentCleanup (diff)
downloadhistorical-2f8176cde2bae619e6d3bc579306c4ad339a50d8.tar.gz
historical-2f8176cde2bae619e6d3bc579306c4ad339a50d8.tar.bz2
historical-2f8176cde2bae619e6d3bc579306c4ad339a50d8.zip
Cleanup
Diffstat (limited to 'dev-libs/libpcre')
-rw-r--r--dev-libs/libpcre/files/digest-libpcre-3.41
-rw-r--r--dev-libs/libpcre/libpcre-3.4.ebuild37
2 files changed, 0 insertions, 38 deletions
diff --git a/dev-libs/libpcre/files/digest-libpcre-3.4 b/dev-libs/libpcre/files/digest-libpcre-3.4
deleted file mode 100644
index 9d7869b2e06c..000000000000
--- a/dev-libs/libpcre/files/digest-libpcre-3.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 75918d0111f592097939a7b8c490dcd0 pcre-3.4.tar.gz
diff --git a/dev-libs/libpcre/libpcre-3.4.ebuild b/dev-libs/libpcre/libpcre-3.4.ebuild
deleted file mode 100644
index eb7e08c82ba5..000000000000
--- a/dev-libs/libpcre/libpcre-3.4.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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.4.ebuild,v 1.1 2000/11/26 20:54:17 achim Exp $
-
-A=pcre-${PV}.tar.gz
-S=${WORKDIR}/pcre-${PV}
-DESCRIPTION="Perl compatible regular expressions"
-SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/"${A}
-
-DEPEND=">=sys-apps/bash-2.04
- >=sys-libs/glibc-2.1.3"
-
-src_unpack() {
- unpack ${A}
-}
-
-src_compile() {
- cd ${S}
- try ./configure --host=${CHOST} --prefix=/usr
- try make
-}
-
-src_install() {
- cd ${S}
- try make prefix=${D}/usr install
-
- dodoc AUTHORS COPYING ChangeLog LICENCE NEWS NON-UNIX-USE README
- dodoc doc/*.txt doc/Tech.Notes
- docinto html
- dodoc doc/*.html
-
-}
-
-
-
-