1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

Solve the multiple post-extract targets problem.

This commit is contained in:
Dirk Froemberg 2001-03-04 22:41:12 +00:00
parent 0dc2945ae9
commit 2bc905398d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39062
2 changed files with 16 additions and 4 deletions

View File

@ -62,8 +62,6 @@ PLIST_SUB= PHPDOCDIR=${PHPDOCDIR:S/^${PREFIX}\///} \
pre-fetch:
@${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.php
post-extract: post-extract-jstring post-extract-ming
post-install:
.if !defined(STANDALONE)
@${ECHO} "Restarting Apache..."
@ -103,4 +101,12 @@ post-clean:
.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc"
.endif
post-extract:
.if target(post-extract-jstring)
${MAKE} post-extract-jstring
.endif
.if target(post-extract-ming)
${MAKE} post-extract-ming
.endif
.include <bsd.port.mk>

View File

@ -62,8 +62,6 @@ PLIST_SUB= PHPDOCDIR=${PHPDOCDIR:S/^${PREFIX}\///} \
pre-fetch:
@${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.php
post-extract: post-extract-jstring post-extract-ming
post-install:
.if !defined(STANDALONE)
@${ECHO} "Restarting Apache..."
@ -103,4 +101,12 @@ post-clean:
.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc"
.endif
post-extract:
.if target(post-extract-jstring)
${MAKE} post-extract-jstring
.endif
.if target(post-extract-ming)
${MAKE} post-extract-ming
.endif
.include <bsd.port.mk>