mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 11:10:32 -04:00
This update allows (and for some requires) to also update dependencies to newer versions. Where possible I updated to the latest version. The ocaml port now is MAKE_JOBS safe. Changes to dependent ports included in this commit: - devel/ocaml-sexplib: Rename to devel/ocaml-sexplib0 adapting to upstream. Update to 0.16.0 - devel/coccinelle: Update to 1.1.1, moved to github - devel/ocaml-camlp4: Update to 4.08+1 - devel/ocaml-camomile: Use dune for build, adapt port - devel/ocaml-cppo: Fix lib files installation [1] - devel/ocaml-dune: Update to 3.7.1 [2] - devel/ocaml-findlib: Update to 1.9.6 [3] - devel/ocaml-ipaddr: Update to 3.1.0 - devel/ocaml-parmap: Update to 1.2.4, use dune for build [4] - devel/ocaml-ppx-tools: Update to 6.6, use dune for build - graphics/ocaml-cairo: Update to 0.6.4 - net-p2p/mldonkey: Update to 3.1.7-2 [2] - net/unison: Remove ocaml 4.07 compatibility patches - net/unison232: Mark broken, fails to build with newer ocaml [5] - security/ocaml-ssl: Update to 0.5.13 [2] - x11-toolkits/ocaml-labltk: Update to 8.06.7 [2] Dune now requires full path as argument to --libdir, so various ports have been patched accordingly. Bumping PORTREVISION for all dependent ports that were not updated. PR: 272067 Approved by: michipili@gmail.com (maintainer timeout), eduardo (maintainer timeout) [1], danfe [2], hrs (maintainer timeout) [3], dumbbell (maintainer timeout) [4], mandree (implicit) [5] Differential Revision: https://reviews.freebsd.org/D40599
66 lines
2 KiB
Makefile
66 lines
2 KiB
Makefile
PORTNAME= findlib
|
|
PORTVERSION= 1.9.6
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://download.camlcity.org/download/
|
|
PKGNAMEPREFIX= ocaml-
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= OCaml package manager
|
|
WWW= http://projects.camlcity.org/projects/findlib.html
|
|
|
|
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
|
|
.if !exists(${LOCALBASE}/lib/ocaml/graphics.cmi)
|
|
@${REINPLACE_CMD} -e '/graphics\/META/d' ${TMPPLIST}
|
|
.endif
|
|
.if !exists(${LOCALBASE}/lib/ocaml/ocamlbuild/ocamlbuildlib.cma)
|
|
@${REINPLACE_CMD} -e '/ocamlbuild\/META/d' ${TMPPLIST}
|
|
.endif
|
|
# Spacetime profiling is only available for native code on 64-bit targets
|
|
.if ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc || ${ARCH} == powerpcspe
|
|
@${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>
|