diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-11-26 20:54:17 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-11-26 20:54:17 +0000 |
commit | 196a91fa3ad6531174cc58f48353404c66f233a4 (patch) | |
tree | 6365fd01fb0f55881eede9923b894b79b8c1afaf /dev-libs/libpcre | |
parent | *** empty log message *** (diff) | |
download | historical-196a91fa3ad6531174cc58f48353404c66f233a4.tar.gz historical-196a91fa3ad6531174cc58f48353404c66f233a4.tar.bz2 historical-196a91fa3ad6531174cc58f48353404c66f233a4.zip |
*** empty log message ***
Diffstat (limited to 'dev-libs/libpcre')
-rw-r--r-- | dev-libs/libpcre/files/digest-libpcre-3.4 | 1 | ||||
-rw-r--r-- | dev-libs/libpcre/libpcre-3.4.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-libs/libpcre/files/digest-libpcre-3.4 b/dev-libs/libpcre/files/digest-libpcre-3.4 new file mode 100644 index 000000000000..9d7869b2e06c --- /dev/null +++ b/dev-libs/libpcre/files/digest-libpcre-3.4 @@ -0,0 +1 @@ +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 new file mode 100644 index 000000000000..eb7e08c82ba5 --- /dev/null +++ b/dev-libs/libpcre/libpcre-3.4.ebuild @@ -0,0 +1,37 @@ +# 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 + +} + + + + |