ca201c660e
NGINX Unit modules ports depend on www/unit and require to run an additional configure command for a specific version of a programming language. This change make those commands more consistent with configure and make parameters for the Unit binary and its modules. Bump PORTREVISIONs.
39 lines
872 B
Makefile
39 lines
872 B
Makefile
# Created by: Sergey Osokin <osa@FreeBSD.org>
|
|
|
|
PKGNAMESUFFIX= -${UNIT_MODNAME}
|
|
PORTREVISION= 1
|
|
|
|
UNIT_MODNAME= perl${PERL_VER}
|
|
|
|
COMMENT= Perl module for NGINX Unit
|
|
|
|
PLIST_FILES= libexec/unit/modules/${UNIT_MODNAME}.unit.so
|
|
|
|
RUN_DEPENDS= unitd:www/unit
|
|
|
|
USES= perl5
|
|
|
|
USE_RC_SUBR?= # reset to empty
|
|
|
|
MASTERDIR= ${.CURDIR}/../unit
|
|
|
|
post-configure:
|
|
cd ${CONFIGURE_WRKSRC} && \
|
|
${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} perl \
|
|
--module=${UNIT_MODNAME}
|
|
|
|
do-build:
|
|
cd ${CONFIGURE_WRKSRC} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
|
|
${MAKEFILE} ${MAKE_ARGS} ${UNIT_MODNAME}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/libexec/unit/modules/
|
|
${INSTALL_LIB} ${WRKSRC}/build/${UNIT_MODNAME}.unit.so \
|
|
${STAGEDIR}${PREFIX}/libexec/unit/modules/
|
|
|
|
# Overwrite the target in the ${MASTERDIR}/Makefile
|
|
post-install:
|
|
@${DO_NADA}
|
|
|
|
.include "${MASTERDIR}/Makefile"
|