a2a18547bc
and have do-install/do-build use them. Replace pre-configure with folded in shell fragment. Don't hardcode perl location, we don't hardcode those things but rely on PATH instead. check that Makefile.PL actually produced a Makefile, since the way it errors out does not exit 1, thus leading to configure having failed and ports thinking it succeeded... okay sthen@
87 lines
2.6 KiB
Makefile
87 lines
2.6 KiB
Makefile
#-*- mode: Fundamental; tab-width: 4; -*-
|
|
# ex:ts=4 sw=4 filetype=make:
|
|
# $OpenBSD: perl.port.mk,v 1.20 2012/08/15 09:38:11 espie Exp $
|
|
# Based on bsd.port.mk, originally by Jordan K. Hubbard.
|
|
# This file is in the public domain.
|
|
|
|
REGRESS_TARGET ?= test
|
|
MODPERL_BUILD ?= Build
|
|
SHARED_ONLY ?= No
|
|
|
|
.if ${CONFIGURE_STYLE:L:Mmodbuild}
|
|
MODPERL_configure = \
|
|
arch=`perl -e 'use Config; print $$Config{archname}, "\n";'`; \
|
|
cd ${WRKSRC}; ${_SYSTRACE_CMD} ${SETENV} ${CONFIGURE_ENV} \
|
|
perl Build.PL \
|
|
install_path=lib="${PREFIX}/libdata/perl5/site_perl" \
|
|
install_path=arch="${PREFIX}/libdata/perl5/site_perl/$$arch" \
|
|
install_path=libdoc="${PREFIX}/man/man3p" \
|
|
install_path=bindoc="${PREFIX}/man/man1" \
|
|
install_path=bin="${PREFIX}/bin" \
|
|
install_path=script="${PREFIX}/bin" ${CONFIGURE_ARGS}
|
|
.else
|
|
MODPERL_configure = ${_MODPERL_preconfig}; \
|
|
arch=`perl -e 'use Config; print $$Config{archname}, "\n";'`; \
|
|
cd ${WRKSRC}; ${_SYSTRACE_CMD} ${SETENV} ${CONFIGURE_ENV} \
|
|
PERL_MM_USE_DEFAULT=Yes \
|
|
perl Makefile.PL \
|
|
PREFIX='${PREFIX}' \
|
|
INSTALLSITELIB='${PREFIX}/libdata/perl5/site_perl' \
|
|
INSTALLSITEARCH="\$${INSTALLSITELIB}/$$arch" \
|
|
INSTALLPRIVLIB='/usr/./libdata/perl5' \
|
|
INSTALLARCHLIB="\$${INSTALLPRIVLIB}/$$arch" \
|
|
INSTALLMAN1DIR='${PREFIX}/man/man1' \
|
|
INSTALLMAN3DIR='${PREFIX}/man/man3p' \
|
|
INSTALLBIN='$${PREFIX}/bin' \
|
|
INSTALLSCRIPT='$${INSTALLBIN}' ${CONFIGURE_ARGS}; \
|
|
if ! test -f ${WRKBUILD}/Makefile; then \
|
|
echo >&2 "Fatal: Makefile.PL did not produce a Makefile"; \
|
|
exit 1; \
|
|
fi
|
|
|
|
. if ${CONFIGURE_STYLE:L:Mmodinst}
|
|
BUILD_DEPENDS += devel/p5-Module-Install
|
|
CONFIGURE_ARGS += --skipdeps
|
|
_MODPERL_preconfig = rm -rf ${WRKSRC}/inc/Module/*Install*
|
|
. else
|
|
_MODPERL_preconfig = :
|
|
. endif
|
|
.endif
|
|
|
|
MODPERL_pre-fake = \
|
|
${SUDO} mkdir -p ${WRKINST}`perl -e 'use Config; print $$Config{installarchlib}, "\n";'`
|
|
|
|
.if ${CONFIGURE_STYLE:L:Mmodbuild}
|
|
MODPERL_BUILD_TARGET = \
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} perl \
|
|
${MODPERL_BUILD} build
|
|
|
|
MODPERL_REGRESS_TARGET = \
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} perl \
|
|
${MODPERL_BUILD} ${REGRESS_TARGET}
|
|
MODPERL_INSTALL_TARGET = \
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} perl \
|
|
${MODPERL_BUILD} destdir=${WRKINST} ${FAKE_TARGET}
|
|
|
|
. if !target(do-build)
|
|
do-build:
|
|
@${MODPERL_BUILD_TARGET}
|
|
. endif
|
|
. if !target(do-regress)
|
|
do-regress:
|
|
@${MODPERL_REGRESS_TARGET}
|
|
. endif
|
|
. if !target(do-install)
|
|
do-install:
|
|
@${MODPERL_INSTALL_TARGET}
|
|
. endif
|
|
.endif
|
|
|
|
.if ${SHARED_ONLY:L:Myes}
|
|
WANTLIB += perl
|
|
.endif
|
|
|
|
P5SITE = libdata/perl5/site_perl
|
|
P5ARCH = ${P5SITE}/${MACHINE_ARCH}-openbsd
|
|
SUBST_VARS += P5ARCH P5SITE
|