mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 10:26:28 -04:00
- Instead of USE_OCAML=yes use USES=ocaml. If empty USES=ocaml implies build and run - Instead of USE_OCAMLFIND_PLIST use USES=ocaml:findplist which also implies USES=ocaml:findlib - Instead of USE_OCAML_CAMLP4 use USES=ocaml:camlp4 - Instead of USE_OCAML_FINDLIB use USES=ocaml:findlib - Instead of USE_OCAML_LDCONFIG use USES=ocaml:ldconfig - Instead of USE_OCAML_WASH use USES=ocaml:wash - Instead of NO_OCAML_BUILDDEPENDS use USES=ocaml:run - Instead of NO_OCAML_RUNDDEPENDS use USES=ocaml:build - Instead of USE_OCAML_TK use USES=ocaml:tk which actually implies USES=ocaml:tkbuild and USES=ocaml:tkrun - Instead of NO_OCAMLTK_BUILDDEPENDS use USES=ocaml:tkrun - Instead of NO_OCAMLTK_RUNDEPENDS use USES=ocaml:tkbuild - USES=ocaml:dune remains unchanged - Prepare to add/remove keywords easily Approved by: mat (portmgr) Reviewed by: freebsd@dev.thsi.be Differential Revision: https://reviews.freebsd.org/D48227
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
PORTNAME= cstruct
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 6.2.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= ocaml-
|
|
|
|
MAINTAINER= freebsd@dev.thsi.be
|
|
COMMENT= OCaml library and syntax extension to access C-like structures
|
|
WWW= https://github.com/mirage/ocaml-cstruct
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
BUILD_DEPENDS= ${SA_DIR}/fmt/META:devel/ocaml-fmt \
|
|
${SA_DIR}/lwt/META:devel/ocaml-lwt \
|
|
${SA_DIR}/ppxlib/META:devel/ocaml-ppxlib \
|
|
${SA_DIR}/sexplib/META:devel/ocaml-sexplib
|
|
RUN_DEPENDS= ${SA_DIR}/fmt/META:devel/ocaml-fmt \
|
|
${SA_DIR}/lwt/META:devel/ocaml-lwt \
|
|
${SA_DIR}/ppxlib/META:devel/ocaml-ppxlib \
|
|
${SA_DIR}/sexplib/META:devel/ocaml-sexplib
|
|
|
|
USES= ocaml:dune,ldconfig
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mirage
|
|
GH_PROJECT= ocaml-${PORTNAME}
|
|
# missing ${PORTNAME}-async
|
|
OCAML_PACKAGES= ${PORTNAME} ${PORTNAME}-lwt ${PORTNAME}-sexp \
|
|
${PORTNAME}-unix ppx_${PORTNAME}
|
|
DUNE_INSTALL_TARGETS= ${OCAML_PACKAGES}
|
|
|
|
DOCSDIR= ${OCAML_DOCSDIR}
|
|
PORTDOCS= ${OCAML_PACKAGES:@p@$p/CHANGES.md $p/LICENSE.md $p/README.md@}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} \
|
|
-e "s/(name ${PORTNAME})/&\n (version ${PORTVERSION})/" \
|
|
${WRKSRC}/dune-project
|
|
|
|
post-install:
|
|
@(cd ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}; \
|
|
${STRIP_CMD} \
|
|
cstruct/dllcstruct_stubs.so \
|
|
ppx_cstruct/ppx.exe \
|
|
${OCAML_PACKAGES:@p@$p/${p:S/-/_/g}.cmxs@})
|
|
|
|
.include <bsd.port.mk>
|