head	1.7;
access;
symbols;
locks; strict;
comment	@# @;


1.7
date	2013.03.22.15.52.26;	author svnexp;	state Exp;
branches;
next	1.6;

1.6
date	2013.02.08.12.21.44;	author svnexp;	state Exp;
branches;
next	1.5;

1.5
date	2013.01.18.23.56.04;	author svnexp;	state Exp;
branches;
next	1.4;

1.4
date	2012.11.17.06.02.29;	author svnexp;	state Exp;
branches;
next	1.3;

1.3
date	2012.09.13.00.43.43;	author bdrewery;	state Exp;
branches;
next	1.2;

1.2
date	2012.08.23.20.50.56;	author jgh;	state Exp;
branches;
next	1.1;

1.1
date	2012.08.21.19.48.06;	author jgh;	state Exp;
branches;
next	;


desc
@@


1.7
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/314915
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@# Created by: Christoph Theis <theis@@gmx.at>
# $FreeBSD: head/www/cakephp22/Makefile 314915 2013-03-22 11:53:34Z bapt $

PORTNAME=	cakephp
PORTVERSION=	2.2.7
CATEGORIES=	www

MAINTAINER=	pphillips@@experts-exchange.com
COMMENT=	A framework for developing PHP web applications

LICENSE=	MIT

USE_GITHUB=	yes
GH_ACCOUNT=	${PORTNAME}
GH_COMMIT=	1bb28d3

PORTDOCS=	README.md

SLAVE_PORT_MODULES=	REWRITE

CONFLICTS=	cakephp-1.* cakephp-2.1.*

NO_BUILD=	yes
USE_GETTEXT=	yes
USE_PHP=	ctype session
WANT_PHP_WEB=	yes
DEFAULT_PHP_VER=5
IGNORE_WITH_PHP=4

CAKE_CONF_FILES=	\
		app/Config/acl.php \
		app/Config/acl.ini.php \
		app/Config/bootstrap.php \
		app/Config/core.php \
		app/Config/database.php \
		app/Config/routes.php \
		app/Config/email.php
CAKE_CONSOLE=	lib/Cake/Console/cake

OPTIONS_DEFINE=	PROD AP MYSQL PGSQL SQLITE APC MEMCACHE

PROD_DESC=	Install for production server (make confighelp)
AP_DESC=	Add Apache 2.2+ dependency
MYSQL_DESC=	Check for/install MySQL support in PHP
PGSQL_DESC=	Check for/install PostgreSQL support in PHP
SQLITE_DESC=	Check for/install SQLite support in PHP
APC_DESC=	Enable APC caching engine
MEMCACHE_DESC=	Enable Memcached caching engine client

CONFDIR=	${PREFIX}/${CONFDIR_REL}
CONFDIR_REL=	${APACHEETCDIR}/Includes

.include <bsd.port.pre.mk>

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:MAP}
SUB_FILES=	pkg-message
USE_APACHE_RUN=	22+
PKGMESSAGE=	pkg-message
APDEP=
.else
SUB_FILES=	pkg-message-no-apache
PKGMESSAGE=	pkg-message-no-apache
APDEP=		"@@comment "
.endif

.if ${PORT_OPTIONS:MPROD}
PROD=		production
HTACCESS=	""
.else
PROD=		development
EXTRA_PATCHES=	${FILESDIR}/extra-patch-app__Config__core.php
HTACCESS=	"@@comment "
.endif

CONF=		cakephp-${PROD}${CGI_EXT}.conf
SUB_FILES+=	${CONF}

PLIST_SUB+=	CONFDIR=${CONFDIR_REL} ECHO_MSG=${ECHO_MSG} \
		HTACCESS=${HTACCESS} APDEP=${APDEP}

.if ${PORT_OPTIONS:MMYSQL}
USE_PHP+=	pdo pdo_mysql
.endif

.if ${PORT_OPTIONS:MPGSQL}
USE_PHP+=	pdo pdo_pgsql
.endif

.if ${PORT_OPTIONS:MSQLITE}
USE_PHP+=	pdo pdo_sqlite
.endif

.if ${PORT_OPTIONS:MAPC}
USE_PHP+=	apc
.endif

.if ${PORT_OPTIONS:MMEMCACHE}
USE_PHP+=	memcache
.endif

confighelp:
	@@${ECHO_MSG} ""
	@@${ECHO_MSG} "On a production server, the Apache DocumentRoot is"
	@@${ECHO_MSG} "updated to point to the CakePHP webroot directory."
	@@${ECHO_MSG} "In this configuration, the CakePHP application is"
	@@${ECHO_MSG} "accessed at http://www.myservername.com/."
	@@${ECHO_MSG} ""
	@@${ECHO_MSG} "A non-production server, CakePHP is installed at"
	@@${ECHO_MSG} "the /cakephp URL, and the CakePHP application is"
	@@${ECHO_MSG} "accessed at http://www.myservername.com/cakephp/."
	@@${ECHO_MSG} ""
	@@${ECHO_MSG} "For more information, please see:"
	@@${ECHO_MSG} "http://manual.cakephp.org/chapter/installing"
	@@${ECHO_MSG} ""

post-extract:
	@@${FIND} ${WRKSRC} -name ._\* -delete

post-patch:
	@@${RM} -f ${WRKSRC}/lib/Cake/Console/cake.orig \
		${WRKSRC}/app/Config/core.php.orig

# Rename config files so we don't overwrite those in an existing installation
	@@for i in ${CAKE_CONF_FILES}; do \
		if [ -f ${WRKSRC}/$$i ]; then \
			${MV} ${WRKSRC}/$$i ${WRKSRC}/$$i.default; \
		fi \
	done

do-install:
	@@cd ${WRKSRC} && ${COPYTREE_SHARE} \
		".htaccess app lib index.php plugins vendors" ${WWWDIR}

.if empty(PORT_OPTIONS:MPROD)
# If installed in development mode, get rid of .htaccess files,
# as noted by:
# http://book.cakephp.org/view/42/The-Configuration-Class#CakePHP-Core-Configuration-Variables-44
	@@${FIND} ${WWWDIR} -type f -name .htaccess -exec ${RM} {} \;
	@@${ECHO_CMD} '@@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name .htaccess -exec ${RM} {} \;' >> ${TMPPLIST}
.endif

# Get rid of the empty placeholder files
	@@${FIND} ${WWWDIR} -type f -name empty -size 0 -exec ${RM} {} \;
	@@${ECHO_CMD} '@@exec ${FIND} ${WWWDIR:S|^${PREFIX}/|%D/|} -type f -name empty -size 0 -exec ${RM} {} \;' >> ${TMPPLIST}

	@@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
	@@${ECHO_CMD} '@@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \
		${WWWDIR:S|^${PREFIX}/|%D/|}' >> ${TMPPLIST}
	@@${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644
	@@${ECHO_CMD} '@@exec ${FIND} ${WWWDIR} -type f -print0 | \
		${XARGS} -0 ${CHMOD} 644' >> ${TMPPLIST}
	@@${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755
	@@${ECHO_CMD} '@@exec ${FIND} ${WWWDIR} -type d -print0 | \
		${XARGS} -0 ${CHMOD} 755' >> ${TMPPLIST}

# Fix the permissions of the Cake console script
	@@${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE}
	@@${ECHO_CMD} '@@exec ${CHMOD} 755 ${WWWDIR}/${CAKE_CONSOLE}' >> ${TMPPLIST}

post-install:
	@@for i in ${CAKE_CONF_FILES}; do \
		if [ ! -f ${WWWDIR}/$$i -a -f ${WRKSRC}/$$i.default ]; then \
			${INSTALL_DATA} ${WRKSRC}/$$i.default ${WWWDIR}/$$i; \
		fi \
	done
.if ${PORT_OPTIONS:MAP}
	@@if [ -d "${CONFDIR}" ]; then \
	  ${CP} ${WRKDIR}/${CONF} ${CONFDIR}/cakephp.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 cakephp.conf there!" ; \
	  ${ECHO_MSG} "" ; \
	  ${FALSE} ; \
	fi
.endif
.if ${PORT_OPTIONS:MDOCS}
	@@${INSTALL} -d ${DOCSDIR}
	@@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
	@@${CAT} ${PKGMESSAGE}
.if ${CGI_EXT} == "-cgi"
	@@${ECHO_MSG}	""
	@@${ECHO_MSG}	"Your CakePHP 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>
@


1.6
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/311925
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d2 1
a2 1
# $FreeBSD: head/www/cakephp22/Makefile 311925 2013-02-08 09:10:26Z miwi $
d65 1
a65 1
.if defined(WITH_AP)
@


1.5
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/310625
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@d2 1
a2 1
# $FreeBSD: head/www/cakephp22/Makefile 310625 2013-01-18 23:25:14Z madpilot $
d5 1
a5 1
PORTVERSION=	2.2.5
d15 1
a15 1
GH_COMMIT=	26b5425
@


1.4
log
@Switch exporter over
@
text
@d1 2
a2 6
# New ports collection makefile for:	cakephp2
# Date created:        			20 February 2012
# Whom:                			Christoph Theis <theis@@gmx.at>
#
# $FreeBSD: head/www/cakephp22/Makefile 304168 2012-09-13 00:43:43Z bdrewery $
#
d5 1
a5 1
PORTVERSION=	2.2.2
d15 1
a15 1
GH_COMMIT=	ac41b42
@


1.3
log
@SVN rev 304168 on 2012-09-13 00:43:43Z by bdrewery

- Update to 2.2.2 [1]
- Switch to using USE_GITHUB for MASTER_SITES

PR:		ports/171527 [1]
Submitted by:	Phil Phillips <pphillips@@experts-exchange.com> (maintainer)
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.2
log
@SVN rev 303037 on 2012-08-23 20:50:56Z by jgh

- chase r302962, SLAVE_PORT_MODULES pkg-plist fix

Submitted by: jgh@@
Approved by:	maintainer, pphillips@@experts-exchange.com (via mail)
@
text
@d9 1
a9 1
PORTVERSION=	2.2.1
a10 2
MASTER_SITES=	https://github.com/${PORTNAME}/${PORTNAME}/tarball/${PORTVERSION}/
DISTNAME=	${PORTNAME}-${PORTNAME}-${PORTVERSION}-${GITVERSION}
d17 3
a19 3
GITVERSION=	0-gcc44130
FETCH_ARGS=	-pRr
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTNAME}-1592a60
d21 1
a21 1
PORTDOCS=	README
@


1.1
log
@SVN rev 302893 on 2012-08-21 19:48:06Z by jgh

add new port: www/cakephp22

This is a port of the CakePHP web application framework. CakePHP is a
free open-source rapid development framework for PHP. It's a structure
of libraries, classes and run-time infrastructure for programmers
creating web applications originally inspired by the Ruby on Rails
framework. Our primary goal is to enable you to work in a structured
and rapid manner - without loss of flexibility.

Add respective conflicts for www/cakephp22 and www/cakephp21.

PR:	170362
Submitted by:	pphillips@@experts-exchange.com
Sponsored by:	Experts Exchange, LLC.
@
text
@d25 1
a25 1
SLAVE_PORT_MODULES=	rewrite
@

