mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 19:06:28 -04:00
are unsafe by default, which is the main motivation why it was picked, but not the very latest one) and synchronize the rest of the stack and dependent ports with it, particularly: - Update `devel/ocaml-ocamlbuild' to version 0.14.0 and unbreak, register build dependency on all ports that require it (should be part of USE_OCAML, but we do not want to make any Mk-related changes the for time being) - Update `devel/ocaml-camlp4' to version 4.05+2 - Update `devel/ocaml-camlp5' to version 7.07 (the project had moved to GitHub) - Mark `devel/ocaml-deriving-ocsigen' as BROKEN for now, it is very outdated and requires quite a lot of work - Update `x11-toolkits/ocaml-labltk' to version 8.06.3 PR: 218333 Exp-run by: antoine
61 lines
1.7 KiB
Makefile
61 lines
1.7 KiB
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= findlib
|
|
PORTVERSION= 1.7.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://download.camlcity.org/download/
|
|
PKGNAMEPREFIX= ocaml-
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= OCaml package manager
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= gmake
|
|
USE_OCAML= yes
|
|
USE_OCAML_CAMLP4=yes
|
|
USE_OCAML_FINDLIB=yes
|
|
OCAMLFIND_DEPEND= # Avoid dependency loop
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= -bindir "${PREFIX}/bin" -mandir "${PREFIX}/man" \
|
|
-sitelib "${PREFIX}/${OCAML_SITELIBDIR}" \
|
|
-config "${PREFIX}/etc/findlib.conf"
|
|
MAKE_ENV= OCAML_LIBDIR="${PREFIX}/${OCAML_LIBDIR}"
|
|
ALL_TARGET= all opt
|
|
MAKE_JOBS_UNSAFE= yes
|
|
DOCSDIR= ${PREFIX}/share/doc/ocaml/${PORTNAME}
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= TOOLBOX DOCS
|
|
OPTIONS_DEFAULT=TOOLBOX
|
|
OPTIONS_SUB= yes
|
|
TOOLBOX_DESC= Include toolbox interface (requires OCaml with TK)
|
|
TOOLBOX_CONFIGURE_ON= -with-toolbox
|
|
TOOLBOX_RUN_DEPENDS= labltk:x11-toolkits/ocaml-labltk
|
|
TOOLBOX_BUILD_DEPENDS= ${TOOLBOX_RUN_DEPENDS}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-install:
|
|
cd ${STAGEDIR}${PREFIX} && \
|
|
${STRIP_CMD} bin/ocamlfind \
|
|
${OCAML_SITELIBDIR}/findlib/findlib.cmxs \
|
|
${OCAML_SITELIBDIR}/findlib/findlib_dynload.cmxs \
|
|
${OCAML_SITELIBDIR}/findlib/findlib_top.cmxs
|
|
# Spacetime profiling is only available for native code on 64-bit targets
|
|
.if ${ARCH} == i386 || ${ARCH} == powerpc
|
|
@${REINPLACE_CMD} -e '/raw_spacetime/d' ${TMPPLIST}
|
|
.endif
|
|
|
|
post-install-TOOLBOX-on:
|
|
${CHMOD} 755 ${STAGEDIR}${PREFIX}/bin/ocamlfind \
|
|
${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/findlib/make_wizard
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR} \
|
|
"! -regex .*ref-man.*"
|
|
|
|
.include <bsd.port.post.mk>
|