summaryrefslogtreecommitdiff
path: root/www/cakephp13/files/pkg-install.in
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
commita54fe1ca9c33931d7c4381a84ee11454f9831c08 (patch)
tree16cc7f849128603b27ba13f7bdb8ae11e1eadd30 /www/cakephp13/files/pkg-install.in
parentc7651500a041b224f401ba85fc192aac6ad83c1c (diff)
Diffstat (limited to 'www/cakephp13/files/pkg-install.in')
-rw-r--r--www/cakephp13/files/pkg-install.in29
1 files changed, 0 insertions, 29 deletions
diff --git a/www/cakephp13/files/pkg-install.in b/www/cakephp13/files/pkg-install.in
deleted file mode 100644
index b063fb9897d9..000000000000
--- a/www/cakephp13/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