aboutsummaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2004-12-26 10:33:22 +0000
committerThierry Thomas <thierry@FreeBSD.org>2004-12-26 10:33:22 +0000
commit8d7c479a6cf040eecdba3a2b0bd55a3dbc6ac6d4 (patch)
tree7bcb81d9ab06663319883b959bd3e78d1dadb47b /www
parent9e679deb8ab03bfde35c9a4f8da01a82281b6b56 (diff)
downloadports-8d7c479a6cf040eecdba3a2b0bd55a3dbc6ac6d4.tar.gz
ports-8d7c479a6cf040eecdba3a2b0bd55a3dbc6ac6d4.zip
Notes
Diffstat (limited to 'www')
-rw-r--r--www/Makefile2
-rw-r--r--www/horde2/Makefile208
-rw-r--r--www/horde2/distinfo2
-rw-r--r--www/horde2/files/httpd.conf.horde52
-rw-r--r--www/horde2/files/patch-aa68
-rw-r--r--www/horde2/files/patch-ab58
-rw-r--r--www/horde2/files/patch-ac228
-rw-r--r--www/horde2/files/patch-mime_drivers.php.dist180
-rw-r--r--www/horde2/files/patch-po_translation.php8
-rw-r--r--www/horde2/files/patch-scripts_db_README11
-rw-r--r--www/horde2/pkg-deinstall37
-rw-r--r--www/horde2/pkg-descr7
-rw-r--r--www/horde2/pkg-message33
-rw-r--r--www/horde2/pkg-plist456
14 files changed, 1 insertions, 1349 deletions
diff --git a/www/Makefile b/www/Makefile
index 20e5f77181d5..d46d60585287 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -148,8 +148,8 @@
SUBDIR += guile-www
SUBDIR += gurlchecker
SUBDIR += harvest
+ SUBDIR += horde
SUBDIR += horde-passwd
- SUBDIR += horde2
SUBDIR += hotjava
SUBDIR += htdump
SUBDIR += html2hdml
diff --git a/www/horde2/Makefile b/www/horde2/Makefile
deleted file mode 100644
index 184c13e3b202..000000000000
--- a/www/horde2/Makefile
+++ /dev/null
@@ -1,208 +0,0 @@
-# Ports collection makefile for: horde2
-# Date created: Sun Oct 07, 2001
-# Whom: Thierry Thomas (<thierry@thomas.as>)
-#
-# $FreeBSD$
-#
-
-PORTNAME= horde
-PORTVERSION= 2.2.7
-CATEGORIES= www
-MASTER_SITES= ftp://ftp.horde.org/pub/horde/ \
- ftp://ftp.planetmirror.com/pub/horde/horde/ \
- ftp://ftp.au.horde.org/pub/horde/horde/ \
- ftp://ftp.be.horde.org/horde/ \
- ftp://ftp.es.horde.org/pub/horde/ \
- ftp://ftp.it.horde.org/pub/mirror/horde.org/horde/ \
- ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/horde/ \
- ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/horde/ \
- http://ftp.horde.org/pub/horde/
-
-MAINTAINER= thierry@FreeBSD.org
-COMMENT= A common code-base used by Horde applications, written in PHP
-
-#-----------------------------------------------------------------------
-# You may define these options:
-#
-# - WITH_APACHE2: if you run Apache2;
-#
-# - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree.
-#
-# - WITHOUT_MYSQL: this port is built with MySQL by default
-# but you might choose any other database
-# supported by PHP (e.g. WITH_POSTGRESQL).
-#
-# - WITHOUT_IMP: this port is intended to build a default
-# package for IMP; use this knob if for
-# example you only need Chora.
-#
-# - WITHOUT_LDAP: if you do not need OpenLDAP.
-#
-# - WITHOUT_MCAL: if you don't plan to install Kronolith.
-#
-# - WITHOUT_FTP: if you don't plan to install Gollem.
-#
-#-----------------------------------------------------------------------
-
-RUN_DEPENDS= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \
- ${PEARDIR}/HTML/Common.php:${PORTSDIR}/devel/pear-HTML_Common \
- ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \
- ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \
- ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB
-
-NO_BUILD= yes
-USE_PHP= domxml gettext session
-WANT_PHP_MOD= yes
-BROKEN_WITH_PHP=5
-USE_REINPLACE= yes
-
-.if !defined(NOCRYPT)
-USE_PHP+= mcrypt
-.endif
-.if !defined(WITHOUT_MYSQL)
-USE_PHP+= mysql
-.endif
-.if !defined(WITHOUT_LDAP)
-USE_PHP+= ldap
-.endif
-.if !defined(WITHOUT_IMP)
-USE_PHP+= imap
-.endif
-.if !defined(WITHOUT_MCAL)
-USE_PHP+= mcal
-.endif
-.if !defined(WITHOUT_FTP)
-USE_PHP+= ftp
-.endif
-
-REINPLACE_ARGS= -i.beforeHorde
-DOCS= COPYING README docs/CHANGES docs/CODING_STANDARDS \
- docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL \
- docs/RELEASE_NOTES docs/SECURITY docs/TRANSLATIONS
-CONFFILE= horde.php html.php lang.php mime_drivers.php mime_mapping.php \
- motd.php prefs.php registry.php
-SUB_DIRS= config graphics lib locale po scripts templates util
-
-LHORDEDIR?= www/horde
-LHORDESBIN?= sbin
-
-PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN}
-
-HORDEDIR= ${PREFIX}/${LHORDEDIR}
-HORDESBIN= ${PREFIX}/${LHORDESBIN}
-CONFDIR= ${HORDEDIR}/config
-
-APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf
-PEARDIR?= ${LOCALBASE}/share/pear
-.if defined(WITH_APACHE2)
-APACHE_CNFDIR= ${LOCALBASE}/etc/apache2
-.else
-APACHE_CNFDIR= ${LOCALBASE}/etc/apache
-.endif
-HORDE_INC= ${PREFIX}/etc/horde
-LOG_FILE?= /var/log/horde.log
-
-pre-everything::
- @${ECHO_MSG} ""
- @${ECHO_MSG} "If you plan to install IMP, it is better to configure"
- @${ECHO_MSG} "PHP with IMAP / IMAP-SSL, OpenLDAP, OpenSSL, mcrypt, XML,"
- @${ECHO_MSG} "FTP, gettext, zlib, MCAL and a database (like MySQL or"
- @${ECHO_MSG} "PostgreSQL)."
- @${ECHO_MSG} "For Japanese language, please enable mbstring."
- @${ECHO_MSG} ""
-
-pre-install:
- @if [ -f ${HORDEDIR}/index.php3 ]; then \
- ${ECHO_MSG} "" ; \
- ${ECHO_MSG} "Please deinstall the port www/horde." ; \
- ${ECHO_MSG} "" ; \
- ${FALSE} ; \
- fi
-# N.B.: database dependencies are binded with mod_php#, not with Horde
-.if !defined(WITHOUT_SUPPORTED_DB)
- @if ! php -m | ${GREP} -q -e "mysql" ; then \
- if ! php -m | ${GREP} -q -e "pgsql" ; then \
- if ! php -m | ${GREP} -q -e "sybase" ; then \
- if ! php -m | ${GREP} -q -e "sybase_ct" ; then \
- ${ECHO_MSG} "" ; \
- ${ECHO_MSG} "Please configure PHP with a database support." ; \
- ${ECHO_MSG} "MySQL, PostgreSQL and Sybase (CTLIB or DBLIB)" ; \
- ${ECHO_MSG} "can be used with PHP AND Horde." ; \
- ${ECHO_MSG} "" ; \
- ${ECHO_MSG} "(If everything will run on this machine, do not" ; \
- ${ECHO_MSG} " forget to install the database server-side!)" ; \
- ${ECHO_MSG} "" ; \
- ${FALSE} ; \
- fi ; \
- fi ; \
- fi ; \
- fi
-.endif
-
-post-patch:
- @${RM} ${WRKSRC}/po/translation.php.orig \
- ${WRKSRC}/scripts/db/README.orig \
- ${WRKSRC}/scripts/set_perms.sh.orig \
- ${WRKSRC}/config/horde.php.dist.orig \
- ${WRKSRC}/config/registry.php.dist.orig \
- ${WRKSRC}/config/mime_drivers.php.dist.orig
-
-do-install:
- @${MKDIR} ${HORDEDIR}
-.for REP in ${SUB_DIRS}
- @${CP} -Rp ${WRKSRC}/${REP} ${HORDEDIR}
-.endfor
- @${CP} -p ${WRKSRC}/*.php ${HORDEDIR}
- @if [ ! -f ${CONFDIR}/horde.php ]; then \
- ${CP} ${CONFDIR}/horde.php.dist ${CONFDIR}/horde.php ; \
- ${REINPLACE_CMD} -e "s:/tmp/horde.log:${LOG_FILE}:g" ${CONFDIR}/horde.php ; \
- ${RM} ${CONFDIR}/horde.php.beforeHorde ; \
- fi
- @${REINPLACE_CMD} -e "s:/etc/mpasswd:${LOCALBASE}/etc/mpasswd:g" \
- ${HORDEDIR}/lib/Auth/mcal.php
- @${RM} ${HORDEDIR}/lib/Auth/mcal.php.beforeHorde
-.for FILE in ${CONFFILE}
- @if [ ! -f ${CONFDIR}/${FILE} ]; then \
- ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
- fi
-.endfor
- @${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:" ${CONFDIR}/mime_drivers.php
- @${RM} ${CONFDIR}/mime_drivers.php.beforeHorde
- @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh
- @${REINPLACE_CMD} -e "s:UPDATED_BY_THE_PORT:${HORDEDIR}/:g" \
- ${HORDESBIN}/horde_set_perms.sh
- @${RM} ${HORDESBIN}/horde_set_perms.sh.beforeHorde
- @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh
- @(if [ -f ${APACHE_CONF} ] ; then \
- ${MKDIR} ${HORDE_INC} ; \
- ${CP} -p ${FILESDIR}/httpd.conf.horde ${HORDE_INC} ; \
- ${REINPLACE_CMD} -e "s:/home/httpd/html/horde:${HORDEDIR}:g ; \
- s:/home/httpd/phplib:${PEARDIR}:g" ${HORDE_INC}/httpd.conf.horde ; \
- ${RM} ${HORDE_INC}/httpd.conf.horde.beforeHorde ; \
- ${ECHO_MSG} "===> Updating ${APACHE_CONF}..." ; \
- ${REINPLACE_CMD} -e "s:php_value auto_prepend_file:# php_value auto_prepend_file:g ; \
- s:${HORDEDIR}/phplib:${PEARDIR}:g" ${APACHE_CONF} ; \
- ${ECHO_CMD} "# Horde's include directory" >> ${APACHE_CONF} ; \
- ${ECHO_CMD} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \
- fi)
- @${CHOWN} -R www:www ${HORDEDIR}
- @${CHMOD} -R o-rwx ${CONFDIR}
- @${TOUCH} ${LOG_FILE}
- @${CHOWN} www:www ${LOG_FILE}
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
-.for FILE in ${DOCS}
- @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
-.endfor
- @${REINPLACE_CMD} -e "s:/usr/local/apache/htdocs:${PREFIX}/www:g" ${DOCSDIR}/INSTALL
- @${RM} ${DOCSDIR}/INSTALL.beforeHorde
- @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
-.endif
-
-post-install:
- @${ECHO}
- @${SED} -e "s:%%HORDEDIR%%:${HORDEDIR}:g;s:%%APACHE_CONF%%:${APACHE_CONF}:g" \
- -e "s:%%HORDESBIN%%:${HORDESBIN}:g" ${PKGMESSAGE}
- @${ECHO}
-
-.include <bsd.port.mk>
diff --git a/www/horde2/distinfo b/www/horde2/distinfo
deleted file mode 100644
index d105394e8b91..000000000000
--- a/www/horde2/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (horde-2.2.7.tar.gz) = f13c20221312a0d3951687a84813167f
-SIZE (horde-2.2.7.tar.gz) = 680591
diff --git a/www/horde2/files/httpd.conf.horde b/www/horde2/files/httpd.conf.horde
deleted file mode 100644
index a88a93b23031..000000000000
--- a/www/horde2/files/httpd.conf.horde
+++ /dev/null
@@ -1,52 +0,0 @@
-# This is included in Apache's httpd.conf for Horde
-
-<Directory /home/httpd/html/horde>
- Options Indexes FollowSymLinks
- AllowOverride None
- order allow,deny
- allow from all
- <IfModule mod_php4.c>
- php_value include_path '/home/httpd/phplib:.'
- php_flag register_globals On
- php_flag magic_quotes_gpc Off
- php_flag track_vars On
- </IfModule>
-</Directory>
-
-<IfModule mod_alias.c>
- Alias /horde/ "/home/httpd/html/horde/"
-</IfModule>
-#
-# For security, don't serve pages from the Horde configuration and library
-# directories.
-#
-<Directory "/home/httpd/html/horde/admin">
- Order deny,allow
- Deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/config">
- Order deny,allow
- Deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/lib">
- Order deny,allow
- Deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/locale">
- Order deny,allow
- Deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/po">
- Order deny,allow
- Deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/scripts">
- Order deny,allow
- Deny from all
-</Directory>
-<Directory "/home/httpd/html/horde/templates">
- Order deny,allow
- Deny from all
-</Directory>
-# End of Horde configuration ================
-
diff --git a/www/horde2/files/patch-aa b/www/horde2/files/patch-aa
deleted file mode 100644
index deb6f20bb48d..000000000000
--- a/www/horde2/files/patch-aa
+++ /dev/null
@@ -1,68 +0,0 @@
---- scripts/set_perms.sh.orig Sun Apr 15 03:55:32 2001
-+++ scripts/set_perms.sh Wed Oct 24 23:48:43 2001
-@@ -1,6 +1,7 @@
- #!/bin/sh
- #
- # set_perms.sh - Jon Parise <jon@csh.rit.edu>
-+# patched by the FreeBSD port - Th. Thomas <thierry@thomas.as>
- #
- # $Horde: horde/scripts/set_perms.sh,v 1.7 2001/04/15 01:55:32 chuck Exp $
-
-@@ -10,7 +11,7 @@
-
- # Default non-web server user who will own the tree.
- #
--OWNER=root
-+OWNER=www
-
- # Introductory text
- #
-@@ -26,29 +27,30 @@
-
- # Verify that we're at the top of the Horde tree.
- #
--pwd
--echo
--echo -n "Is this directory the top of your Horde installation? [y,N] "
--read RESPONSE
--if [ "$RESPONSE" != "y" -a "$RESPONSE" != "Y" ]; then
-- echo
-- echo -n "Enter your Horde directory: "
-- read DIR
-- if [ "x$DIR" = "x" ]; then
-- echo "Exiting..."
-- exit
-- else
-- cd $DIR
-- fi
--fi
--echo
-+#pwd
-+#echo
-+#echo -n "Is this directory the top of your Horde installation? [y,N] "
-+#read RESPONSE
-+#if [ "$RESPONSE" != "y" -a "$RESPONSE" != "Y" ]; then
-+# echo
-+# echo -n "Enter your Horde directory: "
-+# read DIR
-+# if [ "x$DIR" = "x" ]; then
-+# echo "Exiting..."
-+# exit
-+# else
-+# cd $DIR
-+# fi
-+#fi
-+#echo
-+cd UPDATED_BY_THE_PORT
-
- # Get the web server's group.
- #
--echo -n "Under what group does the web process run? [nobody] "
-+echo -n "Under what group does the web process run? [www] "
- read WEB_GROUP
- if [ "x$WEB_GROUP" = "x" ]; then
-- WEB_GROUP="nobody"
-+ WEB_GROUP="www"
- fi
-
- # Ask before proceeding.
diff --git a/www/horde2/files/patch-ab b/www/horde2/files/patch-ab
deleted file mode 100644
index 342e4bc9a2ee..000000000000
--- a/www/horde2/files/patch-ab
+++ /dev/null
@@ -1,58 +0,0 @@
---- config/horde.php.dist.orig Tue Oct 14 18:52:31 2003
-+++ config/horde.php.dist Mon Mar 8 21:43:56 2004
-@@ -94,7 +94,7 @@
- // What backend should we use for authenticating users to Horde? Valid
- // options are currently 'imap', 'ldap', 'mcal', 'sql', 'ftp', 'smb',
- // 'krb5' and 'radius'.
--$conf['auth']['driver'] = '';
-+$conf['auth']['driver'] = 'imap';
-
- // An array holding any parameters that the Auth object will need to
- // function correctly.
-@@ -159,7 +159,7 @@
- // (meaning use system defaults and don't save any user preferences),
- // 'session' (preferences only persist during the login), 'ldap',
- // and 'sql'.
--$conf['prefs']['driver'] = 'none';
-+$conf['prefs']['driver'] = 'sql';
-
- // Any parameters that the preferences driver needs. This includes
- // database or ldap server, username/password to connect with, etc.
-@@ -168,12 +168,12 @@
- // This is an example configuration for a MySQL preference backend.
- // The SQL script to setup the preference database is placed in
- // horde/scripts/db/prefs.sql.
--// $conf['prefs']['params']['phptype'] = 'mysql';
--// $conf['prefs']['params']['hostspec'] = 'localhost';
--// $conf['prefs']['params']['username'] = 'horde';
--// $conf['prefs']['params']['password'] = '*****';
--// $conf['prefs']['params']['database'] = 'horde';
--// $conf['prefs']['params']['table'] = 'horde_prefs';
-+$conf['prefs']['params']['phptype'] = 'mysql';
-+$conf['prefs']['params']['hostspec'] = 'localhost';
-+$conf['prefs']['params']['username'] = 'hordemgr';
-+$conf['prefs']['params']['password'] = 'hordemgr';
-+$conf['prefs']['params']['database'] = 'horde';
-+$conf['prefs']['params']['table'] = 'horde_prefs';
-
- // This is an example configuration for an LDAP preference backend.
- // The schemas needed for ldap are in horde/scripts/ldap. For more
-@@ -225,7 +225,7 @@
- // want to use the '-oi' argument so that sendmail does not interpret a
- // single '.' in the body of a message as the end of input.
- // $conf['mailer']['params'] = array(
--// 'sendmail_path' => '/usr/lib/sendmail',
-+// 'sendmail_path' => '/usr/sbin/sendmail',
- // 'sendmail_args' => '-oi'
- // );
-
-@@ -350,3 +350,9 @@
- // Should we use DHTML to display a floating menu of Horde appliation
- // links, instead of a frame?
- $conf['menu']['floating_bar'] = false;
-+
-+/* Which users should be treated as administrators (root, super-user)
-+ * by Horde? Example: $conf['auth']['admins'] = array('admin', 'john');
-+ * N.B.: 'admin' is used by Jonah to fetch the news.
-+ */
-+$conf['auth']['admins'] = array('admin');
diff --git a/www/horde2/files/patch-ac b/www/horde2/files/patch-ac
deleted file mode 100644
index a44be2f27a84..000000000000
--- a/www/horde2/files/patch-ac
+++ /dev/null
@@ -1,228 +0,0 @@
---- config/registry.php.dist.orig Tue May 6 14:28:01 2003
-+++ config/registry.php.dist Sat Aug 9 15:09:34 2003
-@@ -20,8 +20,8 @@
- * IMP handle the authentication for Horde. This avoids the
- * "double login" while accessing IMP.
- */
--// $this->registry['auth']['login'] = 'imp';
--// $this->registry['auth']['logout'] = 'imp';
-+//UNCOMMENTWHENINSTIMP$this->registry['auth']['login'] = 'imp';
-+//UNCOMMENTWHENINSTIMP$this->registry['auth']['logout'] = 'imp';
-
- /* mail: Handler for sending mail. */
- $this->registry['mail']['compose'] = 'imp';
-@@ -33,11 +33,11 @@
- $this->registry['contacts']['sources'] = 'turba';
- $this->registry['contacts']['fields'] = 'turba';
- /* These handlers are available with Turba 1.2 */
--// $this->registry['contacts']['add_field'] = 'turba';
--// $this->registry['contacts']['delete_field'] = 'turba';
--// $this->registry['contacts']['get_field'] = 'turba';
--// $this->registry['contacts']['list_field'] = 'turba';
--// $this->registry['contacts']['import_vcard'] = 'turba';
-+//UNCOMMENTWHENINSTTURBA $this->registry['contacts']['add_field'] = 'turba';
-+//UNCOMMENTWHENINSTTURBA $this->registry['contacts']['delete_field'] = 'turba';
-+//UNCOMMENTWHENINSTTURBA $this->registry['contacts']['get_field'] = 'turba';
-+//UNCOMMENTWHENINSTTURBA $this->registry['contacts']['list_field'] = 'turba';
-+//UNCOMMENTWHENINSTTURBA $this->registry['contacts']['import_vcard'] = 'turba';
-
- /* events: Handler for events. */
- $this->registry['events']['show'] = 'kronolith';
-@@ -111,78 +111,95 @@
- 'status' => 'notoolbar'
- );
-
--$this->applications['imp'] = array(
-- 'fileroot' => dirname(__FILE__) . '/../imp',
-- 'webroot' => $this->applications['horde']['webroot'] . '/imp',
-- 'icon' => $this->applications['horde']['webroot'] . '/imp/graphics/imp.gif',
-- 'name' => _("Mail"),
-- 'allow_guests' => false,
-- 'status' => 'inactive'
--);
--
--$this->applications['ingo'] = array(
-- 'fileroot' => dirname(__FILE__) . '/../ingo',
-- 'webroot' => $this->applications['horde']['webroot'] . '/ingo',
-- 'icon' => $this->applications['horde']['webroot'] . '/ingo/graphics/ingo.gif',
-- 'name' => _("Filters"),
-- 'allow_guests' => false,
-- 'status' => 'inactive'
--);
--
--$this->applications['turba'] = array(
-- 'fileroot' => dirname(__FILE__) . '/../turba',
-- 'webroot' => $this->applications['horde']['webroot'] . '/turba',
-- 'icon' => $this->applications['horde']['webroot'] . '/turba/graphics/turba.gif',
-- 'name' => _("Address Book"),
-- 'allow_guests' => false,
-- 'status' => 'inactive'
--);
--
--$this->applications['kronolith'] = array(
-- 'fileroot' => dirname(__FILE__) . '/../kronolith',
-- 'webroot' => $this->applications['horde']['webroot'] . '/kronolith',
-- 'icon' => $this->applications['horde']['webroot'] . '/kronolith/graphics/kronolith.gif',
-- 'name' => _("Calendar"),
-- 'allow_guests' => false,
-- 'status' => 'inactive'
--);
--
--$this->applications['mnemo'] = array(
-- 'fileroot' => dirname(__FILE__) . '/../mnemo',
-- 'webroot' => $this->applications['horde']['webroot'] . '/mnemo',
-- 'icon' => $this->applications['horde']['webroot'] . '/mnemo/graphics/mnemo.gif',
-- 'name' => _("Memos"),
-- 'allow_guests' => false,
-- 'status' => 'inactive'
--);
--
--$this->applications['nag'] = array(
-- 'fileroot' => dirname(__FILE__) . '/../nag',
-- 'webroot' => $this->applications['horde']['webroot'] . '/nag',
-- 'icon' => $this->applications['horde']['webroot'] . '/nag/graphics/nag.gif',
-- 'name' => _("Tasks"),
-- 'allow_guests' => false,
-- 'status' => 'inactive'
--);
--
--$this->applications['chora'] = array(
-- 'fileroot' => dirname(__FILE__) . '/../chora',
-- 'webroot' => $this->applications['horde']['webroot'] . '/chora',
-- 'icon' => $this->applications['horde']['webroot'] . '/chora/graphics/chora.gif',
-- 'name' => _("CVS"),
-- 'allow_guests' => false,
-- 'status' => 'inactive'
--);
--
--$this->applications['klutz'] = array(
-- 'fileroot' => dirname(__FILE__) . '/../klutz',
-- 'webroot' => $this->applications['horde']['webroot'] . '/klutz',
-- 'icon' => $this->applications['horde']['webroot'] . '/klutz/graphics/klutz.gif',
-- 'name' => _("Comics"),
-- 'allow_guests' => false,
-- 'status' => 'inactive'
--);
--
-+//UNCOMMENTWHENINSTIMP$this->applications['imp'] = array(
-+//UNCOMMENTWHENINSTIMP 'fileroot' => dirname(__FILE__) . '/../imp',
-+//UNCOMMENTWHENINSTIMP 'webroot' => $this->applications['horde']['webroot'] . '/imp',
-+//UNCOMMENTWHENINSTIMP 'icon' => $this->applications['horde']['webroot'] . '/imp/graphics/imp.gif',
-+//UNCOMMENTWHENINSTIMP 'name' => _("Mail"),
-+//UNCOMMENTWHENINSTIMP 'allow_guests' => false,
-+//UNCOMMENTWHENINSTIMP 'status' => 'active'
-+//UNCOMMENTWHENINSTIMP);
-+
-+//UNCOMMENTWHENINSTINGO$this->applications['ingo'] = array(
-+//UNCOMMENTWHENINSTINGO 'fileroot' => dirname(__FILE__) . '/../ingo',
-+//UNCOMMENTWHENINSTINGO 'webroot' => $this->applications['horde']['webroot'] . '/ingo',
-+//UNCOMMENTWHENINSTINGO 'icon' => $this->applications['horde']['webroot'] . '/ingo/graphics/ingo.gif',
-+//UNCOMMENTWHENINSTINGO 'name' => _("Filters"),
-+//UNCOMMENTWHENINSTINGO 'allow_guests' => false,
-+//UNCOMMENTWHENINSTINGO 'status' => 'active'
-+//UNCOMMENTWHENINSTINGO);
-+
-+//UNCOMMENTWHENINSTTURBA$this->applications['turba'] = array(
-+//UNCOMMENTWHENINSTTURBA 'fileroot' => dirname(__FILE__) . '/../turba',
-+//UNCOMMENTWHENINSTTURBA 'webroot' => $this->applications['horde']['webroot'] . '/turba',
-+//UNCOMMENTWHENINSTTURBA 'icon' => $this->applications['horde']['webroot'] . '/turba/graphics/turba.gif',
-+//UNCOMMENTWHENINSTTURBA 'name' => _("Address Book"),
-+//UNCOMMENTWHENINSTTURBA 'allow_guests' => false,
-+//UNCOMMENTWHENINSTTURBA 'status' => 'active'
-+//UNCOMMENTWHENINSTTURBA);
-+
-+//UNCOMMENTWHENINSTKRONOLITH$this->applications['kronolith'] = array(
-+//UNCOMMENTWHENINSTKRONOLITH 'fileroot' => dirname(__FILE__) . '/../kronolith',
-+//UNCOMMENTWHENINSTKRONOLITH 'webroot' => $this->applications['horde']['webroot'] . '/kronolith',
-+//UNCOMMENTWHENINSTKRONOLITH 'icon' => $this->applications['horde']['webroot'] . '/kronolith/graphics/kronolith.gif',
-+//UNCOMMENTWHENINSTKRONOLITH 'name' => _("Calendar"),
-+//UNCOMMENTWHENINSTKRONOLITH 'allow_guests' => false,
-+//UNCOMMENTWHENINSTKRONOLITH 'status' => 'active'
-+//UNCOMMENTWHENINSTKRONOLITH);
-+
-+//UNCOMMENTWHENINSTMNEMO$this->applications['mnemo'] = array(
-+//UNCOMMENTWHENINSTMNEMO 'fileroot' => dirname(__FILE__) . '/../mnemo',
-+//UNCOMMENTWHENINSTMNEMO 'webroot' => $this->applications['horde']['webroot'] . '/mnemo',
-+//UNCOMMENTWHENINSTMNEMO 'icon' => $this->applications['horde']['webroot'] . '/mnemo/graphics/mnemo.gif',
-+//UNCOMMENTWHENINSTMNEMO 'name' => _("Memos"),
-+//UNCOMMENTWHENINSTMNEMO 'allow_guests' => false,
-+//UNCOMMENTWHENINSTMNEMO 'status' => 'active'
-+//UNCOMMENTWHENINSTMNEMO);
-+
-+//UNCOMMENTWHENINSTNAG$this->applications['nag'] = array(
-+//UNCOMMENTWHENINSTNAG 'fileroot' => dirname(__FILE__) . '/../nag',
-+//UNCOMMENTWHENINSTNAG 'webroot' => $this->applications['horde']['webroot'] . '/nag',
-+//UNCOMMENTWHENINSTNAG 'icon' => $this->applications['horde']['webroot'] . '/nag/graphics/nag.gif',
-+//UNCOMMENTWHENINSTNAG 'name' => _("Tasks"),
-+//UNCOMMENTWHENINSTNAG 'allow_guests' => false,
-+//UNCOMMENTWHENINSTNAG 'status' => 'active'
-+//UNCOMMENTWHENINSTNAG);
-+
-+//UNCOMMENTWHENINSTCHORA$this->applications['chora'] = array(
-+//UNCOMMENTWHENINSTCHORA 'fileroot' => dirname(__FILE__) . '/../chora',
-+//UNCOMMENTWHENINSTCHORA 'webroot' => $this->applications['horde']['webroot'] . '/chora',
-+//UNCOMMENTWHENINSTCHORA 'icon' => $this->applications['horde']['webroot'] . '/chora/graphics/chora.gif',
-+//UNCOMMENTWHENINSTCHORA 'name' => _("CVS"),
-+//UNCOMMENTWHENINSTCHORA 'allow_guests' => false,
-+//UNCOMMENTWHENINSTCHORA 'status' => 'active'
-+//UNCOMMENTWHENINSTCHORA);
-+
-+//UNCOMMENTWHENINSTKLUTZ$this->applications['klutz'] = array(
-+//UNCOMMENTWHENINSTKLUTZ 'fileroot' => dirname(__FILE__) . '/../klutz',
-+//UNCOMMENTWHENINSTKLUTZ 'webroot' => $this->applications['horde']['webroot'] . '/klutz',
-+//UNCOMMENTWHENINSTKLUTZ 'icon' => $this->applications['horde']['webroot'] . '/klutz/graphics/klutz.gif',
-+//UNCOMMENTWHENINSTKLUTZ 'name' => _("Comics"),
-+//UNCOMMENTWHENINSTKLUTZ 'allow_guests' => false,
-+//UNCOMMENTWHENINSTKLUTZ 'status' => 'active'
-+//UNCOMMENTWHENINSTKLUTZ);
-+
-+//UNCOMMENTWHENINSTNIC$this->applications['nic'] = array(
-+//UNCOMMENTWHENINSTNIC 'fileroot' => dirname(__FILE__) . '/../nic',
-+//UNCOMMENTWHENINSTNIC 'webroot' => '/horde/nic',
-+//UNCOMMENTWHENINSTNIC 'icon' => '/horde/nic/graphics/nic.gif',
-+//UNCOMMENTWHENINSTNIC 'name' => _("Network"),
-+//UNCOMMENTWHENINSTNIC 'allow_guests' => false,
-+//UNCOMMENTWHENINSTNIC 'status' => 'active'
-+//UNCOMMENTWHENINSTNIC);
-+
-+//UNCOMMENTWHENINSTJONAH$this->applications['jonah'] = array(
-+//UNCOMMENTWHENINSTJONAH 'fileroot' => dirname(__FILE__) . '/../jonah',
-+//UNCOMMENTWHENINSTJONAH 'webroot' => '/horde/jonah',
-+//UNCOMMENTWHENINSTJONAH 'icon' => '/horde/jonah/graphics/jonah.gif',
-+//UNCOMMENTWHENINSTJONAH 'name' => _("Headlines"),
-+//UNCOMMENTWHENINSTJONAH 'allow_guests' => true,
-+//UNCOMMENTWHENINSTJONAH 'status' => 'active'
-+//UNCOMMENTWHENINSTJONAH);
-
- /**
- * Service registry
-@@ -326,6 +343,29 @@
- $this->services['nag']['horde']['summary'] = array(
- 'file' => '%application%/lib/api.php',
- 'function' => 'nagSummary',
-+ 'args' => array(),
-+ 'type' => 'string'
-+);
-+$this->services['nic']['net']['finger'] = array(
-+ 'link' => "%application%/finger.php?address=|address|"
-+);
-+
-+
-+$this->services['whups']['projects']['list'] = array(
-+ 'file' => '%application%/lib/api.php',
-+ 'function' => 'whupsListModules',
-+ 'args' => array(),
-+ 'type' => 'array'
-+);
-+$this->services['whups']['projects']['add'] = array(
-+ 'file' => '%application%/lib/api.php',
-+ 'function' => 'whupsAddModule',
-+ 'args' => array('name'),
-+ 'type' => 'integer'
-+);
-+$this->services['whups']['horde']['summary'] = array(
-+ 'file' => '%application%/lib/api.php',
-+ 'function' => 'whupsSummary',
- 'args' => array(),
- 'type' => 'string'
- );
diff --git a/www/horde2/files/patch-mime_drivers.php.dist b/www/horde2/files/patch-mime_drivers.php.dist
deleted file mode 100644
index 836707d107fc..000000000000
--- a/www/horde2/files/patch-mime_drivers.php.dist
+++ /dev/null
@@ -1,180 +0,0 @@
---- config/mime_drivers.php.dist.orig Thu Nov 14 21:04:34 2002
-+++ config/mime_drivers.php.dist Thu Jan 9 22:06:37 2003
-@@ -22,8 +22,12 @@
-
- $mime_drivers_map['horde']['registered'] = array(
- 'php', 'tgz', 'vcard', 'enriched', 'images'
-- // ,'msword', 'msexcel', 'mspowerpoint'
-- // ,'enscript', 'rar', 'zip', 'rpm', 'deb'
-+ //UNCOMMENTIFWV ,'msword'
-+ //UNCOMMENTIFXL , 'msexcel', 'mspowerpoint'
-+ //UNCOMMENTWHENINSTCHORA ,'enscript'
-+ //UNCOMMENTIFRAR , 'rar'
-+ //UNCOMMENTIFZIP , 'zip'
-+ //, 'rpm', 'deb'
- );
-
-
-@@ -111,22 +115,22 @@
- */
-
- /* Location of the enscript binary. */
--// $mime_drivers['horde']['enscript']['location'] = '/usr/bin/enscript';
--// $mime_drivers['horde']['enscript']['inline'] = false;
--// $mime_drivers['horde']['enscript']['handles'] = array(
--// 'text/html', 'x-extension/pl', 'x-extension/c',
--// 'text/xml', 'application/x-sh', 'application/x-javascript',
--// 'x-extension/java', 'x-extension/h', 'x-extension/cpp',
--// 'x-extension/vhd', 'x-extension/vhdl', 'x-extension/sql',
--// 'x-extension/vb', 'x-extension/vba', 'x-extension/el');
--// $mime_drivers['horde']['enscript']['icons'] = array(
--// 'default' => 'text.gif',
--// 'text/html' => 'html.gif',
--// 'text/xml' => 'xml.gif',
--// 'x-extension/c' => 'source-c.gif',
--// 'x-extension/h' => 'source-h.gif',
--// 'x-extension/java' => 'source-java.gif',
--// 'application/x-javascript' => 'script-js.gif');
-+//UNCOMMENTWHENINSTCHORA$mime_drivers['horde']['enscript']['location'] = '%%LOCALBASE%%/bin/enscript';
-+//UNCOMMENTWHENINSTCHORA$mime_drivers['horde']['enscript']['inline'] = false;
-+//UNCOMMENTWHENINSTCHORA$mime_drivers['horde']['enscript']['handles'] = array(
-+//UNCOMMENTWHENINSTCHORA 'text/html', 'x-extension/pl', 'x-extension/c',
-+//UNCOMMENTWHENINSTCHORA 'text/xml', 'application/x-sh', 'application/x-javascript',
-+//UNCOMMENTWHENINSTCHORA 'x-extension/java', 'x-extension/h', 'x-extension/cpp',
-+//UNCOMMENTWHENINSTCHORA 'x-extension/vhd', 'x-extension/vhdl', 'x-extension/sql',
-+//UNCOMMENTWHENINSTCHORA 'x-extension/vb', 'x-extension/vba', 'x-extension/el');
-+//UNCOMMENTWHENINSTCHORA$mime_drivers['horde']['enscript']['icons'] = array(
-+//UNCOMMENTWHENINSTCHORA 'default' => 'text.gif',
-+//UNCOMMENTWHENINSTCHORA 'text/html' => 'html.gif',
-+//UNCOMMENTWHENINSTCHORA 'text/xml' => 'xml.gif',
-+//UNCOMMENTWHENINSTCHORA 'x-extension/c' => 'source-c.gif',
-+//UNCOMMENTWHENINSTCHORA 'x-extension/h' => 'source-h.gif',
-+//UNCOMMENTWHENINSTCHORA 'x-extension/java' => 'source-java.gif',
-+//UNCOMMENTWHENINSTCHORA 'application/x-javascript' => 'script-js.gif');
-
-
- /**
-@@ -134,7 +138,7 @@
- */
-
- /* Location of the tar binary. */
--$mime_drivers['horde']['tgz']['location'] = '/bin/tar';
-+$mime_drivers['horde']['tgz']['location'] = '/usr/bin/tar';
- $mime_drivers['horde']['tgz']['inline'] = true;
- $mime_drivers['horde']['tgz']['handles'] = array(
- 'x-extension/tgz',
-@@ -152,14 +156,14 @@
- */
-
- /* Location of the zipinfo binary. */
--// $mime_drivers['horde']['zip']['location'] = '/usr/bin/zipinfo';
--// $mime_drivers['horde']['zip']['inline'] = true;
--// $mime_drivers['horde']['zip']['handles'] = array(
--// 'x-extension/zip',
--// 'application/x-compressed',
--// 'application/x-zip-compressed');
--// $mime_drivers['horde']['zip']['icons'] = array(
--// 'default' => 'compressed.gif');
-+//UNCOMMENTIFZIP $mime_drivers['horde']['zip']['location'] = '%%LOCALBASE%%/bin/zipinfo';
-+//UNCOMMENTIFZIP $mime_drivers['horde']['zip']['inline'] = true;
-+//UNCOMMENTIFZIP $mime_drivers['horde']['zip']['handles'] = array(
-+//UNCOMMENTIFZIP 'x-extension/zip',
-+//UNCOMMENTIFZIP 'application/x-compressed',
-+//UNCOMMENTIFZIP 'application/x-zip-compressed');
-+//UNCOMMENTIFZIP $mime_drivers['horde']['zip']['icons'] = array(
-+//UNCOMMENTIFZIP 'default' => 'compressed.gif');
-
-
- /**
-@@ -168,13 +172,13 @@
- */
-
- /* Location of the rar binary. */
--// $mime_drivers['horde']['rar']['location'] = '/usr/bin/rar';
--// $mime_drivers['horde']['rar']['inline'] = true;
--// $mime_drivers['horde']['rar']['handles'] = array(
--// 'x-extension/rar',
--// 'application/x-rar-compressed');
--// $mime_drivers['horde']['rar']['icons'] = array(
--// 'default' => 'compressed.gif');
-+//UNCOMMENTIFRAR $mime_drivers['horde']['rar']['location'] = '%%LOCALBASE%%/bin/rar';
-+//UNCOMMENTIFRAR $mime_drivers['horde']['rar']['inline'] = true;
-+//UNCOMMENTIFRAR $mime_drivers['horde']['rar']['handles'] = array(
-+//UNCOMMENTIFRAR 'x-extension/rar',
-+//UNCOMMENTIFRAR 'application/x-rar-compressed');
-+//UNCOMMENTIFRAR $mime_drivers['horde']['rar']['icons'] = array(
-+//UNCOMMENTIFRAR 'default' => 'compressed.gif');
-
-
- /**
-@@ -184,15 +188,15 @@
- */
-
- /* Location of the wvHtml binary. */
--// $mime_drivers['horde']['msword']['location'] = '/usr/bin/wvHtml';
--// $mime_drivers['horde']['msword']['inline'] = true;
--// $mime_drivers['horde']['msword']['handles'] = array(
--// 'application/msword',
--// 'text/rtf',
--// 'x-extension/doc',
--// 'x-extension/rtf');
--// $mime_drivers['horde']['msword']['icons'] = array(
--// 'default' => 'msword.gif');
-+//UNCOMMENTIFWV $mime_drivers['horde']['msword']['location'] = '%%LOCALBASE%%/bin/wvHtml';
-+//UNCOMMENTIFWV $mime_drivers['horde']['msword']['inline'] = true;
-+//UNCOMMENTIFWV $mime_drivers['horde']['msword']['handles'] = array(
-+//UNCOMMENTIFWV 'application/msword',
-+//UNCOMMENTIFWV 'text/rtf',
-+//UNCOMMENTIFWV 'x-extension/doc',
-+//UNCOMMENTIFWV 'x-extension/rtf');
-+//UNCOMMENTIFWV $mime_drivers['horde']['msword']['icons'] = array(
-+//UNCOMMENTIFWV 'default' => 'msword.gif');
-
-
- /**
-@@ -202,14 +206,14 @@
- */
-
- /* Location of the xlhtml binary. */
--// $mime_drivers['horde']['msexcel']['location'] = '/usr/local/bin/xlhtml';
--// $mime_drivers['horde']['msexcel']['inline'] = false;
--// $mime_drivers['horde']['msexcel']['handles'] = array(
--// 'application/vnd.ms-excel',
--// 'application/msexcel',
--// 'x-extension/xls');
--// $mime_drivers['horde']['msexcel']['icons'] = array(
--// 'default' => 'msexcel.gif');
-+//UNCOMMENTIFXL $mime_drivers['horde']['msexcel']['location'] = '%%LOCALBASE%%/bin/xlhtml';
-+//UNCOMMENTIFXL $mime_drivers['horde']['msexcel']['inline'] = false;
-+//UNCOMMENTIFXL $mime_drivers['horde']['msexcel']['handles'] = array(
-+//UNCOMMENTIFXL 'application/vnd.ms-excel',
-+//UNCOMMENTIFXL 'application/msexcel',
-+//UNCOMMENTIFXL 'x-extension/xls');
-+//UNCOMMENTIFXL $mime_drivers['horde']['msexcel']['icons'] = array(
-+//UNCOMMENTIFXL 'default' => 'msexcel.gif');
-
-
- /**
-@@ -220,14 +224,14 @@
- */
-
- /* Location of the ppthtml binary. */
--// $mime_drivers['horde']['mspowerpoint']['location'] = '/usr/local/bin/ppthtml';
--// $mime_drivers['horde']['mspowerpoint']['inline'] = false;
--// $mime_drivers['horde']['mspowerpoint']['handles'] = array(
--// 'application/vnd.ms-powerpoint',
--// 'application/mspowerpoint',
--// 'x-extension/ppt');
--// $mime_drivers['horde']['mspowerpoint']['icons'] = array(
--// 'default' => 'mspowerpoint.gif');
-+//UNCOMMENTIFXL $mime_drivers['horde']['mspowerpoint']['location'] = '%%LOCALBASE%%/bin/ppthtml';
-+//UNCOMMENTIFXL $mime_drivers['horde']['mspowerpoint']['inline'] = false;
-+//UNCOMMENTIFXL $mime_drivers['horde']['mspowerpoint']['handles'] = array(
-+//UNCOMMENTIFXL 'application/vnd.ms-powerpoint',
-+//UNCOMMENTIFXL 'application/mspowerpoint',
-+//UNCOMMENTIFXL 'x-extension/ppt');
-+//UNCOMMENTIFXL $mime_drivers['horde']['mspowerpoint']['icons'] = array(
-+//UNCOMMENTIFXL 'default' => 'mspowerpoint.gif');
-
-
- /**
diff --git a/www/horde2/files/patch-po_translation.php b/www/horde2/files/patch-po_translation.php
deleted file mode 100644
index 045891903631..000000000000
--- a/www/horde2/files/patch-po_translation.php
+++ /dev/null
@@ -1,8 +0,0 @@
---- po/translation.php.orig Tue Jan 21 16:05:36 2003
-+++ po/translation.php Wed Jan 29 23:00:27 2003
-@@ -1,4 +1,4 @@
--#!/usr/bin/php -q
-+#!/usr/local/bin/php -q
- <?php
- /**
- * Translation helper application for the Horde framework.
diff --git a/www/horde2/files/patch-scripts_db_README b/www/horde2/files/patch-scripts_db_README
deleted file mode 100644
index bf560dc37ff0..000000000000
--- a/www/horde2/files/patch-scripts_db_README
+++ /dev/null
@@ -1,11 +0,0 @@
---- scripts/db/README.orig Wed Jul 17 22:19:29 2002
-+++ scripts/db/README Wed Jan 29 23:10:35 2003
-@@ -70,7 +70,7 @@
-
- PostgreSQL
- ~~~~~~~~~~
--# su - postgres (or whatever your database runs as... usually postgres)
-+# su - pgsql (or whatever your database runs as... usually pgsql)
- $ psql -d template1 -f pgsql_create.sql
-
- This script will create a "horde" database and a "horde" user. You
diff --git a/www/horde2/pkg-deinstall b/www/horde2/pkg-deinstall
deleted file mode 100644
index 82ef7bf73586..000000000000
--- a/www/horde2/pkg-deinstall
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# Try to restore httpd.conf when deinstalling Horde
-
-if [ x$2 != xDEINSTALL ]; then
- exit
-fi
-
-if [ -f ${PKG_PREFIX}/etc/apache/httpd.conf.beforeHorde ] ; then
- echo "Restoring httpd.conf..."
- cp ${PKG_PREFIX}/etc/apache/httpd.conf ${PKG_PREFIX}/etc/apache/httpd.conf.deinstHorde
- sed -i.tmp -e "s:Include ${PKG_PREFIX}/etc/horde:# Include ${PKG_PREFIX}/etc/horde:g" \
- ${PKG_PREFIX}/etc/apache/httpd.conf
- rm ${PKG_PREFIX}/etc/apache/httpd.conf.tmp
-fi
-
-# Backup Horde config files, if needed.
-
-if [ -z "${PACKAGE_BUILDING}" ]; then
- for cf in `ls ${PKG_PREFIX}/www/horde/config/*php`; 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/www/horde2/pkg-descr b/www/horde2/pkg-descr
deleted file mode 100644
index d7dc8382d921..000000000000
--- a/www/horde2/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-Horde is a framework used by several applications written in PHP4.
-
-Horde is used by these ports: mail/imp3, mail/turba, devel/chora,
-deskutils/kronolith, deskutils/nag, www/jonah, net/nic, devel/whups,
-and deskutils/mnemo.
-
-WWW: http://www.horde.org/
diff --git a/www/horde2/pkg-message b/www/horde2/pkg-message
deleted file mode 100644
index d4d255b32d8a..000000000000
--- a/www/horde2/pkg-message
+++ /dev/null
@@ -1,33 +0,0 @@
-************************************************************************
-Horde has been installed in %%HORDEDIR%% with your blank
-configuration files.
-
-You have to update the file %%HORDEDIR%%/config/horde.php:
-select a backend for authenticating users at the line
-conf['auth']['driver'] of the section 'Horde Authentication'
-(tip: if you plan to install imp, you should have an IMAP server,
-and you may select 'imap').
-Select a log driver; if you keep 'file', do not forget to add a line
-in /etc/newsyslog.conf.
-Then select and configure a preferences driver.
-
-If you want Horde to access a database, you have to run the
-appropriate scripts located in %%HORDEDIR%%/scripts/db.
-
-It is recommended that you change the password of the 'hordemgr'
-user used to connect to the horde database.
-Horde is setup by default to access MySQL.
-
-Your %%APACHE_CONF%% has been updated,
-you have to restart Apache.
-
-When everything is OK, you should be able to access Horde from
-<URL:http://localhost/horde/>.
-(If <URL:http://localhost/horde/> does not run, but
- <URL:http://localhost/horde/index.php> is OK, then you have
- to define index.php as a DirectoryIndex in %%APACHE_CONF%%.)
-
-There is a testing script at <URL:http://localhost/horde/test.php>.
-
-The script horde_set_perms.sh has been installed in %%HORDESBIN%%.
-************************************************************************
diff --git a/www/horde2/pkg-plist b/www/horde2/pkg-plist
deleted file mode 100644
index 847847e73423..000000000000
--- a/www/horde2/pkg-plist
+++ /dev/null
@@ -1,456 +0,0 @@
-%%HORDEDIR%%/config/.htaccess
-%%HORDEDIR%%/config/horde.php
-%%HORDEDIR%%/config/horde.php.dist
-%%HORDEDIR%%/config/html.php
-%%HORDEDIR%%/config/html.php.dist
-%%HORDEDIR%%/config/lang.php
-%%HORDEDIR%%/config/lang.php.dist
-%%HORDEDIR%%/config/mime_drivers.php
-%%HORDEDIR%%/config/mime_drivers.php.dist
-%%HORDEDIR%%/config/mime_mapping.php
-%%HORDEDIR%%/config/mime_mapping.php.dist
-%%HORDEDIR%%/config/motd.php
-%%HORDEDIR%%/config/motd.php.dist
-%%HORDEDIR%%/config/prefs.php
-%%HORDEDIR%%/config/prefs.php.dist
-%%HORDEDIR%%/config/registry.php
-%%HORDEDIR%%/config/registry.php.dist
-%%HORDEDIR%%/css.php
-%%HORDEDIR%%/graphics/alerts/error.gif
-%%HORDEDIR%%/graphics/alerts/message.gif
-%%HORDEDIR%%/graphics/alerts/success.gif
-%%HORDEDIR%%/graphics/alerts/warning.gif
-%%HORDEDIR%%/graphics/data.gif
-%%HORDEDIR%%/graphics/favicon.ico
-%%HORDEDIR%%/graphics/help.gif
-%%HORDEDIR%%/graphics/home.gif
-%%HORDEDIR%%/graphics/keyboard.gif
-%%HORDEDIR%%/graphics/login.gif
-%%HORDEDIR%%/graphics/logout.gif
-%%HORDEDIR%%/graphics/mime/audio.gif
-%%HORDEDIR%%/graphics/mime/binary.gif
-%%HORDEDIR%%/graphics/mime/compressed.gif
-%%HORDEDIR%%/graphics/mime/csv.gif
-%%HORDEDIR%%/graphics/mime/deb.gif
-%%HORDEDIR%%/graphics/mime/encryption.gif
-%%HORDEDIR%%/graphics/mime/executable.gif
-%%HORDEDIR%%/graphics/mime/html.gif
-%%HORDEDIR%%/graphics/mime/image.gif
-%%HORDEDIR%%/graphics/mime/inf.gif
-%%HORDEDIR%%/graphics/mime/mail.gif
-%%HORDEDIR%%/graphics/mime/makefile.gif
-%%HORDEDIR%%/graphics/mime/msexcel.gif
-%%HORDEDIR%%/graphics/mime/msi.gif
-%%HORDEDIR%%/graphics/mime/msp.gif
-%%HORDEDIR%%/graphics/mime/mspowerpoint.gif
-%%HORDEDIR%%/graphics/mime/msword.gif
-%%HORDEDIR%%/graphics/mime/pdf.gif
-%%HORDEDIR%%/graphics/mime/php.gif
-%%HORDEDIR%%/graphics/mime/readme.gif
-%%HORDEDIR%%/graphics/mime/rpm.gif
-%%HORDEDIR%%/graphics/mime/script-asa.gif
-%%HORDEDIR%%/graphics/mime/script-asp.gif
-%%HORDEDIR%%/graphics/mime/script-js.gif
-%%HORDEDIR%%/graphics/mime/setup.gif
-%%HORDEDIR%%/graphics/mime/signed.gif
-%%HORDEDIR%%/graphics/mime/source-c.gif
-%%HORDEDIR%%/graphics/mime/source-h.gif
-%%HORDEDIR%%/graphics/mime/source-java.gif
-%%HORDEDIR%%/graphics/mime/text.gif
-%%HORDEDIR%%/graphics/mime/unknown.gif
-%%HORDEDIR%%/graphics/mime/vcard.gif
-%%HORDEDIR%%/graphics/mime/video.gif
-%%HORDEDIR%%/graphics/mime/xml.gif
-%%HORDEDIR%%/graphics/prefs.gif
-%%HORDEDIR%%/graphics/problem.gif
-%%HORDEDIR%%/graphics/tree/blank.gif
-%%HORDEDIR%%/graphics/tree/join.gif
-%%HORDEDIR%%/graphics/tree/joinbottom.gif
-%%HORDEDIR%%/graphics/tree/line.gif
-%%HORDEDIR%%/graphics/tree/minus.gif
-%%HORDEDIR%%/graphics/tree/minusbottom.gif
-%%HORDEDIR%%/graphics/tree/minusonly.gif
-%%HORDEDIR%%/graphics/tree/minustop.gif
-%%HORDEDIR%%/graphics/tree/plus.gif
-%%HORDEDIR%%/graphics/tree/plusbottom.gif
-%%HORDEDIR%%/graphics/tree/plusonly.gif
-%%HORDEDIR%%/graphics/tree/plustop.gif
-%%HORDEDIR%%/help.php
-%%HORDEDIR%%/index.php
-%%HORDEDIR%%/javascript.php
-%%HORDEDIR%%/lib/.htaccess
-%%HORDEDIR%%/lib/Auth.php
-%%HORDEDIR%%/lib/Auth/auto.php
-%%HORDEDIR%%/lib/Auth/ftp.php
-%%HORDEDIR%%/lib/Auth/imap.php
-%%HORDEDIR%%/lib/Auth/krb5.php
-%%HORDEDIR%%/lib/Auth/ldap.php
-%%HORDEDIR%%/lib/Auth/mcal.php
-%%HORDEDIR%%/lib/Auth/radius.php
-%%HORDEDIR%%/lib/Auth/sql.php
-%%HORDEDIR%%/lib/Auth/smb.php
-%%HORDEDIR%%/lib/Browser.php
-%%HORDEDIR%%/lib/Cache.php
-%%HORDEDIR%%/lib/Cache/file.php
-%%HORDEDIR%%/lib/Category.php
-%%HORDEDIR%%/lib/CategoryTree.php
-%%HORDEDIR%%/lib/Category/sql.php
-%%HORDEDIR%%/lib/Cipher.php
-%%HORDEDIR%%/lib/Cipher/BlockMode.php
-%%HORDEDIR%%/lib/Cipher/BlockMode/cbc.php
-%%HORDEDIR%%/lib/Cipher/BlockMode/cfb64.php
-%%HORDEDIR%%/lib/Cipher/BlockMode/ecb.php
-%%HORDEDIR%%/lib/Cipher/BlockMode/ofb64.php
-%%HORDEDIR%%/lib/Cipher/blowfish.php
-%%HORDEDIR%%/lib/Cipher/cast128.php
-%%HORDEDIR%%/lib/Cipher/rc2.php
-%%HORDEDIR%%/lib/Data.php
-%%HORDEDIR%%/lib/Group.php
-%%HORDEDIR%%/lib/Help.php
-%%HORDEDIR%%/lib/Horde.php
-%%HORDEDIR%%/lib/Identity.php
-%%HORDEDIR%%/lib/Image.php
-%%HORDEDIR%%/lib/Lang.php
-%%HORDEDIR%%/lib/MIME.php
-%%HORDEDIR%%/lib/MIME/Magic.php
-%%HORDEDIR%%/lib/MIME/Message.php
-%%HORDEDIR%%/lib/MIME/Part.php
-%%HORDEDIR%%/lib/MIME/Structure.php
-%%HORDEDIR%%/lib/MIME/Viewer.php
-%%HORDEDIR%%/lib/MIME/Viewer/deb.php
-%%HORDEDIR%%/lib/MIME/Viewer/default.php
-%%HORDEDIR%%/lib/MIME/Viewer/enriched.php
-%%HORDEDIR%%/lib/MIME/Viewer/enscript.php
-%%HORDEDIR%%/lib/MIME/Viewer/images.php
-%%HORDEDIR%%/lib/MIME/Viewer/msexcel.php
-%%HORDEDIR%%/lib/MIME/Viewer/mspowerpoint.php
-%%HORDEDIR%%/lib/MIME/Viewer/msword.php
-%%HORDEDIR%%/lib/MIME/Viewer/php.php
-%%HORDEDIR%%/lib/MIME/Viewer/rar.php
-%%HORDEDIR%%/lib/MIME/Viewer/rpm.php
-%%HORDEDIR%%/lib/MIME/Viewer/tgz.php
-%%HORDEDIR%%/lib/MIME/Viewer/vcard.php
-%%HORDEDIR%%/lib/MIME/Viewer/zip.php
-%%HORDEDIR%%/lib/Maintenance.php
-%%HORDEDIR%%/lib/Menu.php
-%%HORDEDIR%%/lib/Notification/status.php
-%%HORDEDIR%%/lib/Notification.php
-%%HORDEDIR%%/lib/Perms.php
-%%HORDEDIR%%/lib/Prefs.php
-%%HORDEDIR%%/lib/PrefsUI.php
-%%HORDEDIR%%/lib/Prefs/UI.php
-%%HORDEDIR%%/lib/Prefs/ldap.php
-%%HORDEDIR%%/lib/Prefs/session.php
-%%HORDEDIR%%/lib/Prefs/sql.php
-%%HORDEDIR%%/lib/Registry.php
-%%HORDEDIR%%/lib/Secret.php
-%%HORDEDIR%%/lib/Serialize.php
-%%HORDEDIR%%/lib/SessionCache.php
-%%HORDEDIR%%/lib/SessionHandler/dbm.php
-%%HORDEDIR%%/lib/SessionHandler/mysql.php
-%%HORDEDIR%%/lib/SessionHandler/pgsql.php
-%%HORDEDIR%%/lib/SessionHandler/sapdb.php
-%%HORDEDIR%%/lib/SessionHandler/sql.php
-%%HORDEDIR%%/lib/SessionHandler.php
-%%HORDEDIR%%/lib/SQL.php
-%%HORDEDIR%%/lib/Text.php
-%%HORDEDIR%%/lib/Token.php
-%%HORDEDIR%%/lib/Token/file.php
-%%HORDEDIR%%/lib/Token/sql.php
-%%HORDEDIR%%/lib/VFS.php
-%%HORDEDIR%%/lib/VFS/ListItem.php
-%%HORDEDIR%%/lib/VFS/Object.php
-%%HORDEDIR%%/lib/VFS/file.php
-%%HORDEDIR%%/lib/VFS/ftp.php
-%%HORDEDIR%%/lib/VFS/musql.php
-%%HORDEDIR%%/lib/VFS/sql.php
-%%HORDEDIR%%/lib/VFS/sql_file.php
-%%HORDEDIR%%/lib/base.php
-%%HORDEDIR%%/lib/version.php
-%%HORDEDIR%%/locale/.htaccess
-%%HORDEDIR%%/locale/ar_SY/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/bg_BG/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/da_DK/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/de_DE/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/el_GR/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/en_US/help.xml
-%%HORDEDIR%%/locale/es_ES/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/et_EE/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/fi_FI/help.xml
-%%HORDEDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/id_ID/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/it_IT/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/pl_PL/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/pl_PL/help.xml
-%%HORDEDIR%%/locale/pt_BR/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo
-%%HORDEDIR%%/login.php
-%%HORDEDIR%%/maintenance.php
-%%HORDEDIR%%/menu.php
-%%HORDEDIR%%/navbar.php
-%%HORDEDIR%%/po/.htaccess
-%%HORDEDIR%%/po/Makefile
-%%HORDEDIR%%/po/README
-%%HORDEDIR%%/po/wintokoi.pl
-%%HORDEDIR%%/po/ar_SY.po
-%%HORDEDIR%%/po/bg_BG.po
-%%HORDEDIR%%/po/ca_ES.po
-%%HORDEDIR%%/po/cs_CZ.po
-%%HORDEDIR%%/po/da_DK.po
-%%HORDEDIR%%/po/de_DE.po
-%%HORDEDIR%%/po/el_GR.po
-%%HORDEDIR%%/po/es_ES.po
-%%HORDEDIR%%/po/et_EE.po
-%%HORDEDIR%%/po/extract.pl
-%%HORDEDIR%%/po/fi_FI.po
-%%HORDEDIR%%/po/fr_FR.po
-%%HORDEDIR%%/po/gl_ES.po
-%%HORDEDIR%%/po/hu_HU.po
-%%HORDEDIR%%/po/id_ID.po
-%%HORDEDIR%%/po/it_IT.po
-%%HORDEDIR%%/po/horde.pot
-%%HORDEDIR%%/po/ja_JP.po
-%%HORDEDIR%%/po/ko_KR.po
-%%HORDEDIR%%/po/lt_LT.po
-%%HORDEDIR%%/po/lv_LV.po
-%%HORDEDIR%%/po/mk_MK.po
-%%HORDEDIR%%/po/nl_NL.po
-%%HORDEDIR%%/po/nb_NO.po
-%%HORDEDIR%%/po/nn_NO.po
-%%HORDEDIR%%/po/pl_PL.po
-%%HORDEDIR%%/po/pt_BR.po
-%%HORDEDIR%%/po/pt_PT.po
-%%HORDEDIR%%/po/ro_RO.po
-%%HORDEDIR%%/po/ru_RU.po
-%%HORDEDIR%%/po/ru_RU.KOI8-R.po
-%%HORDEDIR%%/po/shtool
-%%HORDEDIR%%/po/sk_SK.po
-%%HORDEDIR%%/po/sl_SI.po
-%%HORDEDIR%%/po/sv_SE.po
-%%HORDEDIR%%/po/translation.php
-%%HORDEDIR%%/po/uk_UA.po
-%%HORDEDIR%%/po/xgettext.sh
-%%HORDEDIR%%/po/zh_CN.po
-%%HORDEDIR%%/po/zh_TW.po
-%%HORDEDIR%%/prefs.php
-%%HORDEDIR%%/problem.php
-%%HORDEDIR%%/scripts/.htaccess
-%%HORDEDIR%%/scripts/SCRIPTS
-%%HORDEDIR%%/scripts/db/README
-%%HORDEDIR%%/scripts/db/auth.sql
-%%HORDEDIR%%/scripts/db/category.sql
-%%HORDEDIR%%/scripts/db/category_mysql.sql
-%%HORDEDIR%%/scripts/db/mysql_create.sql
-%%HORDEDIR%%/scripts/db/mysql_drop.sql
-%%HORDEDIR%%/scripts/db/pgsql_create.sql
-%%HORDEDIR%%/scripts/db/pgsql_drop.sql
-%%HORDEDIR%%/scripts/db/prefs.sql
-%%HORDEDIR%%/scripts/db/sessionhandler.sql
-%%HORDEDIR%%/scripts/db/sessionhandler_oracle.sql
-%%HORDEDIR%%/scripts/db/sessionhandler_pgsql.sql
-%%HORDEDIR%%/scripts/db/sessionhandler_sapdb.sql
-%%HORDEDIR%%/scripts/db/vfs.sql
-%%HORDEDIR%%/scripts/horde-rsync.sh
-%%HORDEDIR%%/scripts/ldap/horde.schema
-%%HORDEDIR%%/scripts/mime_mapping/Makefile
-%%HORDEDIR%%/scripts/mime_mapping/convert.pl
-%%HORDEDIR%%/scripts/mime_mapping/mime.types
-%%HORDEDIR%%/scripts/mime_mapping/mime.types.horde
-%%HORDEDIR%%/scripts/set_perms.sh
-%%HORDEDIR%%/status.php
-%%HORDEDIR%%/templates/.htaccess
-%%HORDEDIR%%/templates/categorytree/rowend.inc
-%%HORDEDIR%%/templates/categorytree/rowstart.inc
-%%HORDEDIR%%/templates/categorytree/tablefoot.inc
-%%HORDEDIR%%/templates/categorytree/tablehead.inc
-%%HORDEDIR%%/templates/common-footer.inc
-%%HORDEDIR%%/templates/common-header.inc
-%%HORDEDIR%%/templates/data/csvmap.inc
-%%HORDEDIR%%/templates/data/datemap.inc
-%%HORDEDIR%%/templates/help/footer.inc
-%%HORDEDIR%%/templates/help/header.inc
-%%HORDEDIR%%/templates/help/index.inc
-%%HORDEDIR%%/templates/help/menu.inc
-%%HORDEDIR%%/templates/horde/modules.inc
-%%HORDEDIR%%/templates/index/css.inc
-%%HORDEDIR%%/templates/index/floating_index.inc
-%%HORDEDIR%%/templates/index/frames_index.inc
-%%HORDEDIR%%/templates/index/notconfigured.inc
-%%HORDEDIR%%/templates/index/wap.inc
-%%HORDEDIR%%/templates/javascript/open_help_win.js
-%%HORDEDIR%%/templates/login/login.inc
-%%HORDEDIR%%/templates/login/user.inc
-%%HORDEDIR%%/templates/maintenance/confirm_bottom.inc
-%%HORDEDIR%%/templates/maintenance/confirm_middle.inc
-%%HORDEDIR%%/templates/maintenance/confirm_top.inc
-%%HORDEDIR%%/templates/maintenance/javascript.inc
-%%HORDEDIR%%/templates/navbar/menu.inc
-%%HORDEDIR%%/templates/prefs/begin.inc
-%%HORDEDIR%%/templates/prefs/checkbox.inc
-%%HORDEDIR%%/templates/prefs/end.inc
-%%HORDEDIR%%/templates/prefs/enum.inc
-%%HORDEDIR%%/templates/prefs/link.inc
-%%HORDEDIR%%/templates/prefs/number.inc
-%%HORDEDIR%%/templates/prefs/overview.inc
-%%HORDEDIR%%/templates/prefs/select.inc
-%%HORDEDIR%%/templates/prefs/text.inc
-%%HORDEDIR%%/templates/prefs/textarea.inc
-%%HORDEDIR%%/templates/problem/javascript.inc
-%%HORDEDIR%%/templates/problem/problem.inc
-%%HORDEDIR%%/templates/wml/common-footer.inc
-%%HORDEDIR%%/templates/wml/common-header.inc
-%%HORDEDIR%%/templates/wml/doctype.inc
-%%HORDEDIR%%/templates/wml/login/login.inc
-%%HORDEDIR%%/templates/wml/login/user.inc
-%%HORDEDIR%%/test.php
-%%HORDEDIR%%/util/css2horde.php
-%%HORDEDIR%%/util/go.php
-%%HORDEDIR%%/util/special_characters.php
-%%HORDESBIN%%/horde_set_perms.sh
-etc/horde/httpd.conf.horde
-%%PORTDOCS%%%%DOCSDIR%%/CHANGES
-%%PORTDOCS%%%%DOCSDIR%%/CODING_STANDARDS
-%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTING
-%%PORTDOCS%%%%DOCSDIR%%/COPYING
-%%PORTDOCS%%%%DOCSDIR%%/CREDITS
-%%PORTDOCS%%%%DOCSDIR%%/HACKING
-%%PORTDOCS%%%%DOCSDIR%%/INSTALL
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
-%%PORTDOCS%%%%DOCSDIR%%/SECURITY
-%%PORTDOCS%%%%DOCSDIR%%/TRANSLATIONS
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-@dirrm %%HORDEDIR%%/graphics/alerts
-@dirrm %%HORDEDIR%%/graphics/mime
-@dirrm %%HORDEDIR%%/graphics/tree
-@dirrm %%HORDEDIR%%/graphics
-@dirrm %%HORDEDIR%%/lib/Auth
-@dirrm %%HORDEDIR%%/lib/Cache
-@dirrm %%HORDEDIR%%/lib/Category
-@dirrm %%HORDEDIR%%/lib/Cipher/BlockMode
-@dirrm %%HORDEDIR%%/lib/Cipher
-@dirrm %%HORDEDIR%%/lib/MIME/Viewer
-@dirrm %%HORDEDIR%%/lib/MIME
-@dirrm %%HORDEDIR%%/lib/Notification
-@dirrm %%HORDEDIR%%/lib/Prefs
-@dirrm %%HORDEDIR%%/lib/SessionHandler
-@dirrm %%HORDEDIR%%/lib/Token
-@dirrm %%HORDEDIR%%/lib/VFS
-@dirrm %%HORDEDIR%%/lib
-@dirrm %%HORDEDIR%%/locale/ar_SY/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/ar_SY
-@dirrm %%HORDEDIR%%/locale/bg_BG/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/bg_BG
-@dirrm %%HORDEDIR%%/locale/ca_ES/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/ca_ES
-@dirrm %%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/cs_CZ
-@dirrm %%HORDEDIR%%/locale/da_DK/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/da_DK
-@dirrm %%HORDEDIR%%/locale/de_DE/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/de_DE
-@dirrm %%HORDEDIR%%/locale/el_GR/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/el_GR
-@dirrm %%HORDEDIR%%/locale/et_EE/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/et_EE
-@dirrm %%HORDEDIR%%/locale/en_US
-@dirrm %%HORDEDIR%%/locale/es_ES/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/es_ES
-@dirrm %%HORDEDIR%%/locale/fi_FI/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/fi_FI
-@dirrm %%HORDEDIR%%/locale/fr_FR/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/fr_FR
-@dirrm %%HORDEDIR%%/locale/gl_ES/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/gl_ES
-@dirrm %%HORDEDIR%%/locale/hu_HU/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/hu_HU
-@dirrm %%HORDEDIR%%/locale/id_ID/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/id_ID
-@dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/it_IT
-@dirrm %%HORDEDIR%%/locale/ja_JP/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/ja_JP
-@dirrm %%HORDEDIR%%/locale/ko_KR/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/ko_KR
-@dirrm %%HORDEDIR%%/locale/lt_LT/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/lt_LT
-@dirrm %%HORDEDIR%%/locale/lv_LV/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/lv_LV
-@dirrm %%HORDEDIR%%/locale/mk_MK/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/mk_MK
-@dirrm %%HORDEDIR%%/locale/nl_NL/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/nl_NL
-@dirrm %%HORDEDIR%%/locale/nb_NO/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/nb_NO
-@dirrm %%HORDEDIR%%/locale/nn_NO/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/nn_NO
-@dirrm %%HORDEDIR%%/locale/pl_PL/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/pl_PL
-@dirrm %%HORDEDIR%%/locale/pt_BR/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/pt_BR
-@dirrm %%HORDEDIR%%/locale/pt_PT/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/pt_PT
-@dirrm %%HORDEDIR%%/locale/ro_RO/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/ro_RO
-@dirrm %%HORDEDIR%%/locale/ru_RU/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/ru_RU
-@dirrm %%HORDEDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/ru_RU.KOI8-R
-@dirrm %%HORDEDIR%%/locale/sk_SK/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/sk_SK
-@dirrm %%HORDEDIR%%/locale/sl_SI/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/sl_SI
-@dirrm %%HORDEDIR%%/locale/sv_SE/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/sv_SE
-@dirrm %%HORDEDIR%%/locale/uk_UA/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/uk_UA
-@dirrm %%HORDEDIR%%/locale/zh_CN/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/zh_CN
-@dirrm %%HORDEDIR%%/locale/zh_TW/LC_MESSAGES
-@dirrm %%HORDEDIR%%/locale/zh_TW
-@dirrm %%HORDEDIR%%/locale
-@dirrm %%HORDEDIR%%/scripts/db
-@dirrm %%HORDEDIR%%/scripts/ldap
-@dirrm %%HORDEDIR%%/scripts/mime_mapping
-@dirrm %%HORDEDIR%%/scripts
-@dirrm %%HORDEDIR%%/templates/categorytree
-@dirrm %%HORDEDIR%%/templates/data
-@dirrm %%HORDEDIR%%/templates/help
-@dirrm %%HORDEDIR%%/templates/horde
-@dirrm %%HORDEDIR%%/templates/index
-@dirrm %%HORDEDIR%%/templates/javascript
-@dirrm %%HORDEDIR%%/templates/login
-@dirrm %%HORDEDIR%%/templates/maintenance
-@dirrm %%HORDEDIR%%/templates/navbar
-@dirrm %%HORDEDIR%%/templates/prefs
-@dirrm %%HORDEDIR%%/templates/problem
-@dirrm %%HORDEDIR%%/templates/wml/login
-@dirrm %%HORDEDIR%%/templates/wml
-@dirrm %%HORDEDIR%%/templates
-@dirrm %%HORDEDIR%%/util
-@dirrm %%HORDEDIR%%/po
-@unexec rmdir %D/%%HORDEDIR%%/config 2>/dev/null || true
-@unexec rmdir %D/%%HORDEDIR%% 2>/dev/null || true
-@unexec rmdir %D/etc/horde 2>/dev/null || true