diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2009-04-12 21:36:22 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2009-04-12 21:36:22 +0000 |
commit | 10e8278131611c6fef63766ef224e34b61630d54 (patch) | |
tree | a12af1db6969bf2a34718cf41afe9b584f660c71 /games/phpua-engine | |
parent | dbddb94d39dc56e611d9fcb592edd33eb7ac0293 (diff) | |
download | ports-10e8278131611c6fef63766ef224e34b61630d54.tar.gz ports-10e8278131611c6fef63766ef224e34b61630d54.zip |
- USE_APACHE=yes is deprecated
- Use SF Macro
- Make use of SUB_LIST for pkg-message
- Bump PORTREVISION
Notes
Notes:
svn path=/head/; revision=232249
Diffstat (limited to 'games/phpua-engine')
-rw-r--r-- | games/phpua-engine/Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/games/phpua-engine/Makefile b/games/phpua-engine/Makefile index ed6f0c66bd60..7063bf92aa5b 100644 --- a/games/phpua-engine/Makefile +++ b/games/phpua-engine/Makefile @@ -7,19 +7,22 @@ PORTNAME= phpua-engine PORTVERSION= 1.1.0b -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= phpua +MASTER_SITES= SF +MASTER_SITE_SUBDIR= ${PORTNAME:S/-.*//} MAINTAINER= ports@FreeBSD.org COMMENT= Game server monitor & admin tool NO_BUILD= yes -USE_APACHE= yes +USE_APACHE= 1.3 USE_PHP= yes -PLIST_SUB+= PHPUADIR=${PHPUADIR} PHPUA_USER=${PHPUA_USER} PHPUA_GROUP=${PHPUA_GROUP} +_subs=PHPUADIR=${PHPUADIR} PHPUA_USER=${PHPUA_USER} PHPUA_GROUP=${PHPUA_GROUP} APNAME=${APNAME} + +PLIST_SUB+= ${_subs} +SUB_LIST+= ${_subs} # Dynamic custom variables PHPUA_USER?= ${WWWOWN} @@ -44,11 +47,6 @@ pre-everything:: ${ECHO_MSG} '-------------------------------------------------------------------------') .endif -post-patch: - @${CAT} ${FILESDIR}/pkg-message.in | ${SED} -e \ - 's|%%PREFIX%%|${PREFIX}| ; s|%%PHPUADIR%%|${PHPUADIR}| ; s|%%APPNAME%%|${APPNAME}|' \ - > ${PKGMESSAGE} - do-extract: @ ${MKDIR} ${WRKSRC} @ cd ${WRKSRC} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${EXTRACT_AFTER_ARGS} |