mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
4e896a50f8
- math/p5-Math-GSL does not seem to have any upstream activity to make it work with this version -> mark it broken - this also breaks the two consumers of this port - biology/gemma: has a conflict with cblas, and is makred broken. PR: 241363 Exp-run by: antoine
46 lines
1005 B
Makefile
46 lines
1005 B
Makefile
# Created by: Klaus T. Aehlig <aehlig@linta.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ocaml-gsl
|
|
DISTVERSIONPREFIX=v
|
|
DISTVERSION= 1.19.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= michipili@gmail.com
|
|
COMMENT= Interface to GSL for the Objective Caml language
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libgsl.so:math/gsl
|
|
BUILD_DEPENDS= gawk:lang/gawk \
|
|
ocamlbuild:devel/ocaml-ocamlbuild \
|
|
${OCAMLC_DEPEND}
|
|
RUN_DEPENDS= ocamlfind:devel/ocaml-findlib
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mmottl
|
|
GH_PROJECT= gsl-ocaml
|
|
|
|
USES= gmake
|
|
USE_OCAML= YES
|
|
USE_OCAML_FINDLIB= YES
|
|
USE_OCAML_CAMLP4= YES
|
|
USE_OCAML_LDCONFIG= YES
|
|
OCAML_PKGDIRS= gsl
|
|
HAS_CONFIGURE= YES
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
NOT_FOR_ARCHS= armv6
|
|
NOT_FOR_ARCHS_REASON= architectures with double-word alignment for doubles are not supported
|
|
|
|
DOCSDIR= ${LOCALBASE}/share/doc
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-configure:
|
|
@${ECHO_CMD} 'stagedir="${STAGEDIR}"' >> ${WRKSRC}/setup.data
|
|
@${ECHO_CMD} 'docdir="$$datarootdir/doc/ocaml/$$pkg_name"' >> ${WRKSRC}/setup.data
|
|
|
|
.include <bsd.port.mk>
|