aboutsummaryrefslogtreecommitdiff
path: root/www/cakephp13
diff options
context:
space:
mode:
Diffstat (limited to 'www/cakephp13')
-rw-r--r--www/cakephp13/Makefile149
-rw-r--r--www/cakephp13/distinfo3
-rw-r--r--www/cakephp13/files/cakephp-development-cgi.conf.in13
-rw-r--r--www/cakephp13/files/cakephp-development.conf.in10
-rw-r--r--www/cakephp13/files/cakephp-production-cgi.conf.in13
-rw-r--r--www/cakephp13/files/cakephp-production.conf.in10
-rw-r--r--www/cakephp13/files/development-app-config-core.php.patch18
-rw-r--r--www/cakephp13/files/pkg-message.in11
-rw-r--r--www/cakephp13/pkg-descr10
-rw-r--r--www/cakephp13/pkg-plist260
10 files changed, 0 insertions, 497 deletions
diff --git a/www/cakephp13/Makefile b/www/cakephp13/Makefile
deleted file mode 100644
index 5fdd3ae3ffaf..000000000000
--- a/www/cakephp13/Makefile
+++ /dev/null
@@ -1,149 +0,0 @@
-# New ports collection makefile for: cakephp
-# Date created: 19 January 2007
-# Whom: Greg Larkin <glarkin@sourcehosting.net>
-#
-# $FreeBSD$
-#
-
-PORTNAME= cakephp
-PORTVERSION= 1.1.18.5850
-CATEGORIES= www
-MASTER_SITES= http://cakeforge.org/frs/download.php/549/
-DISTNAME= cake_${PORTVERSION}
-
-MAINTAINER= glarkin@sourcehosting.net
-COMMENT= A framework for developing PHP web applications
-
-USE_BZIP2= yes
-DISTFILE_SUFFIX=/donation=complete
-FETCH_BEFORE_ARGS= -o ${DISTDIR}/${TARGET_DISTFILE}
-TARGET_DISTFILE=${DISTNAME}${EXTRACT_SUFX}
-
-USE_APACHE= 2.0+
-SLAVE_PORT_MODULES= rewrite
-
-NO_BUILD= yes
-USE_PHP= pcre session
-WANT_PHP_WEB= yes
-
-SUB_FILES= pkg-message
-
-WRKSRC= ${WRKDIR}/cake_${DISTVERSION}
-
-OPTIONS= PROD "Install for production server (see: make confighelp)" Off \
- MYSQL "Check for/install MySQL support in PHP" Off \
- PGSQL "Check for/install PostgreSQL support in PHP" Off \
- SQLITE "Check for/install SQLite support in PHP" Off
-
-PLIST_SUB+= CONFDIR=${CONFDIR_REL}
-
-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
-
-DEFAULT_PHP_VER=5
-IGNORE_WITH_PHP=4
-
-SUB_LIST+= PHPCGI=${WITH_PHP_CGI}
-
-.if defined(WITH_PROD)
-PROD= production
-.else
-PROD= development
-EXTRA_PATCHES= ${FILESDIR}/development-app-config-core.php.patch
-.endif
-
-CONF= cakephp-${PROD}${CGI_EXT}.conf
-SUB_FILES+= ${CONF}
-
-DB_DEFINED= no
-
-.if defined(WITH_MYSQL)
-DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_mysql.so:${PORTSDIR}/databases/php5-pdo_mysql
-DB_DEFINED= yes
-.endif
-
-.if defined(WITH_PGSQL)
-DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_pgsql.so:${PORTSDIR}/databases/php5-pdo_pgsql
-DB_DEFINED= yes
-.endif
-
-.if defined(WITH_SQLITE)
-DB_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_sqlite.so:${PORTSDIR}/databases/php5-pdo_sqlite
-DB_DEFINED= yes
-.endif
-
-.if ${DB_DEFINED} == "yes"
-RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo.so:${PORTSDIR}/databases/php5-pdo \
- ${DB_DEPENDS}
-.endif
-
-do-fetch:
-.if !exists(${DISTDIR}/${TARGET_DISTFILE})
- ${FETCH_CMD} ${FETCH_BEFORE_ARGS} -1 ${MASTER_SITES:S|$|${TARGET_DISTFILE}${DISTFILE_SUFFIX}|g}
-.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} ""
-
-do-install:
- @${MKDIR} ${WWWDIR}
- ${CP} -R ${WRKSRC}/.htaccess \
- ${WRKSRC}/app \
- ${WRKSRC}/cake \
- ${WRKSRC}/index.php \
- ${WRKSRC}/vendors ${WWWDIR}
- ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
- ${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644
- ${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755
-
-post-install:
- @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
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
- @${INSTALL_DATA} ${WRKSRC}/docs/*.txt ${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>
diff --git a/www/cakephp13/distinfo b/www/cakephp13/distinfo
deleted file mode 100644
index 5bb37761cf94..000000000000
--- a/www/cakephp13/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (cake_1.1.18.5850.tar.bz2) = 29f2445bec3cbc02758b276e2d4d93a2
-SHA256 (cake_1.1.18.5850.tar.bz2) = 1e6b91b22ed094e6e67546ff4eb58d911e490853da0d98f27dc491ad1204ea95
-SIZE (cake_1.1.18.5850.tar.bz2) = 162144
diff --git a/www/cakephp13/files/cakephp-development-cgi.conf.in b/www/cakephp13/files/cakephp-development-cgi.conf.in
deleted file mode 100644
index 48c1e373a372..000000000000
--- a/www/cakephp13/files/cakephp-development-cgi.conf.in
+++ /dev/null
@@ -1,13 +0,0 @@
-AddType application/x-httpd-php .php
-AddType application/x-httpd-php-source .phps
-
-Action php-script %%PHPCGI%%
-AddHandler php-script .php
-
-Alias /cakephp %%WWWDIR%%
-
-<Location /cakephp>
- DirectoryIndex index.php
- Order deny,allow
- Allow from all
-</Location>
diff --git a/www/cakephp13/files/cakephp-development.conf.in b/www/cakephp13/files/cakephp-development.conf.in
deleted file mode 100644
index 86a7a676d57b..000000000000
--- a/www/cakephp13/files/cakephp-development.conf.in
+++ /dev/null
@@ -1,10 +0,0 @@
-AddType application/x-httpd-php .php
-AddType application/x-httpd-php-source .phps
-
-Alias /cakephp %%WWWDIR%%
-
-<Location /cakephp>
- DirectoryIndex index.php
- Order deny,allow
- Allow from all
-</Location>
diff --git a/www/cakephp13/files/cakephp-production-cgi.conf.in b/www/cakephp13/files/cakephp-production-cgi.conf.in
deleted file mode 100644
index 7215c731486a..000000000000
--- a/www/cakephp13/files/cakephp-production-cgi.conf.in
+++ /dev/null
@@ -1,13 +0,0 @@
-AddType application/x-httpd-php .php
-AddType application/x-httpd-php-source .phps
-
-Action php-script %%PHPCGI%%
-AddHandler php-script .php
-
-DocumentRoot %%WWWDIR%%/app/webroot
-
-<Location />
- DirectoryIndex index.php
- Order deny,allow
- Allow from all
-</Location>
diff --git a/www/cakephp13/files/cakephp-production.conf.in b/www/cakephp13/files/cakephp-production.conf.in
deleted file mode 100644
index 8679a15b8958..000000000000
--- a/www/cakephp13/files/cakephp-production.conf.in
+++ /dev/null
@@ -1,10 +0,0 @@
-AddType application/x-httpd-php .php
-AddType application/x-httpd-php-source .phps
-
-DocumentRoot %%WWWDIR%%/app/webroot
-
-<Location />
- DirectoryIndex index.php
- Order deny,allow
- Allow from all
-</Location>
diff --git a/www/cakephp13/files/development-app-config-core.php.patch b/www/cakephp13/files/development-app-config-core.php.patch
deleted file mode 100644
index c32ab7e013be..000000000000
--- a/www/cakephp13/files/development-app-config-core.php.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- app/config/core.php Mon Feb 19 13:45:27 2007
-+++ app/config/core.php Mon Feb 19 13:39:40 2007
-@@ -37,7 +37,7 @@
- * release/app/.htaccess
- * release/app/webroot/.htaccess
- */
--// define ('BASE_URL', env('SCRIPT_NAME'));
-+ define ('BASE_URL', env('SCRIPT_NAME'));
- /**
- * Set debug level here:
- * - 0: production
-@@ -143,4 +143,4 @@
- */
- define('ACL_CLASSNAME', 'DB_ACL');
- define('ACL_FILENAME', 'dbacl' . DS . 'db_acl');
--?>
-\ No newline at end of file
-+?>
diff --git a/www/cakephp13/files/pkg-message.in b/www/cakephp13/files/pkg-message.in
deleted file mode 100644
index 303baf685232..000000000000
--- a/www/cakephp13/files/pkg-message.in
+++ /dev/null
@@ -1,11 +0,0 @@
-
-*********************************************************************
-You have just installed the CakePHP web application framework. Please
-consider supporting the project by visiting http://www.cakephp.org/
-and making a donation to the development effort.
-
-Note that you should restart your Apache web server to ensure that
-the CakePHP configuration file is loaded.
-
-Be sure to check %%WWWDIR%%/app/config/core.php for
-additional framework configuration options.
diff --git a/www/cakephp13/pkg-descr b/www/cakephp13/pkg-descr
deleted file mode 100644
index 8448ca91093f..000000000000
--- a/www/cakephp13/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-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.
-
-WWW: http://www.cakephp.org/
-- Greg Larkin
-glarkin@sourcehosting.net
diff --git a/www/cakephp13/pkg-plist b/www/cakephp13/pkg-plist
deleted file mode 100644
index 42adae421d2d..000000000000
--- a/www/cakephp13/pkg-plist
+++ /dev/null
@@ -1,260 +0,0 @@
-%%WWWDIR%%/app/.htaccess
-%%WWWDIR%%/app/config/acl.ini.php
-%%WWWDIR%%/app/config/bootstrap.php
-%%WWWDIR%%/app/config/core.php
-@unexec rm -f %D/%%WWWDIR%%/app/config/core.php.orig
-%%WWWDIR%%/app/config/database.php.default
-%%WWWDIR%%/app/config/inflections.php
-%%WWWDIR%%/app/config/routes.php
-%%WWWDIR%%/app/config/sql/db_acl.sql
-%%WWWDIR%%/app/config/sql/sessions.sql
-%%WWWDIR%%/app/controllers/components/empty
-%%WWWDIR%%/app/index.php
-%%WWWDIR%%/app/models/empty
-%%WWWDIR%%/app/plugins/empty
-%%WWWDIR%%/app/tmp/cache/empty
-%%WWWDIR%%/app/tmp/cache/models/empty
-%%WWWDIR%%/app/tmp/cache/persistent/empty
-%%WWWDIR%%/app/tmp/cache/views/empty
-%%WWWDIR%%/app/tmp/empty
-%%WWWDIR%%/app/tmp/logs/empty
-%%WWWDIR%%/app/tmp/sessions/empty
-%%WWWDIR%%/app/tmp/tests/empty
-%%WWWDIR%%/app/vendors/empty
-%%WWWDIR%%/app/views/elements/empty
-%%WWWDIR%%/app/views/errors/empty
-%%WWWDIR%%/app/views/helpers/empty
-%%WWWDIR%%/app/views/layouts/empty
-%%WWWDIR%%/app/views/pages/empty
-%%WWWDIR%%/app/webroot/.htaccess
-%%WWWDIR%%/app/webroot/css.php
-%%WWWDIR%%/app/webroot/css/cake.generic.css
-%%WWWDIR%%/app/webroot/favicon.ico
-%%WWWDIR%%/app/webroot/img/cake.power.png
-%%WWWDIR%%/app/webroot/img/w3c_css.png
-%%WWWDIR%%/app/webroot/img/w3c_xhtml10.png
-%%WWWDIR%%/app/webroot/index.php
-%%WWWDIR%%/app/webroot/js/vendors.php
-%%WWWDIR%%/cake/LICENSE.txt
-%%WWWDIR%%/cake/VERSION.txt
-%%WWWDIR%%/cake/app_controller.php
-%%WWWDIR%%/cake/app_model.php
-%%WWWDIR%%/cake/basics.php
-%%WWWDIR%%/cake/bootstrap.php
-%%WWWDIR%%/cake/config/config.php
-%%WWWDIR%%/cake/config/paths.php
-%%WWWDIR%%/cake/dispatcher.php
-%%WWWDIR%%/cake/libs/cache.php
-%%WWWDIR%%/cake/libs/cake_log.php
-%%WWWDIR%%/cake/libs/class_registry.php
-%%WWWDIR%%/cake/libs/configure.php
-%%WWWDIR%%/cake/libs/controller/component.php
-%%WWWDIR%%/cake/libs/controller/components/acl.php
-%%WWWDIR%%/cake/libs/controller/components/acl_base.php
-%%WWWDIR%%/cake/libs/controller/components/dbacl/db_acl.php
-%%WWWDIR%%/cake/libs/controller/components/dbacl/models/aclnode.php
-%%WWWDIR%%/cake/libs/controller/components/dbacl/models/aco.php
-%%WWWDIR%%/cake/libs/controller/components/dbacl/models/acoaction.php
-%%WWWDIR%%/cake/libs/controller/components/dbacl/models/aro.php
-%%WWWDIR%%/cake/libs/controller/components/dbacl/models/aros_aco.php
-%%WWWDIR%%/cake/libs/controller/components/iniacl/ini_acl.php
-%%WWWDIR%%/cake/libs/controller/components/request_handler.php
-%%WWWDIR%%/cake/libs/controller/components/security.php
-%%WWWDIR%%/cake/libs/controller/components/session.php
-%%WWWDIR%%/cake/libs/controller/controller.php
-%%WWWDIR%%/cake/libs/controller/pages_controller.php
-%%WWWDIR%%/cake/libs/controller/scaffold.php
-%%WWWDIR%%/cake/libs/error.php
-%%WWWDIR%%/cake/libs/file.php
-%%WWWDIR%%/cake/libs/flay.php
-%%WWWDIR%%/cake/libs/folder.php
-%%WWWDIR%%/cake/libs/inflector.php
-%%WWWDIR%%/cake/libs/legacy.php
-%%WWWDIR%%/cake/libs/model/connection_manager.php
-%%WWWDIR%%/cake/libs/model/datasources/datasource.php
-%%WWWDIR%%/cake/libs/model/datasources/dbo_source.php
-%%WWWDIR%%/cake/libs/model/dbo/dbo_adodb.php
-%%WWWDIR%%/cake/libs/model/dbo/dbo_mssql.php
-%%WWWDIR%%/cake/libs/model/dbo/dbo_mysql.php
-%%WWWDIR%%/cake/libs/model/dbo/dbo_mysqli.php
-%%WWWDIR%%/cake/libs/model/dbo/dbo_odbc.php
-%%WWWDIR%%/cake/libs/model/dbo/dbo_pear.php
-%%WWWDIR%%/cake/libs/model/dbo/dbo_postgres.php
-%%WWWDIR%%/cake/libs/model/dbo/dbo_sqlite.php
-%%WWWDIR%%/cake/libs/model/model.php
-%%WWWDIR%%/cake/libs/model/model_php4.php
-%%WWWDIR%%/cake/libs/model/model_php5.php
-%%WWWDIR%%/cake/libs/neat_array.php
-%%WWWDIR%%/cake/libs/neat_string.php
-%%WWWDIR%%/cake/libs/object.php
-%%WWWDIR%%/cake/libs/router.php
-%%WWWDIR%%/cake/libs/sanitize.php
-%%WWWDIR%%/cake/libs/security.php
-%%WWWDIR%%/cake/libs/session.php
-%%WWWDIR%%/cake/libs/set.php
-%%WWWDIR%%/cake/libs/validators.php
-%%WWWDIR%%/cake/libs/view/helper.php
-%%WWWDIR%%/cake/libs/view/helpers/ajax.php
-%%WWWDIR%%/cake/libs/view/helpers/cache.php
-%%WWWDIR%%/cake/libs/view/helpers/form.php
-%%WWWDIR%%/cake/libs/view/helpers/html.php
-%%WWWDIR%%/cake/libs/view/helpers/javascript.php
-%%WWWDIR%%/cake/libs/view/helpers/number.php
-%%WWWDIR%%/cake/libs/view/helpers/session.php
-%%WWWDIR%%/cake/libs/view/helpers/text.php
-%%WWWDIR%%/cake/libs/view/helpers/time.php
-%%WWWDIR%%/cake/libs/view/templates/elements/dump.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/error404.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_action.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_component_class.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_component_file.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_connection.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_controller.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_class.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_helper_file.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_layout.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_model.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_scaffolddb.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_table.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/missing_view.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/private_action.thtml
-%%WWWDIR%%/cake/libs/view/templates/errors/scaffold_error.thtml
-%%WWWDIR%%/cake/libs/view/templates/layouts/ajax.thtml
-%%WWWDIR%%/cake/libs/view/templates/layouts/default.thtml
-%%WWWDIR%%/cake/libs/view/templates/layouts/flash.thtml
-%%WWWDIR%%/cake/libs/view/templates/pages/home.thtml
-%%WWWDIR%%/cake/libs/view/templates/scaffolds/add.thtml
-%%WWWDIR%%/cake/libs/view/templates/scaffolds/edit.thtml
-%%WWWDIR%%/cake/libs/view/templates/scaffolds/index.thtml
-%%WWWDIR%%/cake/libs/view/templates/scaffolds/view.thtml
-%%WWWDIR%%/cake/libs/view/view.php
-%%WWWDIR%%/cake/scripts/acl.php
-%%WWWDIR%%/cake/scripts/bake.php
-%%WWWDIR%%/cake/scripts/templates/skel/.htaccess
-%%WWWDIR%%/cake/scripts/templates/skel/app_controller.php
-%%WWWDIR%%/cake/scripts/templates/skel/app_model.php
-%%WWWDIR%%/cake/scripts/templates/skel/config/acl.ini.php
-%%WWWDIR%%/cake/scripts/templates/skel/config/bootstrap.php
-%%WWWDIR%%/cake/scripts/templates/skel/config/core.php
-%%WWWDIR%%/cake/scripts/templates/skel/config/database.php.default
-%%WWWDIR%%/cake/scripts/templates/skel/config/inflections.php
-%%WWWDIR%%/cake/scripts/templates/skel/config/routes.php
-%%WWWDIR%%/cake/scripts/templates/skel/config/sql/db_acl.sql
-%%WWWDIR%%/cake/scripts/templates/skel/config/sql/sessions.sql
-%%WWWDIR%%/cake/scripts/templates/skel/controllers/pages_controller.php
-%%WWWDIR%%/cake/scripts/templates/skel/index.php
-%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/ajax.thtml
-%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/default.thtml
-%%WWWDIR%%/cake/scripts/templates/skel/views/layouts/flash.thtml
-%%WWWDIR%%/cake/scripts/templates/skel/webroot/.htaccess
-%%WWWDIR%%/cake/scripts/templates/skel/webroot/css.php
-%%WWWDIR%%/cake/scripts/templates/skel/webroot/css/cake.generic.css
-%%WWWDIR%%/cake/scripts/templates/skel/webroot/favicon.ico
-%%WWWDIR%%/cake/scripts/templates/skel/webroot/img/cake.power.png
-%%WWWDIR%%/cake/scripts/templates/skel/webroot/index.php
-%%WWWDIR%%/cake/scripts/templates/skel/webroot/js/vendors.php
-%%WWWDIR%%/cake/scripts/templates/views/home.thtml
-%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
-%%PORTDOCS%%%%DOCSDIR%%/COPYING.txt
-%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
-%%PORTDOCS%%%%DOCSDIR%%/README.txt
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-%%WWWDIR%%/index.php
-%%WWWDIR%%/.htaccess
-%%CONFDIR%%/cakephp.conf
-@exec mkdir -p %D/%%WWWDIR%%/vendors
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/controllers/components
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/vendors
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/plugins
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/webroot/files
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/pages
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/helpers
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/elements
-@exec mkdir -p %D/%%WWWDIR%%/cake/scripts/templates/skel/views/errors
-@exec mkdir -p %D/%%WWWDIR%%/app/webroot/files
-@dirrm %%WWWDIR%%/vendors
-@dirrm %%WWWDIR%%/cake/scripts/templates/views
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/js
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/img
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/files
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot/css
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/webroot
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/pages
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/layouts
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/helpers
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/errors
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/views/elements
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/views
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/vendors
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/tests
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/sessions
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/logs
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/views
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/persistent
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache/models
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp/cache
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/tmp
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/plugins
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/models/behaviors
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/models
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers/components
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/controllers
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/config/sql
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel/config
-@dirrm %%WWWDIR%%/cake/scripts/templates/skel
-@dirrm %%WWWDIR%%/cake/scripts/templates
-@dirrm %%WWWDIR%%/cake/scripts
-@dirrm %%WWWDIR%%/cake/libs/view/templates/scaffolds
-@dirrm %%WWWDIR%%/cake/libs/view/templates/pages
-@dirrm %%WWWDIR%%/cake/libs/view/templates/layouts
-@dirrm %%WWWDIR%%/cake/libs/view/templates/errors
-@dirrm %%WWWDIR%%/cake/libs/view/templates/elements
-@dirrm %%WWWDIR%%/cake/libs/view/templates
-@dirrm %%WWWDIR%%/cake/libs/view/helpers
-@dirrm %%WWWDIR%%/cake/libs/view
-@dirrm %%WWWDIR%%/cake/libs/model/dbo
-@dirrm %%WWWDIR%%/cake/libs/model/datasources
-@dirrm %%WWWDIR%%/cake/libs/model
-@dirrm %%WWWDIR%%/cake/libs/controller/components/iniacl
-@dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl/models
-@dirrm %%WWWDIR%%/cake/libs/controller/components/dbacl
-@dirrm %%WWWDIR%%/cake/libs/controller/components
-@dirrm %%WWWDIR%%/cake/libs/controller
-@dirrm %%WWWDIR%%/cake/libs
-@dirrm %%WWWDIR%%/cake/config
-@dirrm %%WWWDIR%%/cake
-@dirrm %%WWWDIR%%/app/webroot/js
-@dirrm %%WWWDIR%%/app/webroot/img
-@dirrm %%WWWDIR%%/app/webroot/files
-@dirrm %%WWWDIR%%/app/webroot/css
-@dirrm %%WWWDIR%%/app/webroot
-@dirrm %%WWWDIR%%/app/views/pages
-@dirrm %%WWWDIR%%/app/views/layouts
-@dirrm %%WWWDIR%%/app/views/helpers
-@dirrm %%WWWDIR%%/app/views/errors
-@dirrm %%WWWDIR%%/app/views/elements
-@dirrm %%WWWDIR%%/app/views
-@dirrm %%WWWDIR%%/app/vendors
-@dirrm %%WWWDIR%%/app/tmp/tests
-@dirrm %%WWWDIR%%/app/tmp/sessions
-@dirrm %%WWWDIR%%/app/tmp/logs
-@dirrm %%WWWDIR%%/app/tmp/cache/views
-@dirrm %%WWWDIR%%/app/tmp/cache/persistent
-@dirrm %%WWWDIR%%/app/tmp/cache/models
-@dirrm %%WWWDIR%%/app/tmp/cache
-@dirrm %%WWWDIR%%/app/tmp
-@dirrm %%WWWDIR%%/app/plugins
-@dirrm %%WWWDIR%%/app/models
-@dirrm %%WWWDIR%%/app/controllers/components
-@dirrm %%WWWDIR%%/app/controllers
-@dirrm %%WWWDIR%%/app/config/sql
-@dirrm %%WWWDIR%%/app/config
-@dirrm %%WWWDIR%%/app
-@dirrm %%WWWDIR%%