summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorMatthieu Sozeau <mattam@gentoo.org>2004-02-12 00:00:32 +0000
committerMatthieu Sozeau <mattam@gentoo.org>2004-02-12 00:00:32 +0000
commitb10e35c1e2881f41450128f0a52e684daf90d672 (patch)
treed1644d5ccfb011cf8dc5ea5864e95226d2faf2b6 /dev-ml
parentVersion bump, closes #40962. (diff)
downloadhistorical-b10e35c1e2881f41450128f0a52e684daf90d672.tar.gz
historical-b10e35c1e2881f41450128f0a52e684daf90d672.tar.bz2
historical-b10e35c1e2881f41450128f0a52e684daf90d672.zip
Initial import, ebuild by David Dynerman <dynerman@cs.wisc.edu>.
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/ocamlsdl/ChangeLog10
-rw-r--r--dev-ml/ocamlsdl/Manifest4
-rw-r--r--dev-ml/ocamlsdl/files/digest-ocamlsdl-0.6.31
-rw-r--r--dev-ml/ocamlsdl/metadata.xml5
-rw-r--r--dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild30
5 files changed, 50 insertions, 0 deletions
diff --git a/dev-ml/ocamlsdl/ChangeLog b/dev-ml/ocamlsdl/ChangeLog
new file mode 100644
index 000000000000..1c544b8db9f1
--- /dev/null
+++ b/dev-ml/ocamlsdl/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-ml/ocamlsdl
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ChangeLog,v 1.1 2004/02/12 00:00:30 mattam Exp $
+
+*ocamlsdl-0.6.3 (12 Feb 2004)
+
+ 12 Feb 2004; Matthieu Sozeau <mattam@gentoo.org> metadata.xml,
+ ocamlsdl-0.6.3.ebuild:
+ Initial import, ebuild by David Dynerman <dynerman@cs.wisc.edu> (bug #41045).
+
diff --git a/dev-ml/ocamlsdl/Manifest b/dev-ml/ocamlsdl/Manifest
new file mode 100644
index 000000000000..9874a8f016c0
--- /dev/null
+++ b/dev-ml/ocamlsdl/Manifest
@@ -0,0 +1,4 @@
+MD5 15fbd12f25ded926eb8aff373e92005c ocamlsdl-0.6.3.ebuild 690
+MD5 ba1017cdf90740bcb8ab24bfecdb5065 ChangeLog 414
+MD5 8b350f19c06fcabf1053b0421b7c3f5a metadata.xml 155
+MD5 21cf2a31ec5ac945f54f9c9df0ff5603 files/digest-ocamlsdl-0.6.3 67
diff --git a/dev-ml/ocamlsdl/files/digest-ocamlsdl-0.6.3 b/dev-ml/ocamlsdl/files/digest-ocamlsdl-0.6.3
new file mode 100644
index 000000000000..73075a7a2c36
--- /dev/null
+++ b/dev-ml/ocamlsdl/files/digest-ocamlsdl-0.6.3
@@ -0,0 +1 @@
+MD5 9e99ba5675b2d113ce2e3e139c2c8dc3 ocamlsdl-0.6.3.tar.bz2 335489
diff --git a/dev-ml/ocamlsdl/metadata.xml b/dev-ml/ocamlsdl/metadata.xml
new file mode 100644
index 000000000000..2193d772e351
--- /dev/null
+++ b/dev-ml/ocamlsdl/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>ml</herd>
+</pkgmetadata>
diff --git a/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild b/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild
new file mode 100644
index 000000000000..cbaaa133a566
--- /dev/null
+++ b/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlsdl/ocamlsdl-0.6.3.ebuild,v 1.1 2004/02/12 00:00:30 mattam Exp $
+
+DESCRIPTION="OCaml SDL Bindings"
+
+HOMEPAGE="http://ocamlsdl.sourceforge.net"
+SRC_URI="mirror://sourceforge/ocamlsdl/${P}.tar.bz2"
+LICENSE="LGPL-2"
+
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND=">=dev-lang/ocaml-3.04
+>=media-libs/libsdl-1.2
+>=dev-ml/lablgl-0.98
+>=media-libs/sdl-mixer-1.2
+>=media-libs/sdl-image-1.2
+>=media-libs/sdl-ttf-2.0"
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} all install || die
+ doinfo doc/*.info*
+}