diff options
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/ocamlgsl/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/ocamlgsl/files/ocamlgsl-0.6.0-ocaml311.patch | 31 | ||||
-rw-r--r-- | dev-ml/ocamlgsl/metadata.xml | 12 | ||||
-rw-r--r-- | dev-ml/ocamlgsl/ocamlgsl-0.6.0.ebuild | 39 |
4 files changed, 0 insertions, 83 deletions
diff --git a/dev-ml/ocamlgsl/Manifest b/dev-ml/ocamlgsl/Manifest deleted file mode 100644 index 6bd347fc85ab..000000000000 --- a/dev-ml/ocamlgsl/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ocamlgsl-0.6.0.tar.gz 274345 SHA256 ddb9e432dc1a431cad332a8e7e6685d2facbde2fa15ecab9315741f7d11b588c SHA512 2e8f6d315e53d9bc6bba5b90340394074b9415bd578185cf81b60a448656a88f32aae37a3aa5e186b80cae2b4346bb35b4f88280e5b03d47325a9806b6a9c192 WHIRLPOOL 91c36a7332dde389b40bc95c8d714a0b4c43f22d3999471feaf46d455fe57e5b536eaee222c29610952c184f088783e885debd6b2d7a96904e96aea7088a25c2 diff --git a/dev-ml/ocamlgsl/files/ocamlgsl-0.6.0-ocaml311.patch b/dev-ml/ocamlgsl/files/ocamlgsl-0.6.0-ocaml311.patch deleted file mode 100644 index 52627ac24235..000000000000 --- a/dev-ml/ocamlgsl/files/ocamlgsl-0.6.0-ocaml311.patch +++ /dev/null @@ -1,31 +0,0 @@ - Makefile | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/Makefile b/Makefile -index ae12602..dd68657 100644 ---- a/Makefile -+++ b/Makefile -@@ -16,12 +16,12 @@ OCPP := ocpp - FORT := fort - AWK := gawk - --MNOCYGWIN ?= $(shell $(OCAMLC) -verbose foo.c 2>&1 | $(AWK) "NR==1 { print \$$3 }") -+MNOCYGWIN ?= $(shell $(OCAMLC) -verbose foo.c 2>&1 | $(AWK) 'NR==1 { print $3 }') - ifeq ($(MNOCYGWIN),-mnocygwin) - OCAML_BACKEND := mingw - endif - --OCAML_BACKEND ?= $(shell $(OCAMLC) -verbose foo.c 2>&1 | $(AWK) "NR==1 { print \$$2 }") -+OCAML_BACKEND ?= $(shell $(OCAMLC) -verbose foo.c 2>&1 | $(AWK) 'NR==1 { print $2 }') - OCAML_VERSION ?= $(shell $(OCAMLC) -version) - - OCAMLBCFLAGS := -g -@@ -94,7 +94,7 @@ SRC := wrappers.h gsl_misc.ml io.h \ - ifeq ($(OCAML_BACKEND),cl) - include msvc.mak - else --ifeq ($(OCAML_BACKEND),gcc) -+ifneq (,$(findstring gcc,$(OCAML_BACKEND))) - include gcc.mak - else - include mingw.mak diff --git a/dev-ml/ocamlgsl/metadata.xml b/dev-ml/ocamlgsl/metadata.xml deleted file mode 100644 index 87c66b2654e9..000000000000 --- a/dev-ml/ocamlgsl/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>sci@gentoo.org</email> - <name>Gentoo Science Project</name> -</maintainer> -<longdescription lang="en"> - This is an interface to GSL (GNU scientific library), for the - Objective Caml langage. -</longdescription> -</pkgmetadata> diff --git a/dev-ml/ocamlgsl/ocamlgsl-0.6.0.ebuild b/dev-ml/ocamlgsl/ocamlgsl-0.6.0.ebuild deleted file mode 100644 index 26c995440509..000000000000 --- a/dev-ml/ocamlgsl/ocamlgsl-0.6.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit base findlib - -DESCRIPTION="OCaml bindings for the GSL library" -HOMEPAGE="http://oandrieu.nerim.net/ocaml/gsl/" -SRC_URI="http://oandrieu.nerim.net/ocaml/gsl/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0/${PV}" -KEYWORDS="amd64 ~ppc x86" -IUSE="doc test" - -RDEPEND=">=dev-lang/ocaml-3.10:= - sci-libs/gsl - !dev-ml/gsl-ocaml" -DEPEND="${RDEPEND} - test? ( dev-ml/fort )" - -PATCHES=( "${FILESDIR}/${P}-ocaml311.patch" ) - -src_compile() { - emake CFLAGS="${CFLAGS}" -} - -src_install() { - findlib_src_preinst - emake install-findlib - - dodoc README NEWS NOTES - doinfo *.info* - if use doc; then - dohtml doc/* - fi -} |