1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00
freebsd-ports/www/prado/Makefile
Jimmy Olgeni 96a38c7c3a Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles
where not included as they contain Latin-1 characters that break
the Phabricator workflow. Category W.

CR:		D510
Approved by:	portmgr (bapt)
2014-08-06 09:11:57 +00:00

154 lines
4.2 KiB
Makefile

# Created by: Greg Larkin <glarkin@FreeBSD.org>
# $FreeBSD$
PORTNAME= prado
PORTVERSION= 3.1.6.r2699
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
PROJECTHOST= prado3
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
MAINTAINER= ports@FreeBSD.org
COMMENT= Framework for developing PHP web applications
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
WRKSRCDOCS= ${WRKDIR}/${PORTNAME}-docs-${PORTVERSION:C|.r|-r|}
USES= zip
USE_APACHE_RUN= 22+
NO_BUILD= yes
WANT_PHP_WEB= yes
USE_PHP= session
DEFAULT_PHP_VER=5
SUB_FILES= pkg-message
OPTIONS_DEFINE= PROD REQPHP OPTPHP DOCS EXAMPLES
OPTIONS_DEFAULT= REQPHP
PROD_DESC= Install for production server (see: make confighelp)
REQPHP_DESC= Install required PHP dependencies
OPTPHP_DESC= Install optional PHP dependencies
PLIST_SUB+= CONFDIR=${CONFDIR_REL}
CONFDIR= ${PREFIX}/${CONFDIR_REL}
CONFDIR_REL= ${APACHEETCDIR}/Includes
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MDOCS}
DISTFILES+= ${PORTNAME}-docs-${PORTVERSION:C|.r|-r|}${EXTRACT_SUFX}
.endif
WITH_PHP_CGI?= /cgi-bin/php
.if ${PHP_SAPI:Mcgi} == "cgi" && ${PHP_SAPI:Mmod} == ""
CGI_EXT= -cgi
.else
CGI_EXT=
.endif
SUB_LIST+= PHPCGI=${WITH_PHP_CGI}
.if ${PORT_OPTIONS:MPROD}
PROD= production
.else
PROD= development
.endif
.if ${PORT_OPTIONS:MDOCS}
SUB_LIST+= HASHMARK=
.else
SUB_LIST+= HASHMARK=\#
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
DEMOS= demos
.else
DEMOS=
.endif
CONF= prado-${PROD}${CGI_EXT}.conf
SUB_FILES+= ${CONF}
.if ${PORT_OPTIONS:MREQPHP}
USE_PHP+= dom spl ctype pcre
.endif
.if ${PORT_OPTIONS:MOPTPHP}
USE_PHP+= pdo iconv zlib sqlite memcache mcrypt xsl soap
RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC
.endif
# Maintainer-mode target to speed up fixup of output from genplist
fix-new-plist:
@if [ -f pkg-plist.new ]; then \
${PERL} -ni.bak -e \
's#^(.*%%WWWDIR%%/demos)#%%PORTEXAMPLES%%$$1#g; \
print;' pkg-plist.new; \
else \
${ECHO_CMD} Please run genplist to create pkg-plist.new; \
fi
confighelp:
@${ECHO_MSG} ""
@${ECHO_MSG} "On a production server, the Apache DocumentRoot is"
@${ECHO_MSG} "updated to point to the Prado webroot directory."
@${ECHO_MSG} "In this configuration, the Prado application is"
@${ECHO_MSG} "accessed at http://www.myservername.com/."
@${ECHO_MSG} ""
@${ECHO_MSG} "A non-production server, Prado is installed at"
@${ECHO_MSG} "the /prado URL, and the Prado application is"
@${ECHO_MSG} "accessed at http://www.myservername.com/prado/."
@${ECHO_MSG} ""
@${ECHO_MSG} "For more information, please see:"
@${ECHO_MSG} "http://www.pradosoft.com/wiki/index.php/Installation"
@${ECHO_MSG} ""
do-install:
@cd ${WRKSRC} && ${COPYTREE_SHARE} "index.html ${DEMOS} \
framework requirements tests" ${WWWDIR}
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
@${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644
@${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755
@${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \
${WWWDIR}' >> ${TMPPLIST}
@${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type f -print0 | \
${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST}
@${ECHO_CMD} '@exec ${FIND} ${WWWDIR} -type d -print0 | \
${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST}
post-install:
@if [ -d "${CONFDIR}" ]; then \
${CP} ${WRKDIR}/${CONF} ${CONFDIR}/prado.conf; \
else \
${ECHO_MSG} "" ; \
${ECHO_MSG} "Please check your Apache 2.x installation -" ; \
${ECHO_MSG} "${CONFDIR} doesn't exist," ; \
${ECHO_MSG} "so I cannot install prado.conf there!" ; \
${ECHO_MSG} "" ; \
${FALSE} ; \
fi
.if ${PORT_OPTIONS:MDOCS}
@cd ${WRKSRCDOCS} && ${COPYTREE_SHARE} . ${DOCSDIR}
@cd ${WRKSRC} && ${COPYTREE_SHARE} "HISTORY UPGRADE" ${DOCSDIR}
.endif
@${CAT} ${PKGMESSAGE}
.if ${CGI_EXT} == "-cgi"
@${ECHO_MSG} ""
@${ECHO_MSG} "Your Prado installation was configured to use the PHP CGI binary."
@${ECHO_MSG} "The PHP CGI binary is expected to be referenced by the URL:"
@${ECHO_MSG} ""
@${ECHO_MSG} " ${WITH_PHP_CGI}"
@${ECHO_MSG} ""
@${ECHO_MSG} "If this is incorrect, reinstall the port with the WITH_PHP_CGI knob"
@${ECHO_MSG} "set to the correct URL."
.endif
@${ECHO_MSG} "*********************************************************************"
.include <bsd.port.post.mk>