summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2017-11-19 17:27:40 +1100
committerMichael Palimaka <kensington@gentoo.org>2017-11-19 17:27:51 +1100
commit044808187c085ae0fc2a926fd5fdac70126e176a (patch)
treec7fc1f421271de5b698b0eb130bcf08ab049a9e5 /dev-ml/facile/facile-1.1.2.ebuild
parentdev-ml/facile: stabilise 1.1.3 for amd64 (diff)
downloadgentoo-044808187c085ae0fc2a926fd5fdac70126e176a.tar.gz
gentoo-044808187c085ae0fc2a926fd5fdac70126e176a.tar.bz2
gentoo-044808187c085ae0fc2a926fd5fdac70126e176a.zip
dev-ml/facile: remove 1.1.2
Package-Manager: Portage-2.3.8, Repoman-2.3.4
Diffstat (limited to 'dev-ml/facile/facile-1.1.2.ebuild')
-rw-r--r--dev-ml/facile/facile-1.1.2.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-ml/facile/facile-1.1.2.ebuild b/dev-ml/facile/facile-1.1.2.ebuild
deleted file mode 100644
index 2b9fe9b82975..000000000000
--- a/dev-ml/facile/facile-1.1.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="OCaml constraint programming library on integer & integer set finite domains"
-HOMEPAGE="http://opti.recherche.enac.fr/"
-SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
-DEPEND="${RDEPEND}
- sys-apps/sed"
-
-src_prepare() {
- # Fix building on FreeBSD
- epatch "${FILESDIR}/${PN}"-1.1-make.patch
- # Disable building native code objects if we dont have/want ocamlopt
- if ! use ocamlopt; then
- sed -i -e 's/\.opt//' src/Makefile || die "failed to change native code compiler to bytecode ones"
- sed -i -e 's/ facile\.cmxa//' src/Makefile || die "failed to remove native code objects"
- sed -i -e 's/\.opt/.out/g' \
- -e 's: src/facile\.cmxa::'\
- -e 's: src/facile\.a::'\
- -e 's:^.*facile\.cmxa::'\
- -e 's:^.*facile\.a::' Makefile || die "failed to remove native code objects"
- fi
-}
-
-src_configure(){
- # This is a custom configure script and it does not support standard options
- ./configure --faciledir "${D}"$(ocamlc -where)/facile/ || die
-}
-
-src_test() {
- emake check
-}
-
-src_install(){
- dodir $(ocamlc -where)
- emake install
- dodoc README
-}