diff options
Diffstat (limited to 'devel/horde-chora/files')
-rw-r--r-- | devel/horde-chora/files/httpd.conf.chora | 27 | ||||
-rw-r--r-- | devel/horde-chora/files/patch-config::sourceroots.php.dist | 45 | ||||
-rw-r--r-- | devel/horde-chora/files/pkg-deinstall.in | 27 | ||||
-rw-r--r-- | devel/horde-chora/files/pkg-message.in | 11 |
4 files changed, 0 insertions, 110 deletions
diff --git a/devel/horde-chora/files/httpd.conf.chora b/devel/horde-chora/files/httpd.conf.chora deleted file mode 100644 index 95afb9c8db4c..000000000000 --- a/devel/horde-chora/files/httpd.conf.chora +++ /dev/null @@ -1,27 +0,0 @@ -# This is included in Apache's httpd.conf for Chora -# -# For security, don't serve pages from the Chora configuration and -# library directories. -# -<Directory "/home/httpd/html/horde/chora/config"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/chora/lib"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/chora/locale"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/chora/po"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/chora/templates"> - order deny,allow - deny from all -</Directory> -# End of Chora configuration ================ - diff --git a/devel/horde-chora/files/patch-config::sourceroots.php.dist b/devel/horde-chora/files/patch-config::sourceroots.php.dist deleted file mode 100644 index 18c1a987243b..000000000000 --- a/devel/horde-chora/files/patch-config::sourceroots.php.dist +++ /dev/null @@ -1,45 +0,0 @@ ---- config/sourceroots.php.dist.orig Wed Aug 27 16:08:21 2003 -+++ config/sourceroots.php.dist Thu Dec 2 23:30:08 2004 -@@ -11,7 +11,7 @@ - * 'name' [M] : Short name for the repository. - * - * 'location' [M] : Location on the filesystem of the repository. -- * -+ * - * 'title' [M] : Long title for the repository. - * - * 'type' [M] : Indicates software used, either 'cvs' or 'svn'. -@@ -31,6 +31,17 @@ - * whose contents should be protected and not displayed. - */ - -+$sourceroots['myprojects'] = array( -+ 'name' => 'Here', -+ 'location' => '%%CVSROOT%%', -+ 'title' => 'To be configured in %%CONFDIR%%/sourceroots.php', -+ 'intro' => 'longIntro.txt', -+ 'default' => true, -+ 'type' => 'cvs', -+); -+ -+/* -+ - $sourceroots['php4'] = array( - 'name' => 'PHP4', - 'location' => '/home/cvs/php4', -@@ -64,9 +75,11 @@ - 'type' => 'svn', - ); - --$sourceroots['openbsd'] = array( -- 'name' => 'OpenBSD', -- 'location' => '/home/cvs/openbsd', -- 'title' => 'OpenBSD CVS Repository', -+$sourceroots['freebsd'] = array( -+ 'name' => 'FreeBSD', -+ 'location' => '/home/cvs/freebsd', -+ 'title' => 'FreeBSD CVS Repository', - 'type' => 'cvs', - ); -+ -+*/ diff --git a/devel/horde-chora/files/pkg-deinstall.in b/devel/horde-chora/files/pkg-deinstall.in deleted file mode 100644 index 0ef032fe5654..000000000000 --- a/devel/horde-chora/files/pkg-deinstall.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Chora config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%CHORADIR%%/config/*php %%CHORADIR%%/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi diff --git a/devel/horde-chora/files/pkg-message.in b/devel/horde-chora/files/pkg-message.in deleted file mode 100644 index 34b4d8550554..000000000000 --- a/devel/horde-chora/files/pkg-message.in +++ /dev/null @@ -1,11 +0,0 @@ -************************************************************************ -Chora has been installed in %%CHORADIR%% with your blank -configuration files. - -Horde must be configured; if not, see `pkg_info -D -x horde'. - -Then, you may have to tune the configuration files located in -%%CONFDIR%%/, specially the file sourceroots.php. - -To protect your configuration files, you have to restart Apache. -************************************************************************ |