diff options
author | George Shapovalov <george@gentoo.org> | 2002-06-29 05:34:05 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-06-29 05:34:05 +0000 |
commit | 7aa2616a12e43d77338592ce86d00a3e9f0273b9 (patch) | |
tree | a43563c7987eec31c0fe2a4860e591c9a15dabf5 /dev-ml/pcre-ocaml | |
parent | another package in dev-ml category: LablGTK : an interface to the GIMP Tool (diff) | |
download | gentoo-2-7aa2616a12e43d77338592ce86d00a3e9f0273b9.tar.gz gentoo-2-7aa2616a12e43d77338592ce86d00a3e9f0273b9.tar.bz2 gentoo-2-7aa2616a12e43d77338592ce86d00a3e9f0273b9.zip |
An OCaml interface to the pcre library
Diffstat (limited to 'dev-ml/pcre-ocaml')
-rw-r--r-- | dev-ml/pcre-ocaml/ChangeLog | 11 | ||||
-rw-r--r-- | dev-ml/pcre-ocaml/files/digest-pcre-ocaml-4.26.3 | 1 | ||||
-rw-r--r-- | dev-ml/pcre-ocaml/pcre-ocaml-4.26.3.ebuild | 28 |
3 files changed, 40 insertions, 0 deletions
diff --git a/dev-ml/pcre-ocaml/ChangeLog b/dev-ml/pcre-ocaml/ChangeLog new file mode 100644 index 000000000000..634d256d8130 --- /dev/null +++ b/dev-ml/pcre-ocaml/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-ml/pcre-ocaml +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-ml/pcre-ocaml/ChangeLog,v 1.1 2002/06/29 05:34:05 george Exp $ + +*pcre-ocaml-4.26.3.ebuild (28 Jun 2002) + + 28 Jun 2002; G Shapovalov <george@gentoo.org> all : + + initial release + + ebuild submitted by Bardur Arantsson <bardur-gta@odense.kollegienet.dk> diff --git a/dev-ml/pcre-ocaml/files/digest-pcre-ocaml-4.26.3 b/dev-ml/pcre-ocaml/files/digest-pcre-ocaml-4.26.3 new file mode 100644 index 000000000000..3d594eaa0201 --- /dev/null +++ b/dev-ml/pcre-ocaml/files/digest-pcre-ocaml-4.26.3 @@ -0,0 +1 @@ +MD5 ef56fbb87ec9eccc953b7ba5a72c5242 pcre-ocaml-4.26.3.tar.bz2 36094 diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-4.26.3.ebuild b/dev-ml/pcre-ocaml/pcre-ocaml-4.26.3.ebuild new file mode 100644 index 000000000000..6261a5e5a569 --- /dev/null +++ b/dev-ml/pcre-ocaml/pcre-ocaml-4.26.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/pcre-ocaml/pcre-ocaml-4.26.3.ebuild,v 1.1 2002/06/29 05:34:05 george Exp $ + +DESCRIPTION="Perl Compatibility Regular Expressions for OCaml" +HOMEPAGE="http://www.ai.univie.ac.at/~markus/home/ocaml_sources.html" +LICENSE="LGPL-2.1" + +DEPEND=">=dev-lang/ocaml-3.04-r1 + >=dev-libs/libpcre-3.9-r1" +RDEPEND="${DEPEND}" + +SRC_URI="http://www.ai.univie.ac.at/~markus/ocaml_sources/pcre-ocaml-4.26.3.tar.bz2" +S=${WORKDIR}/${P} + +SLOT="3" + +src_compile() { + make all opt || die +} + +src_install () { + make OCAMLLIBPATH=${D}/usr/lib/ocaml install || die + mv ${D}/usr/lib/ocaml/contrib/* ${D}/usr/lib/ocaml || die + rmdir ${D}/usr/lib/ocaml/contrib || die + + dodoc LICENSE README VERSION META +} |