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 | 3639b83e97bb04f24a0ec5e8894886c42f563229 (patch) | |
tree | 3fcd0de3d4211ac9b7106994f3a50a7f741f2b4d /dev-ml | |
parent | another package in dev-ml category: LablGTK : an interface to the GIMP Tool (diff) | |
download | historical-3639b83e97bb04f24a0ec5e8894886c42f563229.tar.gz historical-3639b83e97bb04f24a0ec5e8894886c42f563229.tar.bz2 historical-3639b83e97bb04f24a0ec5e8894886c42f563229.zip |
An OCaml interface to the pcre library
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/lablgtk/files/digest-LablGTK-1.2.3 | 1 | ||||
-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 |
4 files changed, 40 insertions, 1 deletions
diff --git a/dev-ml/lablgtk/files/digest-LablGTK-1.2.3 b/dev-ml/lablgtk/files/digest-LablGTK-1.2.3 deleted file mode 100644 index aefaf461905d..000000000000 --- a/dev-ml/lablgtk/files/digest-LablGTK-1.2.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 010448a814da16f8cff07176aa0fb415 lablgtk-1.2.3.tar.gz 433267 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 +} |