60 lines
1.6 KiB
Makefile
60 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.24 2015/06/30 11:52:57 jaapb Exp $
|
|
|
|
DISTNAME= findlib-1.5.5
|
|
PKGREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://download.camlcity.org/download/
|
|
|
|
MAINTAINER= jaapb@NetBSD.org
|
|
HOMEPAGE= http://www.camlcity.org/
|
|
COMMENT= Library finder for OCaml
|
|
LICENSE= mit
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
.include "../../mk/ocaml.mk"
|
|
|
|
USE_TOOLS+= gmake m4 bash
|
|
USE_PKGLOCALEDIR= yes
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= -bindir ${PREFIX}/bin
|
|
CONFIGURE_ARGS+= -mandir ${PREFIX}/${PKGMANDIR}
|
|
CONFIGURE_ARGS+= -config ${PKG_SYSCONFDIR}/ocamlfind.conf
|
|
CONFIGURE_ARGS+= -sitelib ${PREFIX}/${OCAML_SITELIBDIR}
|
|
CONFIGURE_ARGS+= -no-camlp4
|
|
|
|
|
|
BUILD_TARGET= all
|
|
.if ${OCAML_USE_OPT_COMPILER} == "yes"
|
|
BUILD_TARGET+= opt
|
|
.endif
|
|
|
|
EGDIR= ${PREFIX}/share/examples/ocaml-findlib
|
|
INSTALL_MAKE_FLAGS+= OCAMLFIND_CONF=${EGDIR}/ocamlfind.conf
|
|
INSTALLATION_DIRS= lib/ocaml libexec bin
|
|
|
|
CONF_FILES= ${EGDIR}/ocamlfind.conf ${PKG_SYSCONFDIR}/ocamlfind.conf
|
|
|
|
USE_TOOLS+= fgrep:run sh:run
|
|
SUBST_CLASSES+= ofr
|
|
SUBST_STAGE.ofr= pre-configure
|
|
SUBST_FILES.ofr= ocaml-findlib-register.sh
|
|
SUBST_SED.ofr= -e 's,@SH@,'${SH:Q}','
|
|
SUBST_SED.ofr+= -e 's,@PREFIX@,${PREFIX},'
|
|
SUBST_SED.ofr+= -e 's,@FGREP@,'${FGREP:Q}','
|
|
|
|
SUBST_CLASSES+= pathes
|
|
SUBST_STAGE.pathes= post-install
|
|
SUBST_FILES.pathes= ${DESTDIR}${PREFIX}/lib/ocaml/site-lib/findlib/Makefile.config
|
|
SUBST_SED.pathes= -e 's,^\(OCAML_CORE_BIN=\).*,\1'${PREFIX:Q}/bin','
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/ocaml-findlib-register.sh ${WRKSRC}
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/ocaml-findlib-register.sh ${DESTDIR}${PREFIX}/libexec/ocaml-findlib-register
|
|
|
|
do-test:
|
|
${RUN} cd ${WRKSRC}; ${SH} itest
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|