freebsd-ports/games/phpua-engine/Makefile
Pav Lucistnik 02da8d0611 Add phpua-engine, a PHP based backedn that enables gaming server
administrators to manage their servers via a website interface and
to display server information including live statistics to the public.

Plugin ports will come soon.

PR:		ports/64874
Submitted by:	Hideki Machida <hido@neojapangz.com>
2004-04-01 17:37:22 +00:00

64 lines
1.7 KiB
Makefile

# New ports collection makefile for: phpUA
# Date created: 20 Feb 2003
# Whom: hideki
#
# $FreeBSD$
#
PORTNAME= phpua-engine
PORTVERSION= 1.1.0b
CATEGORIES= games www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= phpua
MAINTAINER= hido@neojapangz.com
COMMENT= Game server monitor & admin tool
NO_BUILD= yes
USE_APACHE= yes
USE_PHP= yes
PLIST_SUB+= PHPUADIR=${PHPUADIR}
# Dynamic custom variables
WWWDOC?= www/data
USER?= www
GROUP?= www
APPNAME?= phpua
# Static Variables
PKGOPTS= ${FILESDIR}/pkg-opts
PHPUADIR= ${WWWDOC}/${APPNAME}
PKGMESSAGE= ${WRKDIR}/pkg-message
options:
@ ${ECHO_MSG} "===> Build options for ${PKGNAME}:"
@ ${CAT} ${PKGOPTS}
pre-everything::
.if !defined(BATCH)
@ ${TEST} -r ${PKGOPTS} && \
(${ECHO_MSG} '-------------------------------------------------------------------------'; \
${ECHO_MSG} 'Perform a "make options" to see a list of available installation options.'; \
${ECHO_MSG} '-------------------------------------------------------------------------')
.endif
post-patch:
@${CAT} ${FILESDIR}/pkg-message.in | ${SED} -e \
's|%%PREFIX%%|${PREFIX}| ; s|%%PHPUADIR%%|${PHPUADIR}| ; s|%%APPNAME%%|${APPNAME}|' \
> ${PKGMESSAGE}
do-install:
@ ${MKDIR} ${PREFIX}/${PHPUADIR}
@ ${CP} ${WRKDIR}/*.php ${PREFIX}/${PHPUADIR}/
@ ${CP} -R ${WRKDIR}/doc ${PREFIX}/${PHPUADIR}/
@ ${CP} -R ${WRKDIR}/images ${PREFIX}/${PHPUADIR}/
@ ${CP} -R ${WRKDIR}/includes ${PREFIX}/${PHPUADIR}/
@ ${CP} -R ${WRKDIR}/languages ${PREFIX}/${PHPUADIR}/
@ ${CP} -R ${WRKDIR}/plugins ${PREFIX}/${PHPUADIR}/
@ ${CP} -R ${WRKDIR}/templates ${PREFIX}/${PHPUADIR}/
@ ${CP} -R ${WRKDIR}/wap ${PREFIX}/${PHPUADIR}/
@ ${CHOWN} -R ${USER}:${GROUP} ${PREFIX}/${PHPUADIR}/
.include <bsd.port.mk>