diff options
author | George Shapovalov <george@gentoo.org> | 2003-02-23 21:57:14 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2003-02-23 21:57:14 +0000 |
commit | 1c9abfc5d4364119c4a951bd36c6987af45bc5a4 (patch) | |
tree | ea1c6a0dbee117a4e82b74a954916c9a6aa7bb9d /dev-ml | |
parent | dependency fix (diff) | |
download | historical-1c9abfc5d4364119c4a951bd36c6987af45bc5a4.tar.gz historical-1c9abfc5d4364119c4a951bd36c6987af45bc5a4.tar.bz2 historical-1c9abfc5d4364119c4a951bd36c6987af45bc5a4.zip |
new package (keymasked)
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/ocaml-shell/ChangeLog | 10 | ||||
-rw-r--r-- | dev-ml/ocaml-shell/files/digest-ocaml-shell-0.2.3-r1 | 1 | ||||
-rw-r--r-- | dev-ml/ocaml-shell/ocaml-shell-0.2.3-r1.ebuild | 30 |
3 files changed, 41 insertions, 0 deletions
diff --git a/dev-ml/ocaml-shell/ChangeLog b/dev-ml/ocaml-shell/ChangeLog new file mode 100644 index 000000000000..408238cba925 --- /dev/null +++ b/dev-ml/ocaml-shell/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-ml/ocaml-shell +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-shell/ChangeLog,v 1.1 2003/02/23 21:57:14 george Exp $ + +*ocaml-shell-0.2.3-r1.ebuild (23 Feb 2003) + + 23 Feb 2003; George Shapovalov <george@gentoo.org> ChangeLog, ocaml-shell-0.2.3-r1.ebuild, files/digest-ocaml-shell-0.2.3-r1 : + initial release (#15902) + O'Caml modules for running shell commands and pipelines + ebuild submitted by Bardur Arantsson <bardur-gta@odense.kollegienet.dk> diff --git a/dev-ml/ocaml-shell/files/digest-ocaml-shell-0.2.3-r1 b/dev-ml/ocaml-shell/files/digest-ocaml-shell-0.2.3-r1 new file mode 100644 index 000000000000..9448aaab4d60 --- /dev/null +++ b/dev-ml/ocaml-shell/files/digest-ocaml-shell-0.2.3-r1 @@ -0,0 +1 @@ +MD5 a43533adaea903d8e2815a54eb890045 shell-0.2.3.tar.gz 32789 diff --git a/dev-ml/ocaml-shell/ocaml-shell-0.2.3-r1.ebuild b/dev-ml/ocaml-shell/ocaml-shell-0.2.3-r1.ebuild new file mode 100644 index 000000000000..00416a10a668 --- /dev/null +++ b/dev-ml/ocaml-shell/ocaml-shell-0.2.3-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-shell/ocaml-shell-0.2.3-r1.ebuild,v 1.1 2003/02/23 21:57:14 george Exp $ + +DESCRIPTION="O'Caml modules for running shell commands and pipelines" +HOMEPAGE="http://www.ocaml-programming.de/packages/documentation/shell/" +SRC_URI="http://www.ocaml-programming.de/packages/shell-${PV}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" + +DEPEND=">=dev-lang/ocaml-3.06 + >=dev-ml/findlib-0.8" +IUSE="" +S="${WORKDIR}/shell-${PV}" + +src_compile() { + make all opt || die +} + +src_install() { + # must create destdir beforehand + destdir=`ocamlfind printconf destdir` + mkdir -p ${D}${destdir} || die + # install + make INSTALLDIR=${D}${destdir}/shell conventional-install || die + + dodoc doc/README +} |