mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
0ab15ba065
As part of this update, bsd.ocaml.mk has been updated to essentially disable USE_OCAML_LDCONFIG for staged ports. This means when all ocaml ports are staged, USE_OCAML_LDCONFIG won't work at all. It breaks staging; I don't know what the long term plan is -- maybe some sort of post-install script will arrive... PR: 189039 Submitted by: maintainer (Michael Gruenewald) Portlint pets: marino
33 lines
833 B
Makefile
33 lines
833 B
Makefile
# Created by: Klaus T. Aehlig <aehlig@linta.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ocaml-gsl
|
|
PORTVERSION= 1.15.1
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://bitbucket.org/mmottl/gsl-ocaml/downloads/
|
|
DISTNAME= gsl-ocaml-${PORTVERSION}
|
|
|
|
MAINTAINER= michipili@gmail.com
|
|
COMMENT= Interface to GSL for the Objective Caml language
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= gsl:${PORTSDIR}/math/gsl
|
|
BUILD_DEPENDS= gawk:${PORTSDIR}/lang/gawk \
|
|
${OCAMLC_DEPEND}
|
|
RUN_DEPENDS= ocamlfind:${PORTSDIR}/devel/ocaml-findlib
|
|
|
|
USES= gmake
|
|
USE_OCAML= YES
|
|
USE_OCAML_FINDLIB= YES
|
|
USE_OCAML_LDCONFIG= YES
|
|
HAS_CONFIGURE= YES
|
|
MAKE_JOBS_UNSAFE= yes
|
|
WRKSRC= ${WRKDIR}/gsl-ocaml-${PORTVERSION}
|
|
|
|
post-configure:
|
|
@${ECHO_CMD} 'stagedir="${STAGEDIR}"' >> ${WRKSRC}/setup.data
|
|
@${ECHO_CMD} 'docdir="$$datarootdir/doc/ocaml/$$pkg_name"' >> ${WRKSRC}/setup.data
|
|
|
|
.include <bsd.port.mk>
|