summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2003-02-23 22:02:52 +0000
committerGeorge Shapovalov <george@gentoo.org>2003-02-23 22:02:52 +0000
commit6710f3e341fcd8d0c812c1c2336585e7a75811af (patch)
treea707323d0d0ed781c1d7c79bdf6f8e4724daf11b /dev-ml/ocamlnet
parentnew package (keymasked) (diff)
downloadgentoo-2-6710f3e341fcd8d0c812c1c2336585e7a75811af.tar.gz
gentoo-2-6710f3e341fcd8d0c812c1c2336585e7a75811af.tar.bz2
gentoo-2-6710f3e341fcd8d0c812c1c2336585e7a75811af.zip
new package
Diffstat (limited to 'dev-ml/ocamlnet')
-rw-r--r--dev-ml/ocamlnet/ChangeLog10
-rw-r--r--dev-ml/ocamlnet/files/digest-ocamlnet-0.951
-rw-r--r--dev-ml/ocamlnet/ocamlnet-0.95.ebuild34
3 files changed, 45 insertions, 0 deletions
diff --git a/dev-ml/ocamlnet/ChangeLog b/dev-ml/ocamlnet/ChangeLog
new file mode 100644
index 000000000000..0eab950fd210
--- /dev/null
+++ b/dev-ml/ocamlnet/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-ml/ocamlnet
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.1 2003/02/23 22:02:52 george Exp $
+
+*ocamlnet-0.95.ebuild (23 Feb 2003)
+
+ 23 Feb 2003; George Shapovalov <george@gentoo.org> ChangeLog, ocamlnet-0.95.ebuild, files/digest-ocamlnet-0.95 :
+ initial release (#15901)
+ Modules for O'Caml application-level Internet protocols
+ ebuild submitted by Bardur Arantsson <bardur-gta@odense.kollegienet.dk>
diff --git a/dev-ml/ocamlnet/files/digest-ocamlnet-0.95 b/dev-ml/ocamlnet/files/digest-ocamlnet-0.95
new file mode 100644
index 000000000000..0507a140859a
--- /dev/null
+++ b/dev-ml/ocamlnet/files/digest-ocamlnet-0.95
@@ -0,0 +1 @@
+MD5 a5c63db289734db78df4dbf4be580688 ocamlnet-0.95.tar.gz 291074
diff --git a/dev-ml/ocamlnet/ocamlnet-0.95.ebuild b/dev-ml/ocamlnet/ocamlnet-0.95.ebuild
new file mode 100644
index 000000000000..abc22f5e31b6
--- /dev/null
+++ b/dev-ml/ocamlnet/ocamlnet-0.95.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-0.95.ebuild,v 1.1 2003/02/23 22:02:52 george Exp $
+
+DESCRIPTION="Modules for O'Caml application-level Internet protocols"
+HOMEPAGE="http://ocamlnet.sourceforge.net"
+SRC_URI="mirror://sourceforge/ocamlnet/${P}.tar.gz"
+
+LICENSE="as-is"
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND=">=dev-ml/pcre-ocaml-4.31.0
+ >=dev-ml/findlib-0.8"
+
+IUSE=""
+S="${WORKDIR}/${P}/src"
+
+src_compile() {
+ ./configure || die
+ make all opt || die
+}
+
+src_install() {
+ # must create destdir beforehand
+ destdir=`ocamlfind printconf destdir`
+ mkdir -p ${D}${destdir} || die
+ # install
+ make OCAMLFIND_DESTDIR=${D}${destdir} install || die
+
+ cd ${WORKDIR}/${P}
+ dodoc README
+ dohtml doc/intro/html/*
+}