diff options
Diffstat (limited to 'www/cakephp2/files')
-rw-r--r-- | www/cakephp2/files/cakephp-development-cgi.conf.in | 13 | ||||
-rw-r--r-- | www/cakephp2/files/cakephp-development.conf.in | 10 | ||||
-rw-r--r-- | www/cakephp2/files/cakephp-production-cgi.conf.in | 13 | ||||
-rw-r--r-- | www/cakephp2/files/cakephp-production.conf.in | 10 | ||||
-rw-r--r-- | www/cakephp2/files/development-app-config-core.php.patch | 18 | ||||
-rw-r--r-- | www/cakephp2/files/pkg-install.in | 29 | ||||
-rw-r--r-- | www/cakephp2/files/pkg-message.in | 11 |
7 files changed, 0 insertions, 104 deletions
diff --git a/www/cakephp2/files/cakephp-development-cgi.conf.in b/www/cakephp2/files/cakephp-development-cgi.conf.in deleted file mode 100644 index 48c1e373a372..000000000000 --- a/www/cakephp2/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/cakephp2/files/cakephp-development.conf.in b/www/cakephp2/files/cakephp-development.conf.in deleted file mode 100644 index 86a7a676d57b..000000000000 --- a/www/cakephp2/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/cakephp2/files/cakephp-production-cgi.conf.in b/www/cakephp2/files/cakephp-production-cgi.conf.in deleted file mode 100644 index 7215c731486a..000000000000 --- a/www/cakephp2/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/cakephp2/files/cakephp-production.conf.in b/www/cakephp2/files/cakephp-production.conf.in deleted file mode 100644 index 8679a15b8958..000000000000 --- a/www/cakephp2/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/cakephp2/files/development-app-config-core.php.patch b/www/cakephp2/files/development-app-config-core.php.patch deleted file mode 100644 index f0986680c946..000000000000 --- a/www/cakephp2/files/development-app-config-core.php.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- app/config/core.php.orig Thu Jan 3 17:07:25 2008 -+++ app/config/core.php Thu Jan 3 17:09:11 2008 -@@ -56,7 +56,7 @@ - * - * And uncomment the App.baseUrl below: - */ -- //Configure::write('App.baseUrl', env('SCRIPT_NAME')); -+ Configure::write('App.baseUrl', env('SCRIPT_NAME')); - /** - * Uncomment the define below to use CakePHP admin routes. - * -@@ -226,4 +226,4 @@ - * ); - */ - Cache::config('default', array('engine' => 'File')); --?> -\ No newline at end of file -+?> diff --git a/www/cakephp2/files/pkg-install.in b/www/cakephp2/files/pkg-install.in deleted file mode 100644 index b063fb9897d9..000000000000 --- a/www/cakephp2/files/pkg-install.in +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -# -# Fix up the permissions on directories and files when pkg_add is -# used to install the port -# -# Borrowed from the www/resin2 port -# - -set -e - -# Set up utilities -CHOWN=%%CHOWN%% -CHMOD=%%CHMOD%% -FIND=%%FIND%% -XARGS=%%XARGS%% - -# Set up variables -WWWOWN=%%WWWOWN%% -WWWGRP=%%WWWGRP%% -WWWDIR=%%WWWDIR%% - -if [ "$2" = "POST-INSTALL" ]; then - # We're called after the 'make install' process - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - ${FIND} ${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} 644 - ${FIND} ${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 -fi - -exit 0 diff --git a/www/cakephp2/files/pkg-message.in b/www/cakephp2/files/pkg-message.in deleted file mode 100644 index 303baf685232..000000000000 --- a/www/cakephp2/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. |