diff options
author | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-04-08 23:42:31 +0000 |
---|---|---|
committer | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-04-08 23:42:31 +0000 |
commit | 1e0d8c9112e8493a5f7edfd1134a422c3e3efac3 (patch) | |
tree | 8195bcc94557ed871bb3862c71b9314dc2c43bd8 | |
parent | Ignore if ${OSVERSION} < 700037 (this version was bumpted by delphij (diff) |
- Introduce bsd.horde.mk
- Convert most horde ports
- Tested vigorously, but hastily
Prodded by: pointyhats via kris
Approved by: Beech Rintoul <beech@alaskaparadise.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=189522
152 files changed, 10025 insertions, 13050 deletions
diff --git a/deskutils/horde-kronolith/Makefile b/deskutils/horde-kronolith/Makefile index d23e7549c9f1..c6b6b98907f8 100644 --- a/deskutils/horde-kronolith/Makefile +++ b/deskutils/horde-kronolith/Makefile @@ -7,69 +7,15 @@ PORTNAME= kronolith PORTVERSION= 2.1.4 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Kronolith is the Horde calendar application -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes -USE_PHP= yes # modules set by Horde, but needed to get PHP_VER +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= keywords.php menu.php prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LKRONOLITHDIR?= ${LHORDEDIR}/kronolith - -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= KRONOLITHDIR=${KRONOLITHDIR} -PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR} - -KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR} -CONFDIR= ${KRONOLITHDIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${KRONOLITHDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${KRONOLITHDIR}/ - @${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${KRONOLITHDIR}/ - @${CHMOD} -R o-rwx ${KRONOLITHDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${KRONOLITHDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${KRONOLITHDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/horde-kronolith/files/pkg-deinstall.in b/deskutils/horde-kronolith/files/pkg-deinstall.in deleted file mode 100644 index 97d0a7cca145..000000000000 --- a/deskutils/horde-kronolith/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Kronolith config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%KRONOLITHDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/horde-kronolith/files/pkg-install.in b/deskutils/horde-kronolith/files/pkg-install.in deleted file mode 100644 index 84722b6dc70a..000000000000 --- a/deskutils/horde-kronolith/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%KRONOLITHDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/horde-kronolith/files/pkg-message.in b/deskutils/horde-kronolith/files/pkg-message.in index 8d1569fe4107..dba8deffa2d6 100644 --- a/deskutils/horde-kronolith/files/pkg-message.in +++ b/deskutils/horde-kronolith/files/pkg-message.in @@ -1,16 +1,16 @@ ************************************************************************** -Kronolith has been installed in %%KRONOLITHDIR%% with your +Kronolith has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then you have to create some tables from the SQL scripts in -%%KRONOLITHDIR%%/scripts/sql. +%%HORDIR%%/scripts/sql. WARNING! Please note that the MCAL back-end has been deprecated! ******** To migrate from MCAL to SQL, you can use the provided script - %%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php + %%HORDIR%%/scripts/migrate_to_sql_driver.php Finally, you must login to Horde as a Horde Administrator to finish the configuration. diff --git a/deskutils/horde-kronolith/pkg-plist b/deskutils/horde-kronolith/pkg-plist index 3ee56c7dd0b1..bb727dffffef 100644 --- a/deskutils/horde-kronolith/pkg-plist +++ b/deskutils/horde-kronolith/pkg-plist @@ -1,305 +1,306 @@ -%%KRONOLITHDIR%%/addevent.php -%%KRONOLITHDIR%%/addeventaction.php -%%KRONOLITHDIR%%/attend.php -%%KRONOLITHDIR%%/attendees.php -%%KRONOLITHDIR%%/calendar_search.php -%%KRONOLITHDIR%%/calendars.php -%%KRONOLITHDIR%%/config/.htaccess -%%KRONOLITHDIR%%/config/conf.xml -%%KRONOLITHDIR%%/config/keywords.php.dist -%%KRONOLITHDIR%%/config/menu.php.dist -%%KRONOLITHDIR%%/config/prefs.php.dist -%%KRONOLITHDIR%%/contacts.php -%%KRONOLITHDIR%%/data.php -%%KRONOLITHDIR%%/day.php -%%KRONOLITHDIR%%/delevent.php -%%KRONOLITHDIR%%/deleventaction.php -%%KRONOLITHDIR%%/editevent.php -%%KRONOLITHDIR%%/editeventaction.php -%%KRONOLITHDIR%%/fb.php -%%KRONOLITHDIR%%/ics.php -%%KRONOLITHDIR%%/index.php -%%KRONOLITHDIR%%/js/fixUnstyledOptions.js -%%KRONOLITHDIR%%/js/stripe.js -%%KRONOLITHDIR%%/lib/Block/month.php -%%KRONOLITHDIR%%/lib/Block/monthlist.php -%%KRONOLITHDIR%%/lib/Block/prevmonthlist.php -%%KRONOLITHDIR%%/lib/Block/summary.php -%%KRONOLITHDIR%%/lib/Block/tree_alarms.php -%%KRONOLITHDIR%%/lib/Block/tree_menu.php -%%KRONOLITHDIR%%/lib/Day.php -%%KRONOLITHDIR%%/lib/DayView.php -%%KRONOLITHDIR%%/lib/Driver.php -%%KRONOLITHDIR%%/lib/Driver/ical.php -%%KRONOLITHDIR%%/lib/Driver/kolab.php -%%KRONOLITHDIR%%/lib/Driver/sql.php -%%KRONOLITHDIR%%/lib/FBView.php -%%KRONOLITHDIR%%/lib/FBView/day.php -%%KRONOLITHDIR%%/lib/FBView/week.php -%%KRONOLITHDIR%%/lib/FBView/workweek.php -%%KRONOLITHDIR%%/lib/Kronolith.php -%%KRONOLITHDIR%%/lib/Scheduler/kronolith.php -%%KRONOLITHDIR%%/lib/Storage.php -%%KRONOLITHDIR%%/lib/Storage/kolab.php -%%KRONOLITHDIR%%/lib/Storage/sql.php -%%KRONOLITHDIR%%/lib/WeekView.php -%%KRONOLITHDIR%%/lib/api.php -%%KRONOLITHDIR%%/lib/base.php -%%KRONOLITHDIR%%/lib/prefs.php -%%KRONOLITHDIR%%/lib/version.php -%%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/de_DE/help.xml -%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/en_US/help.xml -%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/es_ES/help.xml -%%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/fi_FI/help.xml -%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/hu_HU/help.xml -%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ja_JP/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/pt_BR/help.xml -%%KRONOLITHDIR%%/locale/pt_PT/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/sl_SI/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/tr_TR/help.xml -%%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/month.php -%%KRONOLITHDIR%%/po/README -%%KRONOLITHDIR%%/po/ar_SY.po -%%KRONOLITHDIR%%/po/bg_BG.po -%%KRONOLITHDIR%%/po/cs_CZ.po -%%KRONOLITHDIR%%/po/da_DK.po -%%KRONOLITHDIR%%/po/de_DE.po -%%KRONOLITHDIR%%/po/el_GR.po -%%KRONOLITHDIR%%/po/es_ES.po -%%KRONOLITHDIR%%/po/fi_FI.po -%%KRONOLITHDIR%%/po/fr_FR.po -%%KRONOLITHDIR%%/po/hu_HU.po -%%KRONOLITHDIR%%/po/it_IT.po -%%KRONOLITHDIR%%/po/ja_JP.po -%%KRONOLITHDIR%%/po/ko_KR.po -%%KRONOLITHDIR%%/po/kronolith.pot -%%KRONOLITHDIR%%/po/lt_LT.po -%%KRONOLITHDIR%%/po/lv_LV.po -%%KRONOLITHDIR%%/po/nb_NO.po -%%KRONOLITHDIR%%/po/nl_NL.po -%%KRONOLITHDIR%%/po/nn_NO.po -%%KRONOLITHDIR%%/po/pl_PL.po -%%KRONOLITHDIR%%/po/pt_BR.po -%%KRONOLITHDIR%%/po/pt_PT.po -%%KRONOLITHDIR%%/po/ro_RO.po -%%KRONOLITHDIR%%/po/ru_RU.po -%%KRONOLITHDIR%%/po/sk_SK.po -%%KRONOLITHDIR%%/po/sl_SI.po -%%KRONOLITHDIR%%/po/sv_SE.po -%%KRONOLITHDIR%%/po/zh_CN.po -%%KRONOLITHDIR%%/po/zh_TW.po -%%KRONOLITHDIR%%/scripts/.htaccess -%%KRONOLITHDIR%%/scripts/import_icals.php -%%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php -%%KRONOLITHDIR%%/scripts/reminders.php -%%KRONOLITHDIR%%/scripts/sql/kronolith.mssql.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.mysql.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.oci8.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.pgsql.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.xml -%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql -%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql -%%KRONOLITHDIR%%/scripts/upgrades/2004-05-19_convert_categories_to_strings.php -%%KRONOLITHDIR%%/scripts/upgrades/2004-12-21_add_event_uid.pgsql.sql -%%KRONOLITHDIR%%/scripts/upgrades/2004-12-21_add_event_uid.sql -%%KRONOLITHDIR%%/scripts/upgrades/2006-08-20_fix_recur_int_fields.mysql.sql -%%KRONOLITHDIR%%/search.php -%%KRONOLITHDIR%%/templates/attendees/attendees.inc -%%KRONOLITHDIR%%/templates/calendars/calendars.inc -%%KRONOLITHDIR%%/templates/calendars/search.inc -%%KRONOLITHDIR%%/templates/category_legend.inc -%%KRONOLITHDIR%%/templates/common-header.inc -%%KRONOLITHDIR%%/templates/contacts/contacts.inc -%%KRONOLITHDIR%%/templates/data/export.inc -%%KRONOLITHDIR%%/templates/data/import.inc -%%KRONOLITHDIR%%/templates/day/all_day.inc -%%KRONOLITHDIR%%/templates/day/head.inc -%%KRONOLITHDIR%%/templates/day/head_side_by_side.inc -%%KRONOLITHDIR%%/templates/day/rows.html -%%KRONOLITHDIR%%/templates/delete/delete.inc -%%KRONOLITHDIR%%/templates/delete/one.inc -%%KRONOLITHDIR%%/templates/edit/edit.inc -%%KRONOLITHDIR%%/templates/edit/edit_timespan.inc -%%KRONOLITHDIR%%/templates/edit/javascript.inc -%%KRONOLITHDIR%%/templates/fbview/busyblock.tpl -%%KRONOLITHDIR%%/templates/fbview/emptyblock.tpl -%%KRONOLITHDIR%%/templates/fbview/header.tpl -%%KRONOLITHDIR%%/templates/fbview/legend.tpl -%%KRONOLITHDIR%%/templates/fbview/meetingblock.tpl -%%KRONOLITHDIR%%/templates/fbview/row.tpl -%%KRONOLITHDIR%%/templates/fbview/section.tpl -%%KRONOLITHDIR%%/templates/fbview/unknownblock.tpl -%%KRONOLITHDIR%%/templates/javascript/goto.js -%%KRONOLITHDIR%%/templates/javascript/open_attendees_win.js -%%KRONOLITHDIR%%/templates/javascript/open_calendar_search.js -%%KRONOLITHDIR%%/templates/menu.inc -%%KRONOLITHDIR%%/templates/month/head.inc -%%KRONOLITHDIR%%/templates/month/head_side_by_side.inc -%%KRONOLITHDIR%%/templates/prefs/fb_cals_select.inc -%%KRONOLITHDIR%%/templates/prefs/remote_cal_management.inc -%%KRONOLITHDIR%%/templates/prefs/search_abook_select.inc -%%KRONOLITHDIR%%/templates/prefs/shareselect.inc -%%KRONOLITHDIR%%/templates/search/empty.inc -%%KRONOLITHDIR%%/templates/search/event_footers.inc -%%KRONOLITHDIR%%/templates/search/event_headers.inc -%%KRONOLITHDIR%%/templates/search/event_summaries.inc -%%KRONOLITHDIR%%/templates/search/header.inc -%%KRONOLITHDIR%%/templates/search/search.inc -%%KRONOLITHDIR%%/templates/search/search_advanced.inc -%%KRONOLITHDIR%%/templates/view/view.inc -%%KRONOLITHDIR%%/templates/week/head.inc -%%KRONOLITHDIR%%/templates/week/head_side_by_side.inc -%%KRONOLITHDIR%%/templates/year/head.inc -%%KRONOLITHDIR%%/themes/bluewhite/screen.css -%%KRONOLITHDIR%%/themes/burntorange/screen.css -%%KRONOLITHDIR%%/themes/categoryCSS.php -%%KRONOLITHDIR%%/themes/graphics/addressbook_browse.png -%%KRONOLITHDIR%%/themes/graphics/alarm.png -%%KRONOLITHDIR%%/themes/graphics/alarm_small.png -%%KRONOLITHDIR%%/themes/graphics/attendees.png -%%KRONOLITHDIR%%/themes/graphics/calendars.png -%%KRONOLITHDIR%%/themes/graphics/dayview.png -%%KRONOLITHDIR%%/themes/graphics/expand.png -%%KRONOLITHDIR%%/themes/graphics/favicon.ico -%%KRONOLITHDIR%%/themes/graphics/goto.png -%%KRONOLITHDIR%%/themes/graphics/kronolith.png -%%KRONOLITHDIR%%/themes/graphics/monthview.png -%%KRONOLITHDIR%%/themes/graphics/new.png -%%KRONOLITHDIR%%/themes/graphics/new_big.png -%%KRONOLITHDIR%%/themes/graphics/new_small.png -%%KRONOLITHDIR%%/themes/graphics/recur.png -%%KRONOLITHDIR%%/themes/graphics/today.png -%%KRONOLITHDIR%%/themes/graphics/unknown-background.png -%%KRONOLITHDIR%%/themes/graphics/weekview.png -%%KRONOLITHDIR%%/themes/graphics/workweekview.png -%%KRONOLITHDIR%%/themes/graphics/yearview.png -%%KRONOLITHDIR%%/themes/mozilla/screen.css -%%KRONOLITHDIR%%/themes/print/screen.css -%%KRONOLITHDIR%%/themes/screen.css -%%KRONOLITHDIR%%/themes/simplex/screen.css -%%KRONOLITHDIR%%/viewevent.php -%%KRONOLITHDIR%%/week.php -%%KRONOLITHDIR%%/workweek.php -%%KRONOLITHDIR%%/year.php -@dirrm %%KRONOLITHDIR%%/themes/simplex -@dirrm %%KRONOLITHDIR%%/themes/print -@dirrm %%KRONOLITHDIR%%/themes/mozilla -@dirrm %%KRONOLITHDIR%%/themes/graphics -@dirrm %%KRONOLITHDIR%%/themes/burntorange -@dirrm %%KRONOLITHDIR%%/themes/bluewhite -@dirrm %%KRONOLITHDIR%%/themes -@dirrm %%KRONOLITHDIR%%/templates/year -@dirrm %%KRONOLITHDIR%%/templates/week -@dirrm %%KRONOLITHDIR%%/templates/view -@dirrm %%KRONOLITHDIR%%/templates/search -@dirrm %%KRONOLITHDIR%%/templates/prefs -@dirrm %%KRONOLITHDIR%%/templates/month -@dirrm %%KRONOLITHDIR%%/templates/javascript -@dirrm %%KRONOLITHDIR%%/templates/fbview -@dirrm %%KRONOLITHDIR%%/templates/edit -@dirrm %%KRONOLITHDIR%%/templates/delete -@dirrm %%KRONOLITHDIR%%/templates/day -@dirrm %%KRONOLITHDIR%%/templates/data -@dirrm %%KRONOLITHDIR%%/templates/contacts -@dirrm %%KRONOLITHDIR%%/templates/calendars -@dirrm %%KRONOLITHDIR%%/templates/attendees -@dirrm %%KRONOLITHDIR%%/templates -@dirrm %%KRONOLITHDIR%%/scripts/upgrades -@dirrm %%KRONOLITHDIR%%/scripts/sql -@dirrm %%KRONOLITHDIR%%/scripts -@dirrm %%KRONOLITHDIR%%/po -@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/zh_TW -@dirrm %%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/zh_CN -@dirrm %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/tr_TR -@dirrm %%KRONOLITHDIR%%/locale/sv_SE -@dirrm %%KRONOLITHDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/sl_SI -@dirrm %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/sk_SK -@dirrm %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ru_RU -@dirrm %%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ro_RO -@dirrm %%KRONOLITHDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/pt_PT -@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/pt_BR -@dirrm %%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/pl_PL -@dirrm %%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/nn_NO -@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/nl_NL -@dirrm %%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/nb_NO -@dirrm %%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/lv_LV -@dirrm %%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/lt_LT -@dirrm %%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ko_KR -@dirrm %%KRONOLITHDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ja_JP -@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/it_IT -@dirrm %%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/hu_HU -@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/fr_FR -@dirrm %%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/fi_FI -@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/es_ES -@dirrm %%KRONOLITHDIR%%/locale/en_US -@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/el_GR -@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/de_DE -@dirrm %%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/da_DK -@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/cs_CZ -@dirrm %%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/bg_BG -@dirrm %%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ar_SY -@dirrm %%KRONOLITHDIR%%/locale -@dirrm %%KRONOLITHDIR%%/lib/Storage -@dirrm %%KRONOLITHDIR%%/lib/Scheduler -@dirrm %%KRONOLITHDIR%%/lib/FBView -@dirrm %%KRONOLITHDIR%%/lib/Driver -@dirrm %%KRONOLITHDIR%%/lib/Block -@dirrm %%KRONOLITHDIR%%/lib -@dirrm %%KRONOLITHDIR%%/js -@dirrmtry %%KRONOLITHDIR%%/config -@dirrmtry %%KRONOLITHDIR%% +%%HORDIR%%/addevent.php +%%HORDIR%%/addeventaction.php +%%HORDIR%%/attend.php +%%HORDIR%%/attendees.php +%%HORDIR%%/calendar_search.php +%%HORDIR%%/calendars.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/keywords.php.dist +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/contacts.php +%%HORDIR%%/data.php +%%HORDIR%%/day.php +%%HORDIR%%/delevent.php +%%HORDIR%%/deleventaction.php +%%HORDIR%%/editevent.php +%%HORDIR%%/editeventaction.php +%%HORDIR%%/fb.php +%%HORDIR%%/ics.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/stripe.js +%%HORDIR%%/lib/Block/month.php +%%HORDIR%%/lib/Block/monthlist.php +%%HORDIR%%/lib/Block/prevmonthlist.php +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Block/tree_alarms.php +%%HORDIR%%/lib/Block/tree_menu.php +%%HORDIR%%/lib/Day.php +%%HORDIR%%/lib/DayView.php +%%HORDIR%%/lib/Driver/ical.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/FBView/day.php +%%HORDIR%%/lib/FBView/week.php +%%HORDIR%%/lib/FBView/workweek.php +%%HORDIR%%/lib/FBView.php +%%HORDIR%%/lib/Kronolith.php +%%HORDIR%%/lib/Scheduler/kronolith.php +%%HORDIR%%/lib/Storage/kolab.php +%%HORDIR%%/lib/Storage/sql.php +%%HORDIR%%/lib/Storage.php +%%HORDIR%%/lib/WeekView.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo +%%HORDIR%%/month.php +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/kronolith.pot +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_icals.php +%%HORDIR%%/scripts/migrate_to_sql_driver.php +%%HORDIR%%/scripts/reminders.php +%%HORDIR%%/scripts/sql/kronolith.mssql.sql +%%HORDIR%%/scripts/sql/kronolith.mysql.sql +%%HORDIR%%/scripts/sql/kronolith.oci8.sql +%%HORDIR%%/scripts/sql/kronolith.pgsql.sql +%%HORDIR%%/scripts/sql/kronolith.sql +%%HORDIR%%/scripts/sql/kronolith.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql +%%HORDIR%%/scripts/upgrades/2004-05-19_convert_categories_to_strings.php +%%HORDIR%%/scripts/upgrades/2004-12-21_add_event_uid.pgsql.sql +%%HORDIR%%/scripts/upgrades/2004-12-21_add_event_uid.sql +%%HORDIR%%/scripts/upgrades/2006-08-20_fix_recur_int_fields.mysql.sql +%%HORDIR%%/search.php +%%HORDIR%%/templates/attendees/attendees.inc +%%HORDIR%%/templates/calendars/calendars.inc +%%HORDIR%%/templates/calendars/search.inc +%%HORDIR%%/templates/category_legend.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/contacts/contacts.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/day/all_day.inc +%%HORDIR%%/templates/day/head.inc +%%HORDIR%%/templates/day/head_side_by_side.inc +%%HORDIR%%/templates/day/rows.html +%%HORDIR%%/templates/delete/delete.inc +%%HORDIR%%/templates/delete/one.inc +%%HORDIR%%/templates/edit/edit.inc +%%HORDIR%%/templates/edit/edit_timespan.inc +%%HORDIR%%/templates/edit/javascript.inc +%%HORDIR%%/templates/fbview/busyblock.tpl +%%HORDIR%%/templates/fbview/emptyblock.tpl +%%HORDIR%%/templates/fbview/header.tpl +%%HORDIR%%/templates/fbview/legend.tpl +%%HORDIR%%/templates/fbview/meetingblock.tpl +%%HORDIR%%/templates/fbview/row.tpl +%%HORDIR%%/templates/fbview/section.tpl +%%HORDIR%%/templates/fbview/unknownblock.tpl +%%HORDIR%%/templates/javascript/goto.js +%%HORDIR%%/templates/javascript/open_attendees_win.js +%%HORDIR%%/templates/javascript/open_calendar_search.js +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/month/head.inc +%%HORDIR%%/templates/month/head_side_by_side.inc +%%HORDIR%%/templates/prefs/fb_cals_select.inc +%%HORDIR%%/templates/prefs/remote_cal_management.inc +%%HORDIR%%/templates/prefs/search_abook_select.inc +%%HORDIR%%/templates/prefs/shareselect.inc +%%HORDIR%%/templates/search/empty.inc +%%HORDIR%%/templates/search/event_footers.inc +%%HORDIR%%/templates/search/event_headers.inc +%%HORDIR%%/templates/search/event_summaries.inc +%%HORDIR%%/templates/search/header.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/search/search_advanced.inc +%%HORDIR%%/templates/view/view.inc +%%HORDIR%%/templates/week/head.inc +%%HORDIR%%/templates/week/head_side_by_side.inc +%%HORDIR%%/templates/year/head.inc +%%HORDIR%%/themes/bluewhite/screen.css +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/categoryCSS.php +%%HORDIR%%/themes/graphics/addressbook_browse.png +%%HORDIR%%/themes/graphics/alarm.png +%%HORDIR%%/themes/graphics/alarm_small.png +%%HORDIR%%/themes/graphics/attendees.png +%%HORDIR%%/themes/graphics/calendars.png +%%HORDIR%%/themes/graphics/dayview.png +%%HORDIR%%/themes/graphics/expand.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/goto.png +%%HORDIR%%/themes/graphics/kronolith.png +%%HORDIR%%/themes/graphics/monthview.png +%%HORDIR%%/themes/graphics/new.png +%%HORDIR%%/themes/graphics/new_big.png +%%HORDIR%%/themes/graphics/new_small.png +%%HORDIR%%/themes/graphics/recur.png +%%HORDIR%%/themes/graphics/today.png +%%HORDIR%%/themes/graphics/unknown-background.png +%%HORDIR%%/themes/graphics/weekview.png +%%HORDIR%%/themes/graphics/workweekview.png +%%HORDIR%%/themes/graphics/yearview.png +%%HORDIR%%/themes/mozilla/screen.css +%%HORDIR%%/themes/print/screen.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/themes/simplex/screen.css +%%HORDIR%%/viewevent.php +%%HORDIR%%/week.php +%%HORDIR%%/workweek.php +%%HORDIR%%/year.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/FBView +@dirrm %%HORDIR%%/lib/Scheduler +@dirrm %%HORDIR%%/lib/Storage +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/attendees +@dirrm %%HORDIR%%/templates/calendars +@dirrm %%HORDIR%%/templates/contacts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/day +@dirrm %%HORDIR%%/templates/delete +@dirrm %%HORDIR%%/templates/edit +@dirrm %%HORDIR%%/templates/fbview +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/month +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates/week +@dirrm %%HORDIR%%/templates/year +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/bluewhite +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/mozilla +@dirrm %%HORDIR%%/themes/print +@dirrm %%HORDIR%%/themes/simplex +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/deskutils/horde-mnemo/Makefile b/deskutils/horde-mnemo/Makefile index ba9327b1d2e5..4733d120146a 100644 --- a/deskutils/horde-mnemo/Makefile +++ b/deskutils/horde-mnemo/Makefile @@ -7,69 +7,15 @@ PORTNAME= mnemo PORTVERSION= 2.1.1 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE -DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= beech@alaskaparadise.com COMMENT= Mnemo is the Horde notes and memos application -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -PLIST_SUB= MNEMODIR=${LMNEMODIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= MNEMODIR=${MNEMODIR} - -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LMNEMODIR?= ${LHORDEDIR}/mnemo - -MNEMODIR= ${PREFIX}/${LMNEMODIR} -CONFDIR= ${MNEMODIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${MNEMODIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${MNEMODIR}/ - @${CP} -p ${WRKSRC}/*.php ${MNEMODIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${MNEMODIR}/ - @${CHMOD} -R o-rwx ${MNEMODIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${MNEMODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${MNEMODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/horde-mnemo/files/pkg-deinstall.in b/deskutils/horde-mnemo/files/pkg-deinstall.in deleted file mode 100644 index 01e0ca9f6e7b..000000000000 --- a/deskutils/horde-mnemo/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Mnemo config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%MNEMODIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/horde-mnemo/files/pkg-install.in b/deskutils/horde-mnemo/files/pkg-install.in deleted file mode 100644 index 2b5fd65ba10e..000000000000 --- a/deskutils/horde-mnemo/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%MNEMODIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/horde-mnemo/files/pkg-message.in b/deskutils/horde-mnemo/files/pkg-message.in index bbd8d585a94d..07089e835ce8 100644 --- a/deskutils/horde-mnemo/files/pkg-message.in +++ b/deskutils/horde-mnemo/files/pkg-message.in @@ -1,15 +1,14 @@ ************************************************************************ -Mnemo has been installed in %%MNEMODIR%% with your blank +Mnemo has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then, you have to create the table mnemo_memos, from the SQL script -%%MNEMODIR%%/scripts/sql/mnemo.sql +%%HORDIR%%/scripts/sql/mnemo.sql For example, if your database is MySQL, you may run mysql --user=root --password=yourpass horde < mnemo.sql Finally, you must login to Horde as a Horde Administrator to finish the configuration. - ************************************************************************ diff --git a/deskutils/horde-mnemo/pkg-plist b/deskutils/horde-mnemo/pkg-plist index 1812bb6810af..d9f44485e44c 100644 --- a/deskutils/horde-mnemo/pkg-plist +++ b/deskutils/horde-mnemo/pkg-plist @@ -1,190 +1,191 @@ -%%MNEMODIR%%/config/.htaccess -%%MNEMODIR%%/config/conf.xml -%%MNEMODIR%%/config/prefs.php.dist -%%MNEMODIR%%/data.php -%%MNEMODIR%%/index.php -%%MNEMODIR%%/js/fixUnstyledOptions.js -%%MNEMODIR%%/js/tables.js -%%MNEMODIR%%/lib/Block/summary.php -%%MNEMODIR%%/lib/Driver.php -%%MNEMODIR%%/lib/Driver/kolab.php -%%MNEMODIR%%/lib/Driver/sql.php -%%MNEMODIR%%/lib/Mnemo.php -%%MNEMODIR%%/lib/api.php -%%MNEMODIR%%/lib/base.php -%%MNEMODIR%%/lib/prefs.php -%%MNEMODIR%%/lib/version.php -%%MNEMODIR%%/list.php -%%MNEMODIR%%/locale/bg_BG/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/cs_CZ/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/da_DK/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/da_DK/help.xml -%%MNEMODIR%%/locale/de_DE/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/de_DE/help.xml -%%MNEMODIR%%/locale/el_GR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/en_US/help.xml -%%MNEMODIR%%/locale/es_ES/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/es_ES/help.xml -%%MNEMODIR%%/locale/fi_FI/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/fi_FI/help.xml -%%MNEMODIR%%/locale/fr_FR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/hu_HU/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/hu_HU/help.xml -%%MNEMODIR%%/locale/it_IT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/it_IT/help.xml -%%MNEMODIR%%/locale/ja_JP/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lt_LT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lv_LV/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lv_LV/help.xml -%%MNEMODIR%%/locale/nb_NO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/nl_NL/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/nn_NO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pl_PL/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pt_BR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pt_PT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/ro_RO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/ru_RU/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sk_SK/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sk_SK/help.xml -%%MNEMODIR%%/locale/sl_SI/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sv_SE/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/tr_TR/help.xml -%%MNEMODIR%%/locale/zh_CN/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/zh_TW/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/memo.php -%%MNEMODIR%%/notepads.php -%%MNEMODIR%%/po/README -%%MNEMODIR%%/po/bg_BG.po -%%MNEMODIR%%/po/cs_CZ.po -%%MNEMODIR%%/po/da_DK.po -%%MNEMODIR%%/po/de_DE.po -%%MNEMODIR%%/po/el_GR.po -%%MNEMODIR%%/po/es_ES.po -%%MNEMODIR%%/po/fi_FI.po -%%MNEMODIR%%/po/fr_FR.po -%%MNEMODIR%%/po/hu_HU.po -%%MNEMODIR%%/po/it_IT.po -%%MNEMODIR%%/po/ja_JP.po -%%MNEMODIR%%/po/lt_LT.po -%%MNEMODIR%%/po/lv_LV.po -%%MNEMODIR%%/po/mnemo.pot -%%MNEMODIR%%/po/nb_NO.po -%%MNEMODIR%%/po/nl_NL.po -%%MNEMODIR%%/po/nn_NO.po -%%MNEMODIR%%/po/pl_PL.po -%%MNEMODIR%%/po/pt_BR.po -%%MNEMODIR%%/po/pt_PT.po -%%MNEMODIR%%/po/ro_RO.po -%%MNEMODIR%%/po/ru_RU.po -%%MNEMODIR%%/po/sl_SI.po -%%MNEMODIR%%/po/sk_SK.po -%%MNEMODIR%%/po/sv_SE.po -%%MNEMODIR%%/po/zh_CN.po -%%MNEMODIR%%/po/zh_TW.po -%%MNEMODIR%%/scripts/.htaccess -%%MNEMODIR%%/scripts/import_vnotes.php -%%MNEMODIR%%/scripts/sql/mnemo.mssql.sql -%%MNEMODIR%%/scripts/sql/mnemo.oci8.sql -%%MNEMODIR%%/scripts/sql/mnemo.sql -%%MNEMODIR%%/scripts/sql/mnemo.xml -%%MNEMODIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%MNEMODIR%%/scripts/upgrades/1.1_to_2.0.pgsq.sql -%%MNEMODIR%%/scripts/upgrades/2004-12-21_add_memo_uid.sql -%%MNEMODIR%%/search.php -%%MNEMODIR%%/templates/common-header.inc -%%MNEMODIR%%/templates/data/export.inc -%%MNEMODIR%%/templates/data/import.inc -%%MNEMODIR%%/templates/list/empty.inc -%%MNEMODIR%%/templates/list/header.inc -%%MNEMODIR%%/templates/list/memo_footers.inc -%%MNEMODIR%%/templates/list/memo_headers.inc -%%MNEMODIR%%/templates/list/memo_summaries.inc -%%MNEMODIR%%/templates/memo/memo.inc -%%MNEMODIR%%/templates/menu.inc -%%MNEMODIR%%/templates/notepads/notepads.inc -%%MNEMODIR%%/templates/prefs/notepadselect.inc -%%MNEMODIR%%/templates/search/search.inc -%%MNEMODIR%%/templates/view/memo.inc -%%MNEMODIR%%/themes/graphics/add.png -%%MNEMODIR%%/themes/graphics/az.png -%%MNEMODIR%%/themes/graphics/favicon.ico -%%MNEMODIR%%/themes/graphics/mnemo.png -%%MNEMODIR%%/themes/graphics/notepads.png -%%MNEMODIR%%/themes/graphics/za.png -%%MNEMODIR%%/themes/screen.css -%%MNEMODIR%%/view.php -@dirrm %%MNEMODIR%%/themes/graphics -@dirrm %%MNEMODIR%%/themes -@dirrm %%MNEMODIR%%/templates/view -@dirrm %%MNEMODIR%%/templates/search -@dirrm %%MNEMODIR%%/templates/prefs -@dirrm %%MNEMODIR%%/templates/notepads -@dirrm %%MNEMODIR%%/templates/memo -@dirrm %%MNEMODIR%%/templates/list -@dirrm %%MNEMODIR%%/templates/data -@dirrm %%MNEMODIR%%/templates -@dirrm %%MNEMODIR%%/scripts/upgrades -@dirrm %%MNEMODIR%%/scripts/sql -@dirrm %%MNEMODIR%%/scripts -@dirrm %%MNEMODIR%%/po -@dirrm %%MNEMODIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/zh_TW -@dirrm %%MNEMODIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/zh_CN -@dirrm %%MNEMODIR%%/locale/tr_TR -@dirrm %%MNEMODIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sv_SE -@dirrm %%MNEMODIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sl_SI -@dirrm %%MNEMODIR%%/locale/sk_SK -@dirrm %%MNEMODIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ru_RU -@dirrm %%MNEMODIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ro_RO -@dirrm %%MNEMODIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pt_PT -@dirrm %%MNEMODIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pt_BR -@dirrm %%MNEMODIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pl_PL -@dirrm %%MNEMODIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nn_NO -@dirrm %%MNEMODIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nl_NL -@dirrm %%MNEMODIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nb_NO -@dirrm %%MNEMODIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/lv_LV -@dirrm %%MNEMODIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/lt_LT -@dirrm %%MNEMODIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ja_JP -@dirrm %%MNEMODIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/it_IT -@dirrm %%MNEMODIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/hu_HU -@dirrm %%MNEMODIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/fr_FR -@dirrm %%MNEMODIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/fi_FI -@dirrm %%MNEMODIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/es_ES -@dirrm %%MNEMODIR%%/locale/en_US -@dirrm %%MNEMODIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/el_GR -@dirrm %%MNEMODIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/de_DE -@dirrm %%MNEMODIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/da_DK -@dirrm %%MNEMODIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/cs_CZ -@dirrm %%MNEMODIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/bg_BG -@dirrm %%MNEMODIR%%/locale -@dirrm %%MNEMODIR%%/lib/Driver -@dirrm %%MNEMODIR%%/lib/Block -@dirrm %%MNEMODIR%%/lib -@dirrm %%MNEMODIR%%/js -@dirrmtry %%MNEMODIR%%/config -@dirrmtry %%MNEMODIR%% +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/tables.js +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Mnemo.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/list.php +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/da_DK/help.xml +%%HORDIR%%/locale/de_DE/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/it_IT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/it_IT/help.xml +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/mnemo.mo +%%HORDIR%%/memo.php +%%HORDIR%%/notepads.php +%%HORDIR%%/po/README +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mnemo.pot +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_vnotes.php +%%HORDIR%%/scripts/sql/mnemo.mssql.sql +%%HORDIR%%/scripts/sql/mnemo.oci8.sql +%%HORDIR%%/scripts/sql/mnemo.sql +%%HORDIR%%/scripts/sql/mnemo.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsq.sql +%%HORDIR%%/scripts/upgrades/2004-12-21_add_memo_uid.sql +%%HORDIR%%/search.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/list/empty.inc +%%HORDIR%%/templates/list/header.inc +%%HORDIR%%/templates/list/memo_footers.inc +%%HORDIR%%/templates/list/memo_headers.inc +%%HORDIR%%/templates/list/memo_summaries.inc +%%HORDIR%%/templates/memo/memo.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/notepads/notepads.inc +%%HORDIR%%/templates/prefs/notepadselect.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/view/memo.inc +%%HORDIR%%/themes/graphics/add.png +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/mnemo.png +%%HORDIR%%/themes/graphics/notepads.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/list +@dirrm %%HORDIR%%/templates/memo +@dirrm %%HORDIR%%/templates/notepads +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/deskutils/horde-nag/Makefile b/deskutils/horde-nag/Makefile index 8f0c055af8df..dffdf08643e2 100644 --- a/deskutils/horde-nag/Makefile +++ b/deskutils/horde-nag/Makefile @@ -7,68 +7,15 @@ PORTNAME= nag PORTVERSION= 2.1.3 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Simple multiuser task list manager -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -PLIST_SUB= NAGDIR=${LNAGDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= NAGDIR=${NAGDIR} - -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= menu.php prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LNAGDIR?= ${LHORDEDIR}/nag - -NAGDIR= ${PREFIX}/${LNAGDIR} -CONFDIR= ${NAGDIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${NAGDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${NAGDIR}/ - @${CP} -p ${WRKSRC}/*.php ${NAGDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${NAGDIR}/ - @${CHMOD} -R o-rwx ${NAGDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${NAGDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${NAGDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/horde-nag/files/pkg-deinstall.in b/deskutils/horde-nag/files/pkg-deinstall.in deleted file mode 100644 index 6996f090da6d..000000000000 --- a/deskutils/horde-nag/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Nag config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%NAGDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/horde-nag/files/pkg-install.in b/deskutils/horde-nag/files/pkg-install.in deleted file mode 100644 index f7ec7e0017b6..000000000000 --- a/deskutils/horde-nag/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%NAGDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/horde-nag/files/pkg-message.in b/deskutils/horde-nag/files/pkg-message.in index 98c57ea5118a..2a7122633db6 100644 --- a/deskutils/horde-nag/files/pkg-message.in +++ b/deskutils/horde-nag/files/pkg-message.in @@ -1,11 +1,11 @@ ************************************************************************ -Nag has been installed in %%NAGDIR%% with your blank +Nag has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then, you have to create the table nag_tasks, from the SQL script -%%NAGDIR%%/scripts/sql/nag.sql. +%%HORDIR%%/scripts/sql/nag.sql. For example, if your database is MySQL, you may run mysql --user=root --password=yourpass horde < nag.sql diff --git a/deskutils/horde-nag/pkg-plist b/deskutils/horde-nag/pkg-plist index 8681dda8b9a9..eb7c120b72f3 100644 --- a/deskutils/horde-nag/pkg-plist +++ b/deskutils/horde-nag/pkg-plist @@ -1,223 +1,224 @@ -%%NAGDIR%%/config/.htaccess -%%NAGDIR%%/config/conf.xml -%%NAGDIR%%/config/menu.php.dist -%%NAGDIR%%/config/prefs.php.dist -%%NAGDIR%%/data.php -%%NAGDIR%%/ics.php -%%NAGDIR%%/index.php -%%NAGDIR%%/js/fixUnstyledOptions.js -%%NAGDIR%%/js/tables.js -%%NAGDIR%%/js/prototype.js -%%NAGDIR%%/lib/.htaccess -%%NAGDIR%%/lib/Block/summary.php -%%NAGDIR%%/lib/Driver.php -%%NAGDIR%%/lib/Driver/kolab.php -%%NAGDIR%%/lib/Driver/sql.php -%%NAGDIR%%/lib/Nag.php -%%NAGDIR%%/lib/Notification/Listener/status.php -%%NAGDIR%%/lib/Widgets.php -%%NAGDIR%%/lib/api.php -%%NAGDIR%%/lib/base.php -%%NAGDIR%%/lib/prefs.php -%%NAGDIR%%/lib/version.php -%%NAGDIR%%/list.php -%%NAGDIR%%/locale/ar_SY/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/bg_BG/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ca_ES/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ca_ES/help.xml -%%NAGDIR%%/locale/cs_CZ/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/da_DK/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/de_DE/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/de_DE/help.xml -%%NAGDIR%%/locale/el_GR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/en_US/help.xml -%%NAGDIR%%/locale/es_ES/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/es_ES/help.xml -%%NAGDIR%%/locale/fi_FI/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/fi_FI/help.xml -%%NAGDIR%%/locale/fr_FR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/hu_HU/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/hu_HU/help.xml -%%NAGDIR%%/locale/id_ID/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/it_IT/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ja_JP/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ko_KR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/lt_LT/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/lv_LV/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/lv_LV/help.xml -%%NAGDIR%%/locale/nb_NO/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/nl_NL/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/nl_NL/help.xml -%%NAGDIR%%/locale/nn_NO/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/pl_PL/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/pt_BR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/pt_PT/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ro_RO/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ru_RU/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/sk_SK/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/sk_SK/help.xml -%%NAGDIR%%/locale/sl_SI/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/sv_SE/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/tr_TR/help.xml -%%NAGDIR%%/locale/zh_CN/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/zh_TW/LC_MESSAGES/nag.mo -%%NAGDIR%%/po/README -%%NAGDIR%%/po/ar_SY.po -%%NAGDIR%%/po/bg_BG.po -%%NAGDIR%%/po/ca_ES.po -%%NAGDIR%%/po/cs_CZ.po -%%NAGDIR%%/po/da_DK.po -%%NAGDIR%%/po/de_DE.po -%%NAGDIR%%/po/el_GR.po -%%NAGDIR%%/po/es_ES.po -%%NAGDIR%%/po/fi_FI.po -%%NAGDIR%%/po/fr_FR.po -%%NAGDIR%%/po/hu_HU.po -%%NAGDIR%%/po/id_ID.po -%%NAGDIR%%/po/it_IT.po -%%NAGDIR%%/po/ja_JP.po -%%NAGDIR%%/po/ko_KR.po -%%NAGDIR%%/po/lt_LT.po -%%NAGDIR%%/po/lv_LV.po -%%NAGDIR%%/po/nag.pot -%%NAGDIR%%/po/nb_NO.po -%%NAGDIR%%/po/nl_NL.po -%%NAGDIR%%/po/nn_NO.po -%%NAGDIR%%/po/pl_PL.po -%%NAGDIR%%/po/pt_BR.po -%%NAGDIR%%/po/pt_PT.po -%%NAGDIR%%/po/ro_RO.po -%%NAGDIR%%/po/ru_RU.po -%%NAGDIR%%/po/sk_SK.po -%%NAGDIR%%/po/sl_SI.po -%%NAGDIR%%/po/sv_SE.po -%%NAGDIR%%/po/zh_CN.po -%%NAGDIR%%/po/zh_TW.po -%%NAGDIR%%/pref_api.php -%%NAGDIR%%/scripts/.htaccess -%%NAGDIR%%/scripts/import_vtodos.php -%%NAGDIR%%/scripts/sql/nag.mssql.sql -%%NAGDIR%%/scripts/sql/nag.oci8.sql -%%NAGDIR%%/scripts/sql/nag.sql -%%NAGDIR%%/scripts/sql/nag.xml -%%NAGDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%NAGDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql -%%NAGDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql -%%NAGDIR%%/scripts/upgrades/2004-09-13_add_uid_field.php -%%NAGDIR%%/search.php -%%NAGDIR%%/task.php -%%NAGDIR%%/tasklists.php -%%NAGDIR%%/templates/common-header.inc -%%NAGDIR%%/templates/data/export.inc -%%NAGDIR%%/templates/data/import.inc -%%NAGDIR%%/templates/list/empty.inc -%%NAGDIR%%/templates/list/header.inc -%%NAGDIR%%/templates/list/task_footers.inc -%%NAGDIR%%/templates/list/task_headers.inc -%%NAGDIR%%/templates/list/task_summaries.inc -%%NAGDIR%%/templates/menu.inc -%%NAGDIR%%/templates/prefs/tasklistselect.inc -%%NAGDIR%%/templates/search/search.inc -%%NAGDIR%%/templates/task/task.inc -%%NAGDIR%%/templates/tasklists/tasklists.inc -%%NAGDIR%%/templates/view/task.inc -%%NAGDIR%%/themes/categoryCSS.php -%%NAGDIR%%/themes/graphics/add.png -%%NAGDIR%%/themes/graphics/alarm.png -%%NAGDIR%%/themes/graphics/alarm_small.png -%%NAGDIR%%/themes/graphics/az.png -%%NAGDIR%%/themes/graphics/checkbox.png -%%NAGDIR%%/themes/graphics/checked.png -%%NAGDIR%%/themes/graphics/favicon.ico -%%NAGDIR%%/themes/graphics/nag.png -%%NAGDIR%%/themes/graphics/note.png -%%NAGDIR%%/themes/graphics/tasklists.png -%%NAGDIR%%/themes/graphics/unchecked.png -%%NAGDIR%%/themes/graphics/za.png -%%NAGDIR%%/themes/screen.css -%%NAGDIR%%/view.php -@dirrm %%NAGDIR%%/themes/graphics -@dirrm %%NAGDIR%%/themes -@dirrm %%NAGDIR%%/templates/view -@dirrm %%NAGDIR%%/templates/tasklists -@dirrm %%NAGDIR%%/templates/task -@dirrm %%NAGDIR%%/templates/search -@dirrm %%NAGDIR%%/templates/prefs -@dirrm %%NAGDIR%%/templates/list -@dirrm %%NAGDIR%%/templates/data -@dirrm %%NAGDIR%%/templates -@dirrm %%NAGDIR%%/scripts/upgrades -@dirrm %%NAGDIR%%/scripts/sql -@dirrm %%NAGDIR%%/scripts -@dirrm %%NAGDIR%%/po -@dirrm %%NAGDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/zh_TW -@dirrm %%NAGDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/zh_CN -@dirrm %%NAGDIR%%/locale/tr_TR -@dirrm %%NAGDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/sv_SE -@dirrm %%NAGDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/sk_SK -@dirrm %%NAGDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/sl_SI -@dirrm %%NAGDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ru_RU -@dirrm %%NAGDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ro_RO -@dirrm %%NAGDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/pt_PT -@dirrm %%NAGDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/pt_BR -@dirrm %%NAGDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/pl_PL -@dirrm %%NAGDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/nn_NO -@dirrm %%NAGDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/nl_NL -@dirrm %%NAGDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/nb_NO -@dirrm %%NAGDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/lv_LV -@dirrm %%NAGDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/lt_LT -@dirrm %%NAGDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ko_KR -@dirrm %%NAGDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ja_JP -@dirrm %%NAGDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/it_IT -@dirrm %%NAGDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/id_ID -@dirrm %%NAGDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/hu_HU -@dirrm %%NAGDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/fr_FR -@dirrm %%NAGDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/fi_FI -@dirrm %%NAGDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/es_ES -@dirrm %%NAGDIR%%/locale/en_US -@dirrm %%NAGDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/el_GR -@dirrm %%NAGDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/de_DE -@dirrm %%NAGDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/da_DK -@dirrm %%NAGDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/cs_CZ -@dirrm %%NAGDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ca_ES -@dirrm %%NAGDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/bg_BG -@dirrm %%NAGDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ar_SY -@dirrm %%NAGDIR%%/locale -@dirrm %%NAGDIR%%/lib/Notification/Listener -@dirrm %%NAGDIR%%/lib/Notification -@dirrm %%NAGDIR%%/lib/Driver -@dirrm %%NAGDIR%%/lib/Block -@dirrm %%NAGDIR%%/lib -@dirrm %%NAGDIR%%/js -@dirrmtry %%NAGDIR%%/config -@dirrmtry %%NAGDIR%% +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/ics.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/prototype.js +%%HORDIR%%/js/tables.js +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Nag.php +%%HORDIR%%/lib/Notification/Listener/status.php +%%HORDIR%%/lib/Widgets.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/list.php +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/id_ID/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/nl_NL/help.xml +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/nag.mo +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/id_ID.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nag.pot +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/pref_api.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_vtodos.php +%%HORDIR%%/scripts/sql/nag.mssql.sql +%%HORDIR%%/scripts/sql/nag.oci8.sql +%%HORDIR%%/scripts/sql/nag.sql +%%HORDIR%%/scripts/sql/nag.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql +%%HORDIR%%/scripts/upgrades/2004-09-13_add_uid_field.php +%%HORDIR%%/search.php +%%HORDIR%%/task.php +%%HORDIR%%/tasklists.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/list/empty.inc +%%HORDIR%%/templates/list/header.inc +%%HORDIR%%/templates/list/task_footers.inc +%%HORDIR%%/templates/list/task_headers.inc +%%HORDIR%%/templates/list/task_summaries.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/prefs/tasklistselect.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/task/task.inc +%%HORDIR%%/templates/tasklists/tasklists.inc +%%HORDIR%%/templates/view/task.inc +%%HORDIR%%/themes/categoryCSS.php +%%HORDIR%%/themes/graphics/add.png +%%HORDIR%%/themes/graphics/alarm.png +%%HORDIR%%/themes/graphics/alarm_small.png +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/checkbox.png +%%HORDIR%%/themes/graphics/checked.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/nag.png +%%HORDIR%%/themes/graphics/note.png +%%HORDIR%%/themes/graphics/tasklists.png +%%HORDIR%%/themes/graphics/unchecked.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/Notification/Listener +@dirrm %%HORDIR%%/lib/Notification +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDIR%%/locale/id_ID +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/list +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/task +@dirrm %%HORDIR%%/templates/tasklists +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/deskutils/horde4-kronolith/Makefile b/deskutils/horde4-kronolith/Makefile index d23e7549c9f1..c6b6b98907f8 100644 --- a/deskutils/horde4-kronolith/Makefile +++ b/deskutils/horde4-kronolith/Makefile @@ -7,69 +7,15 @@ PORTNAME= kronolith PORTVERSION= 2.1.4 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Kronolith is the Horde calendar application -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes -USE_PHP= yes # modules set by Horde, but needed to get PHP_VER +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= keywords.php menu.php prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LKRONOLITHDIR?= ${LHORDEDIR}/kronolith - -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= KRONOLITHDIR=${KRONOLITHDIR} -PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR} - -KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR} -CONFDIR= ${KRONOLITHDIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${KRONOLITHDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${KRONOLITHDIR}/ - @${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${KRONOLITHDIR}/ - @${CHMOD} -R o-rwx ${KRONOLITHDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${KRONOLITHDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${KRONOLITHDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/horde4-kronolith/files/pkg-deinstall.in b/deskutils/horde4-kronolith/files/pkg-deinstall.in deleted file mode 100644 index 97d0a7cca145..000000000000 --- a/deskutils/horde4-kronolith/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Kronolith config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%KRONOLITHDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/horde4-kronolith/files/pkg-install.in b/deskutils/horde4-kronolith/files/pkg-install.in deleted file mode 100644 index 84722b6dc70a..000000000000 --- a/deskutils/horde4-kronolith/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%KRONOLITHDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/horde4-kronolith/files/pkg-message.in b/deskutils/horde4-kronolith/files/pkg-message.in index 8d1569fe4107..dba8deffa2d6 100644 --- a/deskutils/horde4-kronolith/files/pkg-message.in +++ b/deskutils/horde4-kronolith/files/pkg-message.in @@ -1,16 +1,16 @@ ************************************************************************** -Kronolith has been installed in %%KRONOLITHDIR%% with your +Kronolith has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then you have to create some tables from the SQL scripts in -%%KRONOLITHDIR%%/scripts/sql. +%%HORDIR%%/scripts/sql. WARNING! Please note that the MCAL back-end has been deprecated! ******** To migrate from MCAL to SQL, you can use the provided script - %%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php + %%HORDIR%%/scripts/migrate_to_sql_driver.php Finally, you must login to Horde as a Horde Administrator to finish the configuration. diff --git a/deskutils/horde4-kronolith/pkg-plist b/deskutils/horde4-kronolith/pkg-plist index 3ee56c7dd0b1..bb727dffffef 100644 --- a/deskutils/horde4-kronolith/pkg-plist +++ b/deskutils/horde4-kronolith/pkg-plist @@ -1,305 +1,306 @@ -%%KRONOLITHDIR%%/addevent.php -%%KRONOLITHDIR%%/addeventaction.php -%%KRONOLITHDIR%%/attend.php -%%KRONOLITHDIR%%/attendees.php -%%KRONOLITHDIR%%/calendar_search.php -%%KRONOLITHDIR%%/calendars.php -%%KRONOLITHDIR%%/config/.htaccess -%%KRONOLITHDIR%%/config/conf.xml -%%KRONOLITHDIR%%/config/keywords.php.dist -%%KRONOLITHDIR%%/config/menu.php.dist -%%KRONOLITHDIR%%/config/prefs.php.dist -%%KRONOLITHDIR%%/contacts.php -%%KRONOLITHDIR%%/data.php -%%KRONOLITHDIR%%/day.php -%%KRONOLITHDIR%%/delevent.php -%%KRONOLITHDIR%%/deleventaction.php -%%KRONOLITHDIR%%/editevent.php -%%KRONOLITHDIR%%/editeventaction.php -%%KRONOLITHDIR%%/fb.php -%%KRONOLITHDIR%%/ics.php -%%KRONOLITHDIR%%/index.php -%%KRONOLITHDIR%%/js/fixUnstyledOptions.js -%%KRONOLITHDIR%%/js/stripe.js -%%KRONOLITHDIR%%/lib/Block/month.php -%%KRONOLITHDIR%%/lib/Block/monthlist.php -%%KRONOLITHDIR%%/lib/Block/prevmonthlist.php -%%KRONOLITHDIR%%/lib/Block/summary.php -%%KRONOLITHDIR%%/lib/Block/tree_alarms.php -%%KRONOLITHDIR%%/lib/Block/tree_menu.php -%%KRONOLITHDIR%%/lib/Day.php -%%KRONOLITHDIR%%/lib/DayView.php -%%KRONOLITHDIR%%/lib/Driver.php -%%KRONOLITHDIR%%/lib/Driver/ical.php -%%KRONOLITHDIR%%/lib/Driver/kolab.php -%%KRONOLITHDIR%%/lib/Driver/sql.php -%%KRONOLITHDIR%%/lib/FBView.php -%%KRONOLITHDIR%%/lib/FBView/day.php -%%KRONOLITHDIR%%/lib/FBView/week.php -%%KRONOLITHDIR%%/lib/FBView/workweek.php -%%KRONOLITHDIR%%/lib/Kronolith.php -%%KRONOLITHDIR%%/lib/Scheduler/kronolith.php -%%KRONOLITHDIR%%/lib/Storage.php -%%KRONOLITHDIR%%/lib/Storage/kolab.php -%%KRONOLITHDIR%%/lib/Storage/sql.php -%%KRONOLITHDIR%%/lib/WeekView.php -%%KRONOLITHDIR%%/lib/api.php -%%KRONOLITHDIR%%/lib/base.php -%%KRONOLITHDIR%%/lib/prefs.php -%%KRONOLITHDIR%%/lib/version.php -%%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/de_DE/help.xml -%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/en_US/help.xml -%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/es_ES/help.xml -%%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/fi_FI/help.xml -%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/hu_HU/help.xml -%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ja_JP/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/pt_BR/help.xml -%%KRONOLITHDIR%%/locale/pt_PT/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/sl_SI/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/tr_TR/help.xml -%%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/month.php -%%KRONOLITHDIR%%/po/README -%%KRONOLITHDIR%%/po/ar_SY.po -%%KRONOLITHDIR%%/po/bg_BG.po -%%KRONOLITHDIR%%/po/cs_CZ.po -%%KRONOLITHDIR%%/po/da_DK.po -%%KRONOLITHDIR%%/po/de_DE.po -%%KRONOLITHDIR%%/po/el_GR.po -%%KRONOLITHDIR%%/po/es_ES.po -%%KRONOLITHDIR%%/po/fi_FI.po -%%KRONOLITHDIR%%/po/fr_FR.po -%%KRONOLITHDIR%%/po/hu_HU.po -%%KRONOLITHDIR%%/po/it_IT.po -%%KRONOLITHDIR%%/po/ja_JP.po -%%KRONOLITHDIR%%/po/ko_KR.po -%%KRONOLITHDIR%%/po/kronolith.pot -%%KRONOLITHDIR%%/po/lt_LT.po -%%KRONOLITHDIR%%/po/lv_LV.po -%%KRONOLITHDIR%%/po/nb_NO.po -%%KRONOLITHDIR%%/po/nl_NL.po -%%KRONOLITHDIR%%/po/nn_NO.po -%%KRONOLITHDIR%%/po/pl_PL.po -%%KRONOLITHDIR%%/po/pt_BR.po -%%KRONOLITHDIR%%/po/pt_PT.po -%%KRONOLITHDIR%%/po/ro_RO.po -%%KRONOLITHDIR%%/po/ru_RU.po -%%KRONOLITHDIR%%/po/sk_SK.po -%%KRONOLITHDIR%%/po/sl_SI.po -%%KRONOLITHDIR%%/po/sv_SE.po -%%KRONOLITHDIR%%/po/zh_CN.po -%%KRONOLITHDIR%%/po/zh_TW.po -%%KRONOLITHDIR%%/scripts/.htaccess -%%KRONOLITHDIR%%/scripts/import_icals.php -%%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php -%%KRONOLITHDIR%%/scripts/reminders.php -%%KRONOLITHDIR%%/scripts/sql/kronolith.mssql.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.mysql.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.oci8.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.pgsql.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.xml -%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql -%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql -%%KRONOLITHDIR%%/scripts/upgrades/2004-05-19_convert_categories_to_strings.php -%%KRONOLITHDIR%%/scripts/upgrades/2004-12-21_add_event_uid.pgsql.sql -%%KRONOLITHDIR%%/scripts/upgrades/2004-12-21_add_event_uid.sql -%%KRONOLITHDIR%%/scripts/upgrades/2006-08-20_fix_recur_int_fields.mysql.sql -%%KRONOLITHDIR%%/search.php -%%KRONOLITHDIR%%/templates/attendees/attendees.inc -%%KRONOLITHDIR%%/templates/calendars/calendars.inc -%%KRONOLITHDIR%%/templates/calendars/search.inc -%%KRONOLITHDIR%%/templates/category_legend.inc -%%KRONOLITHDIR%%/templates/common-header.inc -%%KRONOLITHDIR%%/templates/contacts/contacts.inc -%%KRONOLITHDIR%%/templates/data/export.inc -%%KRONOLITHDIR%%/templates/data/import.inc -%%KRONOLITHDIR%%/templates/day/all_day.inc -%%KRONOLITHDIR%%/templates/day/head.inc -%%KRONOLITHDIR%%/templates/day/head_side_by_side.inc -%%KRONOLITHDIR%%/templates/day/rows.html -%%KRONOLITHDIR%%/templates/delete/delete.inc -%%KRONOLITHDIR%%/templates/delete/one.inc -%%KRONOLITHDIR%%/templates/edit/edit.inc -%%KRONOLITHDIR%%/templates/edit/edit_timespan.inc -%%KRONOLITHDIR%%/templates/edit/javascript.inc -%%KRONOLITHDIR%%/templates/fbview/busyblock.tpl -%%KRONOLITHDIR%%/templates/fbview/emptyblock.tpl -%%KRONOLITHDIR%%/templates/fbview/header.tpl -%%KRONOLITHDIR%%/templates/fbview/legend.tpl -%%KRONOLITHDIR%%/templates/fbview/meetingblock.tpl -%%KRONOLITHDIR%%/templates/fbview/row.tpl -%%KRONOLITHDIR%%/templates/fbview/section.tpl -%%KRONOLITHDIR%%/templates/fbview/unknownblock.tpl -%%KRONOLITHDIR%%/templates/javascript/goto.js -%%KRONOLITHDIR%%/templates/javascript/open_attendees_win.js -%%KRONOLITHDIR%%/templates/javascript/open_calendar_search.js -%%KRONOLITHDIR%%/templates/menu.inc -%%KRONOLITHDIR%%/templates/month/head.inc -%%KRONOLITHDIR%%/templates/month/head_side_by_side.inc -%%KRONOLITHDIR%%/templates/prefs/fb_cals_select.inc -%%KRONOLITHDIR%%/templates/prefs/remote_cal_management.inc -%%KRONOLITHDIR%%/templates/prefs/search_abook_select.inc -%%KRONOLITHDIR%%/templates/prefs/shareselect.inc -%%KRONOLITHDIR%%/templates/search/empty.inc -%%KRONOLITHDIR%%/templates/search/event_footers.inc -%%KRONOLITHDIR%%/templates/search/event_headers.inc -%%KRONOLITHDIR%%/templates/search/event_summaries.inc -%%KRONOLITHDIR%%/templates/search/header.inc -%%KRONOLITHDIR%%/templates/search/search.inc -%%KRONOLITHDIR%%/templates/search/search_advanced.inc -%%KRONOLITHDIR%%/templates/view/view.inc -%%KRONOLITHDIR%%/templates/week/head.inc -%%KRONOLITHDIR%%/templates/week/head_side_by_side.inc -%%KRONOLITHDIR%%/templates/year/head.inc -%%KRONOLITHDIR%%/themes/bluewhite/screen.css -%%KRONOLITHDIR%%/themes/burntorange/screen.css -%%KRONOLITHDIR%%/themes/categoryCSS.php -%%KRONOLITHDIR%%/themes/graphics/addressbook_browse.png -%%KRONOLITHDIR%%/themes/graphics/alarm.png -%%KRONOLITHDIR%%/themes/graphics/alarm_small.png -%%KRONOLITHDIR%%/themes/graphics/attendees.png -%%KRONOLITHDIR%%/themes/graphics/calendars.png -%%KRONOLITHDIR%%/themes/graphics/dayview.png -%%KRONOLITHDIR%%/themes/graphics/expand.png -%%KRONOLITHDIR%%/themes/graphics/favicon.ico -%%KRONOLITHDIR%%/themes/graphics/goto.png -%%KRONOLITHDIR%%/themes/graphics/kronolith.png -%%KRONOLITHDIR%%/themes/graphics/monthview.png -%%KRONOLITHDIR%%/themes/graphics/new.png -%%KRONOLITHDIR%%/themes/graphics/new_big.png -%%KRONOLITHDIR%%/themes/graphics/new_small.png -%%KRONOLITHDIR%%/themes/graphics/recur.png -%%KRONOLITHDIR%%/themes/graphics/today.png -%%KRONOLITHDIR%%/themes/graphics/unknown-background.png -%%KRONOLITHDIR%%/themes/graphics/weekview.png -%%KRONOLITHDIR%%/themes/graphics/workweekview.png -%%KRONOLITHDIR%%/themes/graphics/yearview.png -%%KRONOLITHDIR%%/themes/mozilla/screen.css -%%KRONOLITHDIR%%/themes/print/screen.css -%%KRONOLITHDIR%%/themes/screen.css -%%KRONOLITHDIR%%/themes/simplex/screen.css -%%KRONOLITHDIR%%/viewevent.php -%%KRONOLITHDIR%%/week.php -%%KRONOLITHDIR%%/workweek.php -%%KRONOLITHDIR%%/year.php -@dirrm %%KRONOLITHDIR%%/themes/simplex -@dirrm %%KRONOLITHDIR%%/themes/print -@dirrm %%KRONOLITHDIR%%/themes/mozilla -@dirrm %%KRONOLITHDIR%%/themes/graphics -@dirrm %%KRONOLITHDIR%%/themes/burntorange -@dirrm %%KRONOLITHDIR%%/themes/bluewhite -@dirrm %%KRONOLITHDIR%%/themes -@dirrm %%KRONOLITHDIR%%/templates/year -@dirrm %%KRONOLITHDIR%%/templates/week -@dirrm %%KRONOLITHDIR%%/templates/view -@dirrm %%KRONOLITHDIR%%/templates/search -@dirrm %%KRONOLITHDIR%%/templates/prefs -@dirrm %%KRONOLITHDIR%%/templates/month -@dirrm %%KRONOLITHDIR%%/templates/javascript -@dirrm %%KRONOLITHDIR%%/templates/fbview -@dirrm %%KRONOLITHDIR%%/templates/edit -@dirrm %%KRONOLITHDIR%%/templates/delete -@dirrm %%KRONOLITHDIR%%/templates/day -@dirrm %%KRONOLITHDIR%%/templates/data -@dirrm %%KRONOLITHDIR%%/templates/contacts -@dirrm %%KRONOLITHDIR%%/templates/calendars -@dirrm %%KRONOLITHDIR%%/templates/attendees -@dirrm %%KRONOLITHDIR%%/templates -@dirrm %%KRONOLITHDIR%%/scripts/upgrades -@dirrm %%KRONOLITHDIR%%/scripts/sql -@dirrm %%KRONOLITHDIR%%/scripts -@dirrm %%KRONOLITHDIR%%/po -@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/zh_TW -@dirrm %%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/zh_CN -@dirrm %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/tr_TR -@dirrm %%KRONOLITHDIR%%/locale/sv_SE -@dirrm %%KRONOLITHDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/sl_SI -@dirrm %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/sk_SK -@dirrm %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ru_RU -@dirrm %%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ro_RO -@dirrm %%KRONOLITHDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/pt_PT -@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/pt_BR -@dirrm %%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/pl_PL -@dirrm %%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/nn_NO -@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/nl_NL -@dirrm %%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/nb_NO -@dirrm %%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/lv_LV -@dirrm %%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/lt_LT -@dirrm %%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ko_KR -@dirrm %%KRONOLITHDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ja_JP -@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/it_IT -@dirrm %%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/hu_HU -@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/fr_FR -@dirrm %%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/fi_FI -@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/es_ES -@dirrm %%KRONOLITHDIR%%/locale/en_US -@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/el_GR -@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/de_DE -@dirrm %%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/da_DK -@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/cs_CZ -@dirrm %%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/bg_BG -@dirrm %%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ar_SY -@dirrm %%KRONOLITHDIR%%/locale -@dirrm %%KRONOLITHDIR%%/lib/Storage -@dirrm %%KRONOLITHDIR%%/lib/Scheduler -@dirrm %%KRONOLITHDIR%%/lib/FBView -@dirrm %%KRONOLITHDIR%%/lib/Driver -@dirrm %%KRONOLITHDIR%%/lib/Block -@dirrm %%KRONOLITHDIR%%/lib -@dirrm %%KRONOLITHDIR%%/js -@dirrmtry %%KRONOLITHDIR%%/config -@dirrmtry %%KRONOLITHDIR%% +%%HORDIR%%/addevent.php +%%HORDIR%%/addeventaction.php +%%HORDIR%%/attend.php +%%HORDIR%%/attendees.php +%%HORDIR%%/calendar_search.php +%%HORDIR%%/calendars.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/keywords.php.dist +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/contacts.php +%%HORDIR%%/data.php +%%HORDIR%%/day.php +%%HORDIR%%/delevent.php +%%HORDIR%%/deleventaction.php +%%HORDIR%%/editevent.php +%%HORDIR%%/editeventaction.php +%%HORDIR%%/fb.php +%%HORDIR%%/ics.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/stripe.js +%%HORDIR%%/lib/Block/month.php +%%HORDIR%%/lib/Block/monthlist.php +%%HORDIR%%/lib/Block/prevmonthlist.php +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Block/tree_alarms.php +%%HORDIR%%/lib/Block/tree_menu.php +%%HORDIR%%/lib/Day.php +%%HORDIR%%/lib/DayView.php +%%HORDIR%%/lib/Driver/ical.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/FBView/day.php +%%HORDIR%%/lib/FBView/week.php +%%HORDIR%%/lib/FBView/workweek.php +%%HORDIR%%/lib/FBView.php +%%HORDIR%%/lib/Kronolith.php +%%HORDIR%%/lib/Scheduler/kronolith.php +%%HORDIR%%/lib/Storage/kolab.php +%%HORDIR%%/lib/Storage/sql.php +%%HORDIR%%/lib/Storage.php +%%HORDIR%%/lib/WeekView.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo +%%HORDIR%%/month.php +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/kronolith.pot +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_icals.php +%%HORDIR%%/scripts/migrate_to_sql_driver.php +%%HORDIR%%/scripts/reminders.php +%%HORDIR%%/scripts/sql/kronolith.mssql.sql +%%HORDIR%%/scripts/sql/kronolith.mysql.sql +%%HORDIR%%/scripts/sql/kronolith.oci8.sql +%%HORDIR%%/scripts/sql/kronolith.pgsql.sql +%%HORDIR%%/scripts/sql/kronolith.sql +%%HORDIR%%/scripts/sql/kronolith.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql +%%HORDIR%%/scripts/upgrades/2004-05-19_convert_categories_to_strings.php +%%HORDIR%%/scripts/upgrades/2004-12-21_add_event_uid.pgsql.sql +%%HORDIR%%/scripts/upgrades/2004-12-21_add_event_uid.sql +%%HORDIR%%/scripts/upgrades/2006-08-20_fix_recur_int_fields.mysql.sql +%%HORDIR%%/search.php +%%HORDIR%%/templates/attendees/attendees.inc +%%HORDIR%%/templates/calendars/calendars.inc +%%HORDIR%%/templates/calendars/search.inc +%%HORDIR%%/templates/category_legend.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/contacts/contacts.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/day/all_day.inc +%%HORDIR%%/templates/day/head.inc +%%HORDIR%%/templates/day/head_side_by_side.inc +%%HORDIR%%/templates/day/rows.html +%%HORDIR%%/templates/delete/delete.inc +%%HORDIR%%/templates/delete/one.inc +%%HORDIR%%/templates/edit/edit.inc +%%HORDIR%%/templates/edit/edit_timespan.inc +%%HORDIR%%/templates/edit/javascript.inc +%%HORDIR%%/templates/fbview/busyblock.tpl +%%HORDIR%%/templates/fbview/emptyblock.tpl +%%HORDIR%%/templates/fbview/header.tpl +%%HORDIR%%/templates/fbview/legend.tpl +%%HORDIR%%/templates/fbview/meetingblock.tpl +%%HORDIR%%/templates/fbview/row.tpl +%%HORDIR%%/templates/fbview/section.tpl +%%HORDIR%%/templates/fbview/unknownblock.tpl +%%HORDIR%%/templates/javascript/goto.js +%%HORDIR%%/templates/javascript/open_attendees_win.js +%%HORDIR%%/templates/javascript/open_calendar_search.js +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/month/head.inc +%%HORDIR%%/templates/month/head_side_by_side.inc +%%HORDIR%%/templates/prefs/fb_cals_select.inc +%%HORDIR%%/templates/prefs/remote_cal_management.inc +%%HORDIR%%/templates/prefs/search_abook_select.inc +%%HORDIR%%/templates/prefs/shareselect.inc +%%HORDIR%%/templates/search/empty.inc +%%HORDIR%%/templates/search/event_footers.inc +%%HORDIR%%/templates/search/event_headers.inc +%%HORDIR%%/templates/search/event_summaries.inc +%%HORDIR%%/templates/search/header.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/search/search_advanced.inc +%%HORDIR%%/templates/view/view.inc +%%HORDIR%%/templates/week/head.inc +%%HORDIR%%/templates/week/head_side_by_side.inc +%%HORDIR%%/templates/year/head.inc +%%HORDIR%%/themes/bluewhite/screen.css +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/categoryCSS.php +%%HORDIR%%/themes/graphics/addressbook_browse.png +%%HORDIR%%/themes/graphics/alarm.png +%%HORDIR%%/themes/graphics/alarm_small.png +%%HORDIR%%/themes/graphics/attendees.png +%%HORDIR%%/themes/graphics/calendars.png +%%HORDIR%%/themes/graphics/dayview.png +%%HORDIR%%/themes/graphics/expand.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/goto.png +%%HORDIR%%/themes/graphics/kronolith.png +%%HORDIR%%/themes/graphics/monthview.png +%%HORDIR%%/themes/graphics/new.png +%%HORDIR%%/themes/graphics/new_big.png +%%HORDIR%%/themes/graphics/new_small.png +%%HORDIR%%/themes/graphics/recur.png +%%HORDIR%%/themes/graphics/today.png +%%HORDIR%%/themes/graphics/unknown-background.png +%%HORDIR%%/themes/graphics/weekview.png +%%HORDIR%%/themes/graphics/workweekview.png +%%HORDIR%%/themes/graphics/yearview.png +%%HORDIR%%/themes/mozilla/screen.css +%%HORDIR%%/themes/print/screen.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/themes/simplex/screen.css +%%HORDIR%%/viewevent.php +%%HORDIR%%/week.php +%%HORDIR%%/workweek.php +%%HORDIR%%/year.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/FBView +@dirrm %%HORDIR%%/lib/Scheduler +@dirrm %%HORDIR%%/lib/Storage +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/attendees +@dirrm %%HORDIR%%/templates/calendars +@dirrm %%HORDIR%%/templates/contacts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/day +@dirrm %%HORDIR%%/templates/delete +@dirrm %%HORDIR%%/templates/edit +@dirrm %%HORDIR%%/templates/fbview +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/month +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates/week +@dirrm %%HORDIR%%/templates/year +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/bluewhite +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/mozilla +@dirrm %%HORDIR%%/themes/print +@dirrm %%HORDIR%%/themes/simplex +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/deskutils/horde4-mnemo/Makefile b/deskutils/horde4-mnemo/Makefile index ba9327b1d2e5..4733d120146a 100644 --- a/deskutils/horde4-mnemo/Makefile +++ b/deskutils/horde4-mnemo/Makefile @@ -7,69 +7,15 @@ PORTNAME= mnemo PORTVERSION= 2.1.1 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE -DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= beech@alaskaparadise.com COMMENT= Mnemo is the Horde notes and memos application -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -PLIST_SUB= MNEMODIR=${LMNEMODIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= MNEMODIR=${MNEMODIR} - -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LMNEMODIR?= ${LHORDEDIR}/mnemo - -MNEMODIR= ${PREFIX}/${LMNEMODIR} -CONFDIR= ${MNEMODIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${MNEMODIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${MNEMODIR}/ - @${CP} -p ${WRKSRC}/*.php ${MNEMODIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${MNEMODIR}/ - @${CHMOD} -R o-rwx ${MNEMODIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${MNEMODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${MNEMODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/horde4-mnemo/files/pkg-deinstall.in b/deskutils/horde4-mnemo/files/pkg-deinstall.in deleted file mode 100644 index 01e0ca9f6e7b..000000000000 --- a/deskutils/horde4-mnemo/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Mnemo config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%MNEMODIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/horde4-mnemo/files/pkg-install.in b/deskutils/horde4-mnemo/files/pkg-install.in deleted file mode 100644 index 2b5fd65ba10e..000000000000 --- a/deskutils/horde4-mnemo/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%MNEMODIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/horde4-mnemo/files/pkg-message.in b/deskutils/horde4-mnemo/files/pkg-message.in index bbd8d585a94d..07089e835ce8 100644 --- a/deskutils/horde4-mnemo/files/pkg-message.in +++ b/deskutils/horde4-mnemo/files/pkg-message.in @@ -1,15 +1,14 @@ ************************************************************************ -Mnemo has been installed in %%MNEMODIR%% with your blank +Mnemo has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then, you have to create the table mnemo_memos, from the SQL script -%%MNEMODIR%%/scripts/sql/mnemo.sql +%%HORDIR%%/scripts/sql/mnemo.sql For example, if your database is MySQL, you may run mysql --user=root --password=yourpass horde < mnemo.sql Finally, you must login to Horde as a Horde Administrator to finish the configuration. - ************************************************************************ diff --git a/deskutils/horde4-mnemo/pkg-plist b/deskutils/horde4-mnemo/pkg-plist index 1812bb6810af..d9f44485e44c 100644 --- a/deskutils/horde4-mnemo/pkg-plist +++ b/deskutils/horde4-mnemo/pkg-plist @@ -1,190 +1,191 @@ -%%MNEMODIR%%/config/.htaccess -%%MNEMODIR%%/config/conf.xml -%%MNEMODIR%%/config/prefs.php.dist -%%MNEMODIR%%/data.php -%%MNEMODIR%%/index.php -%%MNEMODIR%%/js/fixUnstyledOptions.js -%%MNEMODIR%%/js/tables.js -%%MNEMODIR%%/lib/Block/summary.php -%%MNEMODIR%%/lib/Driver.php -%%MNEMODIR%%/lib/Driver/kolab.php -%%MNEMODIR%%/lib/Driver/sql.php -%%MNEMODIR%%/lib/Mnemo.php -%%MNEMODIR%%/lib/api.php -%%MNEMODIR%%/lib/base.php -%%MNEMODIR%%/lib/prefs.php -%%MNEMODIR%%/lib/version.php -%%MNEMODIR%%/list.php -%%MNEMODIR%%/locale/bg_BG/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/cs_CZ/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/da_DK/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/da_DK/help.xml -%%MNEMODIR%%/locale/de_DE/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/de_DE/help.xml -%%MNEMODIR%%/locale/el_GR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/en_US/help.xml -%%MNEMODIR%%/locale/es_ES/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/es_ES/help.xml -%%MNEMODIR%%/locale/fi_FI/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/fi_FI/help.xml -%%MNEMODIR%%/locale/fr_FR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/hu_HU/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/hu_HU/help.xml -%%MNEMODIR%%/locale/it_IT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/it_IT/help.xml -%%MNEMODIR%%/locale/ja_JP/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lt_LT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lv_LV/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lv_LV/help.xml -%%MNEMODIR%%/locale/nb_NO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/nl_NL/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/nn_NO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pl_PL/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pt_BR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pt_PT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/ro_RO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/ru_RU/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sk_SK/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sk_SK/help.xml -%%MNEMODIR%%/locale/sl_SI/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sv_SE/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/tr_TR/help.xml -%%MNEMODIR%%/locale/zh_CN/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/zh_TW/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/memo.php -%%MNEMODIR%%/notepads.php -%%MNEMODIR%%/po/README -%%MNEMODIR%%/po/bg_BG.po -%%MNEMODIR%%/po/cs_CZ.po -%%MNEMODIR%%/po/da_DK.po -%%MNEMODIR%%/po/de_DE.po -%%MNEMODIR%%/po/el_GR.po -%%MNEMODIR%%/po/es_ES.po -%%MNEMODIR%%/po/fi_FI.po -%%MNEMODIR%%/po/fr_FR.po -%%MNEMODIR%%/po/hu_HU.po -%%MNEMODIR%%/po/it_IT.po -%%MNEMODIR%%/po/ja_JP.po -%%MNEMODIR%%/po/lt_LT.po -%%MNEMODIR%%/po/lv_LV.po -%%MNEMODIR%%/po/mnemo.pot -%%MNEMODIR%%/po/nb_NO.po -%%MNEMODIR%%/po/nl_NL.po -%%MNEMODIR%%/po/nn_NO.po -%%MNEMODIR%%/po/pl_PL.po -%%MNEMODIR%%/po/pt_BR.po -%%MNEMODIR%%/po/pt_PT.po -%%MNEMODIR%%/po/ro_RO.po -%%MNEMODIR%%/po/ru_RU.po -%%MNEMODIR%%/po/sl_SI.po -%%MNEMODIR%%/po/sk_SK.po -%%MNEMODIR%%/po/sv_SE.po -%%MNEMODIR%%/po/zh_CN.po -%%MNEMODIR%%/po/zh_TW.po -%%MNEMODIR%%/scripts/.htaccess -%%MNEMODIR%%/scripts/import_vnotes.php -%%MNEMODIR%%/scripts/sql/mnemo.mssql.sql -%%MNEMODIR%%/scripts/sql/mnemo.oci8.sql -%%MNEMODIR%%/scripts/sql/mnemo.sql -%%MNEMODIR%%/scripts/sql/mnemo.xml -%%MNEMODIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%MNEMODIR%%/scripts/upgrades/1.1_to_2.0.pgsq.sql -%%MNEMODIR%%/scripts/upgrades/2004-12-21_add_memo_uid.sql -%%MNEMODIR%%/search.php -%%MNEMODIR%%/templates/common-header.inc -%%MNEMODIR%%/templates/data/export.inc -%%MNEMODIR%%/templates/data/import.inc -%%MNEMODIR%%/templates/list/empty.inc -%%MNEMODIR%%/templates/list/header.inc -%%MNEMODIR%%/templates/list/memo_footers.inc -%%MNEMODIR%%/templates/list/memo_headers.inc -%%MNEMODIR%%/templates/list/memo_summaries.inc -%%MNEMODIR%%/templates/memo/memo.inc -%%MNEMODIR%%/templates/menu.inc -%%MNEMODIR%%/templates/notepads/notepads.inc -%%MNEMODIR%%/templates/prefs/notepadselect.inc -%%MNEMODIR%%/templates/search/search.inc -%%MNEMODIR%%/templates/view/memo.inc -%%MNEMODIR%%/themes/graphics/add.png -%%MNEMODIR%%/themes/graphics/az.png -%%MNEMODIR%%/themes/graphics/favicon.ico -%%MNEMODIR%%/themes/graphics/mnemo.png -%%MNEMODIR%%/themes/graphics/notepads.png -%%MNEMODIR%%/themes/graphics/za.png -%%MNEMODIR%%/themes/screen.css -%%MNEMODIR%%/view.php -@dirrm %%MNEMODIR%%/themes/graphics -@dirrm %%MNEMODIR%%/themes -@dirrm %%MNEMODIR%%/templates/view -@dirrm %%MNEMODIR%%/templates/search -@dirrm %%MNEMODIR%%/templates/prefs -@dirrm %%MNEMODIR%%/templates/notepads -@dirrm %%MNEMODIR%%/templates/memo -@dirrm %%MNEMODIR%%/templates/list -@dirrm %%MNEMODIR%%/templates/data -@dirrm %%MNEMODIR%%/templates -@dirrm %%MNEMODIR%%/scripts/upgrades -@dirrm %%MNEMODIR%%/scripts/sql -@dirrm %%MNEMODIR%%/scripts -@dirrm %%MNEMODIR%%/po -@dirrm %%MNEMODIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/zh_TW -@dirrm %%MNEMODIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/zh_CN -@dirrm %%MNEMODIR%%/locale/tr_TR -@dirrm %%MNEMODIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sv_SE -@dirrm %%MNEMODIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sl_SI -@dirrm %%MNEMODIR%%/locale/sk_SK -@dirrm %%MNEMODIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ru_RU -@dirrm %%MNEMODIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ro_RO -@dirrm %%MNEMODIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pt_PT -@dirrm %%MNEMODIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pt_BR -@dirrm %%MNEMODIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pl_PL -@dirrm %%MNEMODIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nn_NO -@dirrm %%MNEMODIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nl_NL -@dirrm %%MNEMODIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nb_NO -@dirrm %%MNEMODIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/lv_LV -@dirrm %%MNEMODIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/lt_LT -@dirrm %%MNEMODIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ja_JP -@dirrm %%MNEMODIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/it_IT -@dirrm %%MNEMODIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/hu_HU -@dirrm %%MNEMODIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/fr_FR -@dirrm %%MNEMODIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/fi_FI -@dirrm %%MNEMODIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/es_ES -@dirrm %%MNEMODIR%%/locale/en_US -@dirrm %%MNEMODIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/el_GR -@dirrm %%MNEMODIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/de_DE -@dirrm %%MNEMODIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/da_DK -@dirrm %%MNEMODIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/cs_CZ -@dirrm %%MNEMODIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/bg_BG -@dirrm %%MNEMODIR%%/locale -@dirrm %%MNEMODIR%%/lib/Driver -@dirrm %%MNEMODIR%%/lib/Block -@dirrm %%MNEMODIR%%/lib -@dirrm %%MNEMODIR%%/js -@dirrmtry %%MNEMODIR%%/config -@dirrmtry %%MNEMODIR%% +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/tables.js +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Mnemo.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/list.php +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/da_DK/help.xml +%%HORDIR%%/locale/de_DE/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/it_IT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/it_IT/help.xml +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/mnemo.mo +%%HORDIR%%/memo.php +%%HORDIR%%/notepads.php +%%HORDIR%%/po/README +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mnemo.pot +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_vnotes.php +%%HORDIR%%/scripts/sql/mnemo.mssql.sql +%%HORDIR%%/scripts/sql/mnemo.oci8.sql +%%HORDIR%%/scripts/sql/mnemo.sql +%%HORDIR%%/scripts/sql/mnemo.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsq.sql +%%HORDIR%%/scripts/upgrades/2004-12-21_add_memo_uid.sql +%%HORDIR%%/search.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/list/empty.inc +%%HORDIR%%/templates/list/header.inc +%%HORDIR%%/templates/list/memo_footers.inc +%%HORDIR%%/templates/list/memo_headers.inc +%%HORDIR%%/templates/list/memo_summaries.inc +%%HORDIR%%/templates/memo/memo.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/notepads/notepads.inc +%%HORDIR%%/templates/prefs/notepadselect.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/view/memo.inc +%%HORDIR%%/themes/graphics/add.png +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/mnemo.png +%%HORDIR%%/themes/graphics/notepads.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/list +@dirrm %%HORDIR%%/templates/memo +@dirrm %%HORDIR%%/templates/notepads +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/deskutils/horde4-nag/Makefile b/deskutils/horde4-nag/Makefile index 8f0c055af8df..dffdf08643e2 100644 --- a/deskutils/horde4-nag/Makefile +++ b/deskutils/horde4-nag/Makefile @@ -7,68 +7,15 @@ PORTNAME= nag PORTVERSION= 2.1.3 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Simple multiuser task list manager -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -PLIST_SUB= NAGDIR=${LNAGDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= NAGDIR=${NAGDIR} - -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= menu.php prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LNAGDIR?= ${LHORDEDIR}/nag - -NAGDIR= ${PREFIX}/${LNAGDIR} -CONFDIR= ${NAGDIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${NAGDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${NAGDIR}/ - @${CP} -p ${WRKSRC}/*.php ${NAGDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${NAGDIR}/ - @${CHMOD} -R o-rwx ${NAGDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${NAGDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${NAGDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/horde4-nag/files/pkg-deinstall.in b/deskutils/horde4-nag/files/pkg-deinstall.in deleted file mode 100644 index 6996f090da6d..000000000000 --- a/deskutils/horde4-nag/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Nag config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%NAGDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/horde4-nag/files/pkg-install.in b/deskutils/horde4-nag/files/pkg-install.in deleted file mode 100644 index f7ec7e0017b6..000000000000 --- a/deskutils/horde4-nag/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%NAGDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/horde4-nag/files/pkg-message.in b/deskutils/horde4-nag/files/pkg-message.in index 98c57ea5118a..2a7122633db6 100644 --- a/deskutils/horde4-nag/files/pkg-message.in +++ b/deskutils/horde4-nag/files/pkg-message.in @@ -1,11 +1,11 @@ ************************************************************************ -Nag has been installed in %%NAGDIR%% with your blank +Nag has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then, you have to create the table nag_tasks, from the SQL script -%%NAGDIR%%/scripts/sql/nag.sql. +%%HORDIR%%/scripts/sql/nag.sql. For example, if your database is MySQL, you may run mysql --user=root --password=yourpass horde < nag.sql diff --git a/deskutils/horde4-nag/pkg-plist b/deskutils/horde4-nag/pkg-plist index 8681dda8b9a9..eb7c120b72f3 100644 --- a/deskutils/horde4-nag/pkg-plist +++ b/deskutils/horde4-nag/pkg-plist @@ -1,223 +1,224 @@ -%%NAGDIR%%/config/.htaccess -%%NAGDIR%%/config/conf.xml -%%NAGDIR%%/config/menu.php.dist -%%NAGDIR%%/config/prefs.php.dist -%%NAGDIR%%/data.php -%%NAGDIR%%/ics.php -%%NAGDIR%%/index.php -%%NAGDIR%%/js/fixUnstyledOptions.js -%%NAGDIR%%/js/tables.js -%%NAGDIR%%/js/prototype.js -%%NAGDIR%%/lib/.htaccess -%%NAGDIR%%/lib/Block/summary.php -%%NAGDIR%%/lib/Driver.php -%%NAGDIR%%/lib/Driver/kolab.php -%%NAGDIR%%/lib/Driver/sql.php -%%NAGDIR%%/lib/Nag.php -%%NAGDIR%%/lib/Notification/Listener/status.php -%%NAGDIR%%/lib/Widgets.php -%%NAGDIR%%/lib/api.php -%%NAGDIR%%/lib/base.php -%%NAGDIR%%/lib/prefs.php -%%NAGDIR%%/lib/version.php -%%NAGDIR%%/list.php -%%NAGDIR%%/locale/ar_SY/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/bg_BG/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ca_ES/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ca_ES/help.xml -%%NAGDIR%%/locale/cs_CZ/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/da_DK/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/de_DE/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/de_DE/help.xml -%%NAGDIR%%/locale/el_GR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/en_US/help.xml -%%NAGDIR%%/locale/es_ES/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/es_ES/help.xml -%%NAGDIR%%/locale/fi_FI/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/fi_FI/help.xml -%%NAGDIR%%/locale/fr_FR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/hu_HU/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/hu_HU/help.xml -%%NAGDIR%%/locale/id_ID/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/it_IT/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ja_JP/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ko_KR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/lt_LT/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/lv_LV/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/lv_LV/help.xml -%%NAGDIR%%/locale/nb_NO/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/nl_NL/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/nl_NL/help.xml -%%NAGDIR%%/locale/nn_NO/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/pl_PL/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/pt_BR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/pt_PT/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ro_RO/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ru_RU/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/sk_SK/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/sk_SK/help.xml -%%NAGDIR%%/locale/sl_SI/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/sv_SE/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/tr_TR/help.xml -%%NAGDIR%%/locale/zh_CN/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/zh_TW/LC_MESSAGES/nag.mo -%%NAGDIR%%/po/README -%%NAGDIR%%/po/ar_SY.po -%%NAGDIR%%/po/bg_BG.po -%%NAGDIR%%/po/ca_ES.po -%%NAGDIR%%/po/cs_CZ.po -%%NAGDIR%%/po/da_DK.po -%%NAGDIR%%/po/de_DE.po -%%NAGDIR%%/po/el_GR.po -%%NAGDIR%%/po/es_ES.po -%%NAGDIR%%/po/fi_FI.po -%%NAGDIR%%/po/fr_FR.po -%%NAGDIR%%/po/hu_HU.po -%%NAGDIR%%/po/id_ID.po -%%NAGDIR%%/po/it_IT.po -%%NAGDIR%%/po/ja_JP.po -%%NAGDIR%%/po/ko_KR.po -%%NAGDIR%%/po/lt_LT.po -%%NAGDIR%%/po/lv_LV.po -%%NAGDIR%%/po/nag.pot -%%NAGDIR%%/po/nb_NO.po -%%NAGDIR%%/po/nl_NL.po -%%NAGDIR%%/po/nn_NO.po -%%NAGDIR%%/po/pl_PL.po -%%NAGDIR%%/po/pt_BR.po -%%NAGDIR%%/po/pt_PT.po -%%NAGDIR%%/po/ro_RO.po -%%NAGDIR%%/po/ru_RU.po -%%NAGDIR%%/po/sk_SK.po -%%NAGDIR%%/po/sl_SI.po -%%NAGDIR%%/po/sv_SE.po -%%NAGDIR%%/po/zh_CN.po -%%NAGDIR%%/po/zh_TW.po -%%NAGDIR%%/pref_api.php -%%NAGDIR%%/scripts/.htaccess -%%NAGDIR%%/scripts/import_vtodos.php -%%NAGDIR%%/scripts/sql/nag.mssql.sql -%%NAGDIR%%/scripts/sql/nag.oci8.sql -%%NAGDIR%%/scripts/sql/nag.sql -%%NAGDIR%%/scripts/sql/nag.xml -%%NAGDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%NAGDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql -%%NAGDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql -%%NAGDIR%%/scripts/upgrades/2004-09-13_add_uid_field.php -%%NAGDIR%%/search.php -%%NAGDIR%%/task.php -%%NAGDIR%%/tasklists.php -%%NAGDIR%%/templates/common-header.inc -%%NAGDIR%%/templates/data/export.inc -%%NAGDIR%%/templates/data/import.inc -%%NAGDIR%%/templates/list/empty.inc -%%NAGDIR%%/templates/list/header.inc -%%NAGDIR%%/templates/list/task_footers.inc -%%NAGDIR%%/templates/list/task_headers.inc -%%NAGDIR%%/templates/list/task_summaries.inc -%%NAGDIR%%/templates/menu.inc -%%NAGDIR%%/templates/prefs/tasklistselect.inc -%%NAGDIR%%/templates/search/search.inc -%%NAGDIR%%/templates/task/task.inc -%%NAGDIR%%/templates/tasklists/tasklists.inc -%%NAGDIR%%/templates/view/task.inc -%%NAGDIR%%/themes/categoryCSS.php -%%NAGDIR%%/themes/graphics/add.png -%%NAGDIR%%/themes/graphics/alarm.png -%%NAGDIR%%/themes/graphics/alarm_small.png -%%NAGDIR%%/themes/graphics/az.png -%%NAGDIR%%/themes/graphics/checkbox.png -%%NAGDIR%%/themes/graphics/checked.png -%%NAGDIR%%/themes/graphics/favicon.ico -%%NAGDIR%%/themes/graphics/nag.png -%%NAGDIR%%/themes/graphics/note.png -%%NAGDIR%%/themes/graphics/tasklists.png -%%NAGDIR%%/themes/graphics/unchecked.png -%%NAGDIR%%/themes/graphics/za.png -%%NAGDIR%%/themes/screen.css -%%NAGDIR%%/view.php -@dirrm %%NAGDIR%%/themes/graphics -@dirrm %%NAGDIR%%/themes -@dirrm %%NAGDIR%%/templates/view -@dirrm %%NAGDIR%%/templates/tasklists -@dirrm %%NAGDIR%%/templates/task -@dirrm %%NAGDIR%%/templates/search -@dirrm %%NAGDIR%%/templates/prefs -@dirrm %%NAGDIR%%/templates/list -@dirrm %%NAGDIR%%/templates/data -@dirrm %%NAGDIR%%/templates -@dirrm %%NAGDIR%%/scripts/upgrades -@dirrm %%NAGDIR%%/scripts/sql -@dirrm %%NAGDIR%%/scripts -@dirrm %%NAGDIR%%/po -@dirrm %%NAGDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/zh_TW -@dirrm %%NAGDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/zh_CN -@dirrm %%NAGDIR%%/locale/tr_TR -@dirrm %%NAGDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/sv_SE -@dirrm %%NAGDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/sk_SK -@dirrm %%NAGDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/sl_SI -@dirrm %%NAGDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ru_RU -@dirrm %%NAGDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ro_RO -@dirrm %%NAGDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/pt_PT -@dirrm %%NAGDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/pt_BR -@dirrm %%NAGDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/pl_PL -@dirrm %%NAGDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/nn_NO -@dirrm %%NAGDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/nl_NL -@dirrm %%NAGDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/nb_NO -@dirrm %%NAGDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/lv_LV -@dirrm %%NAGDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/lt_LT -@dirrm %%NAGDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ko_KR -@dirrm %%NAGDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ja_JP -@dirrm %%NAGDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/it_IT -@dirrm %%NAGDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/id_ID -@dirrm %%NAGDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/hu_HU -@dirrm %%NAGDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/fr_FR -@dirrm %%NAGDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/fi_FI -@dirrm %%NAGDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/es_ES -@dirrm %%NAGDIR%%/locale/en_US -@dirrm %%NAGDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/el_GR -@dirrm %%NAGDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/de_DE -@dirrm %%NAGDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/da_DK -@dirrm %%NAGDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/cs_CZ -@dirrm %%NAGDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ca_ES -@dirrm %%NAGDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/bg_BG -@dirrm %%NAGDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ar_SY -@dirrm %%NAGDIR%%/locale -@dirrm %%NAGDIR%%/lib/Notification/Listener -@dirrm %%NAGDIR%%/lib/Notification -@dirrm %%NAGDIR%%/lib/Driver -@dirrm %%NAGDIR%%/lib/Block -@dirrm %%NAGDIR%%/lib -@dirrm %%NAGDIR%%/js -@dirrmtry %%NAGDIR%%/config -@dirrmtry %%NAGDIR%% +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/ics.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/prototype.js +%%HORDIR%%/js/tables.js +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Nag.php +%%HORDIR%%/lib/Notification/Listener/status.php +%%HORDIR%%/lib/Widgets.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/list.php +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/id_ID/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/nl_NL/help.xml +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/nag.mo +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/id_ID.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nag.pot +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/pref_api.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_vtodos.php +%%HORDIR%%/scripts/sql/nag.mssql.sql +%%HORDIR%%/scripts/sql/nag.oci8.sql +%%HORDIR%%/scripts/sql/nag.sql +%%HORDIR%%/scripts/sql/nag.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql +%%HORDIR%%/scripts/upgrades/2004-09-13_add_uid_field.php +%%HORDIR%%/search.php +%%HORDIR%%/task.php +%%HORDIR%%/tasklists.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/list/empty.inc +%%HORDIR%%/templates/list/header.inc +%%HORDIR%%/templates/list/task_footers.inc +%%HORDIR%%/templates/list/task_headers.inc +%%HORDIR%%/templates/list/task_summaries.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/prefs/tasklistselect.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/task/task.inc +%%HORDIR%%/templates/tasklists/tasklists.inc +%%HORDIR%%/templates/view/task.inc +%%HORDIR%%/themes/categoryCSS.php +%%HORDIR%%/themes/graphics/add.png +%%HORDIR%%/themes/graphics/alarm.png +%%HORDIR%%/themes/graphics/alarm_small.png +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/checkbox.png +%%HORDIR%%/themes/graphics/checked.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/nag.png +%%HORDIR%%/themes/graphics/note.png +%%HORDIR%%/themes/graphics/tasklists.png +%%HORDIR%%/themes/graphics/unchecked.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/Notification/Listener +@dirrm %%HORDIR%%/lib/Notification +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDIR%%/locale/id_ID +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/list +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/task +@dirrm %%HORDIR%%/templates/tasklists +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/deskutils/kronolith/Makefile b/deskutils/kronolith/Makefile index d23e7549c9f1..c6b6b98907f8 100644 --- a/deskutils/kronolith/Makefile +++ b/deskutils/kronolith/Makefile @@ -7,69 +7,15 @@ PORTNAME= kronolith PORTVERSION= 2.1.4 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Kronolith is the Horde calendar application -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes -USE_PHP= yes # modules set by Horde, but needed to get PHP_VER +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= keywords.php menu.php prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LKRONOLITHDIR?= ${LHORDEDIR}/kronolith - -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= KRONOLITHDIR=${KRONOLITHDIR} -PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR} - -KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR} -CONFDIR= ${KRONOLITHDIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${KRONOLITHDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${KRONOLITHDIR}/ - @${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${KRONOLITHDIR}/ - @${CHMOD} -R o-rwx ${KRONOLITHDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${KRONOLITHDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${KRONOLITHDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/kronolith/files/pkg-deinstall.in b/deskutils/kronolith/files/pkg-deinstall.in deleted file mode 100644 index 97d0a7cca145..000000000000 --- a/deskutils/kronolith/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Kronolith config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%KRONOLITHDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/kronolith/files/pkg-install.in b/deskutils/kronolith/files/pkg-install.in deleted file mode 100644 index 84722b6dc70a..000000000000 --- a/deskutils/kronolith/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%KRONOLITHDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/kronolith/files/pkg-message.in b/deskutils/kronolith/files/pkg-message.in index 8d1569fe4107..dba8deffa2d6 100644 --- a/deskutils/kronolith/files/pkg-message.in +++ b/deskutils/kronolith/files/pkg-message.in @@ -1,16 +1,16 @@ ************************************************************************** -Kronolith has been installed in %%KRONOLITHDIR%% with your +Kronolith has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then you have to create some tables from the SQL scripts in -%%KRONOLITHDIR%%/scripts/sql. +%%HORDIR%%/scripts/sql. WARNING! Please note that the MCAL back-end has been deprecated! ******** To migrate from MCAL to SQL, you can use the provided script - %%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php + %%HORDIR%%/scripts/migrate_to_sql_driver.php Finally, you must login to Horde as a Horde Administrator to finish the configuration. diff --git a/deskutils/kronolith/pkg-plist b/deskutils/kronolith/pkg-plist index 3ee56c7dd0b1..bb727dffffef 100644 --- a/deskutils/kronolith/pkg-plist +++ b/deskutils/kronolith/pkg-plist @@ -1,305 +1,306 @@ -%%KRONOLITHDIR%%/addevent.php -%%KRONOLITHDIR%%/addeventaction.php -%%KRONOLITHDIR%%/attend.php -%%KRONOLITHDIR%%/attendees.php -%%KRONOLITHDIR%%/calendar_search.php -%%KRONOLITHDIR%%/calendars.php -%%KRONOLITHDIR%%/config/.htaccess -%%KRONOLITHDIR%%/config/conf.xml -%%KRONOLITHDIR%%/config/keywords.php.dist -%%KRONOLITHDIR%%/config/menu.php.dist -%%KRONOLITHDIR%%/config/prefs.php.dist -%%KRONOLITHDIR%%/contacts.php -%%KRONOLITHDIR%%/data.php -%%KRONOLITHDIR%%/day.php -%%KRONOLITHDIR%%/delevent.php -%%KRONOLITHDIR%%/deleventaction.php -%%KRONOLITHDIR%%/editevent.php -%%KRONOLITHDIR%%/editeventaction.php -%%KRONOLITHDIR%%/fb.php -%%KRONOLITHDIR%%/ics.php -%%KRONOLITHDIR%%/index.php -%%KRONOLITHDIR%%/js/fixUnstyledOptions.js -%%KRONOLITHDIR%%/js/stripe.js -%%KRONOLITHDIR%%/lib/Block/month.php -%%KRONOLITHDIR%%/lib/Block/monthlist.php -%%KRONOLITHDIR%%/lib/Block/prevmonthlist.php -%%KRONOLITHDIR%%/lib/Block/summary.php -%%KRONOLITHDIR%%/lib/Block/tree_alarms.php -%%KRONOLITHDIR%%/lib/Block/tree_menu.php -%%KRONOLITHDIR%%/lib/Day.php -%%KRONOLITHDIR%%/lib/DayView.php -%%KRONOLITHDIR%%/lib/Driver.php -%%KRONOLITHDIR%%/lib/Driver/ical.php -%%KRONOLITHDIR%%/lib/Driver/kolab.php -%%KRONOLITHDIR%%/lib/Driver/sql.php -%%KRONOLITHDIR%%/lib/FBView.php -%%KRONOLITHDIR%%/lib/FBView/day.php -%%KRONOLITHDIR%%/lib/FBView/week.php -%%KRONOLITHDIR%%/lib/FBView/workweek.php -%%KRONOLITHDIR%%/lib/Kronolith.php -%%KRONOLITHDIR%%/lib/Scheduler/kronolith.php -%%KRONOLITHDIR%%/lib/Storage.php -%%KRONOLITHDIR%%/lib/Storage/kolab.php -%%KRONOLITHDIR%%/lib/Storage/sql.php -%%KRONOLITHDIR%%/lib/WeekView.php -%%KRONOLITHDIR%%/lib/api.php -%%KRONOLITHDIR%%/lib/base.php -%%KRONOLITHDIR%%/lib/prefs.php -%%KRONOLITHDIR%%/lib/version.php -%%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/de_DE/help.xml -%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/en_US/help.xml -%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/es_ES/help.xml -%%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/fi_FI/help.xml -%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/hu_HU/help.xml -%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ja_JP/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/pt_BR/help.xml -%%KRONOLITHDIR%%/locale/pt_PT/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/sl_SI/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/tr_TR/help.xml -%%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo -%%KRONOLITHDIR%%/month.php -%%KRONOLITHDIR%%/po/README -%%KRONOLITHDIR%%/po/ar_SY.po -%%KRONOLITHDIR%%/po/bg_BG.po -%%KRONOLITHDIR%%/po/cs_CZ.po -%%KRONOLITHDIR%%/po/da_DK.po -%%KRONOLITHDIR%%/po/de_DE.po -%%KRONOLITHDIR%%/po/el_GR.po -%%KRONOLITHDIR%%/po/es_ES.po -%%KRONOLITHDIR%%/po/fi_FI.po -%%KRONOLITHDIR%%/po/fr_FR.po -%%KRONOLITHDIR%%/po/hu_HU.po -%%KRONOLITHDIR%%/po/it_IT.po -%%KRONOLITHDIR%%/po/ja_JP.po -%%KRONOLITHDIR%%/po/ko_KR.po -%%KRONOLITHDIR%%/po/kronolith.pot -%%KRONOLITHDIR%%/po/lt_LT.po -%%KRONOLITHDIR%%/po/lv_LV.po -%%KRONOLITHDIR%%/po/nb_NO.po -%%KRONOLITHDIR%%/po/nl_NL.po -%%KRONOLITHDIR%%/po/nn_NO.po -%%KRONOLITHDIR%%/po/pl_PL.po -%%KRONOLITHDIR%%/po/pt_BR.po -%%KRONOLITHDIR%%/po/pt_PT.po -%%KRONOLITHDIR%%/po/ro_RO.po -%%KRONOLITHDIR%%/po/ru_RU.po -%%KRONOLITHDIR%%/po/sk_SK.po -%%KRONOLITHDIR%%/po/sl_SI.po -%%KRONOLITHDIR%%/po/sv_SE.po -%%KRONOLITHDIR%%/po/zh_CN.po -%%KRONOLITHDIR%%/po/zh_TW.po -%%KRONOLITHDIR%%/scripts/.htaccess -%%KRONOLITHDIR%%/scripts/import_icals.php -%%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php -%%KRONOLITHDIR%%/scripts/reminders.php -%%KRONOLITHDIR%%/scripts/sql/kronolith.mssql.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.mysql.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.oci8.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.pgsql.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.sql -%%KRONOLITHDIR%%/scripts/sql/kronolith.xml -%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql -%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql -%%KRONOLITHDIR%%/scripts/upgrades/2004-05-19_convert_categories_to_strings.php -%%KRONOLITHDIR%%/scripts/upgrades/2004-12-21_add_event_uid.pgsql.sql -%%KRONOLITHDIR%%/scripts/upgrades/2004-12-21_add_event_uid.sql -%%KRONOLITHDIR%%/scripts/upgrades/2006-08-20_fix_recur_int_fields.mysql.sql -%%KRONOLITHDIR%%/search.php -%%KRONOLITHDIR%%/templates/attendees/attendees.inc -%%KRONOLITHDIR%%/templates/calendars/calendars.inc -%%KRONOLITHDIR%%/templates/calendars/search.inc -%%KRONOLITHDIR%%/templates/category_legend.inc -%%KRONOLITHDIR%%/templates/common-header.inc -%%KRONOLITHDIR%%/templates/contacts/contacts.inc -%%KRONOLITHDIR%%/templates/data/export.inc -%%KRONOLITHDIR%%/templates/data/import.inc -%%KRONOLITHDIR%%/templates/day/all_day.inc -%%KRONOLITHDIR%%/templates/day/head.inc -%%KRONOLITHDIR%%/templates/day/head_side_by_side.inc -%%KRONOLITHDIR%%/templates/day/rows.html -%%KRONOLITHDIR%%/templates/delete/delete.inc -%%KRONOLITHDIR%%/templates/delete/one.inc -%%KRONOLITHDIR%%/templates/edit/edit.inc -%%KRONOLITHDIR%%/templates/edit/edit_timespan.inc -%%KRONOLITHDIR%%/templates/edit/javascript.inc -%%KRONOLITHDIR%%/templates/fbview/busyblock.tpl -%%KRONOLITHDIR%%/templates/fbview/emptyblock.tpl -%%KRONOLITHDIR%%/templates/fbview/header.tpl -%%KRONOLITHDIR%%/templates/fbview/legend.tpl -%%KRONOLITHDIR%%/templates/fbview/meetingblock.tpl -%%KRONOLITHDIR%%/templates/fbview/row.tpl -%%KRONOLITHDIR%%/templates/fbview/section.tpl -%%KRONOLITHDIR%%/templates/fbview/unknownblock.tpl -%%KRONOLITHDIR%%/templates/javascript/goto.js -%%KRONOLITHDIR%%/templates/javascript/open_attendees_win.js -%%KRONOLITHDIR%%/templates/javascript/open_calendar_search.js -%%KRONOLITHDIR%%/templates/menu.inc -%%KRONOLITHDIR%%/templates/month/head.inc -%%KRONOLITHDIR%%/templates/month/head_side_by_side.inc -%%KRONOLITHDIR%%/templates/prefs/fb_cals_select.inc -%%KRONOLITHDIR%%/templates/prefs/remote_cal_management.inc -%%KRONOLITHDIR%%/templates/prefs/search_abook_select.inc -%%KRONOLITHDIR%%/templates/prefs/shareselect.inc -%%KRONOLITHDIR%%/templates/search/empty.inc -%%KRONOLITHDIR%%/templates/search/event_footers.inc -%%KRONOLITHDIR%%/templates/search/event_headers.inc -%%KRONOLITHDIR%%/templates/search/event_summaries.inc -%%KRONOLITHDIR%%/templates/search/header.inc -%%KRONOLITHDIR%%/templates/search/search.inc -%%KRONOLITHDIR%%/templates/search/search_advanced.inc -%%KRONOLITHDIR%%/templates/view/view.inc -%%KRONOLITHDIR%%/templates/week/head.inc -%%KRONOLITHDIR%%/templates/week/head_side_by_side.inc -%%KRONOLITHDIR%%/templates/year/head.inc -%%KRONOLITHDIR%%/themes/bluewhite/screen.css -%%KRONOLITHDIR%%/themes/burntorange/screen.css -%%KRONOLITHDIR%%/themes/categoryCSS.php -%%KRONOLITHDIR%%/themes/graphics/addressbook_browse.png -%%KRONOLITHDIR%%/themes/graphics/alarm.png -%%KRONOLITHDIR%%/themes/graphics/alarm_small.png -%%KRONOLITHDIR%%/themes/graphics/attendees.png -%%KRONOLITHDIR%%/themes/graphics/calendars.png -%%KRONOLITHDIR%%/themes/graphics/dayview.png -%%KRONOLITHDIR%%/themes/graphics/expand.png -%%KRONOLITHDIR%%/themes/graphics/favicon.ico -%%KRONOLITHDIR%%/themes/graphics/goto.png -%%KRONOLITHDIR%%/themes/graphics/kronolith.png -%%KRONOLITHDIR%%/themes/graphics/monthview.png -%%KRONOLITHDIR%%/themes/graphics/new.png -%%KRONOLITHDIR%%/themes/graphics/new_big.png -%%KRONOLITHDIR%%/themes/graphics/new_small.png -%%KRONOLITHDIR%%/themes/graphics/recur.png -%%KRONOLITHDIR%%/themes/graphics/today.png -%%KRONOLITHDIR%%/themes/graphics/unknown-background.png -%%KRONOLITHDIR%%/themes/graphics/weekview.png -%%KRONOLITHDIR%%/themes/graphics/workweekview.png -%%KRONOLITHDIR%%/themes/graphics/yearview.png -%%KRONOLITHDIR%%/themes/mozilla/screen.css -%%KRONOLITHDIR%%/themes/print/screen.css -%%KRONOLITHDIR%%/themes/screen.css -%%KRONOLITHDIR%%/themes/simplex/screen.css -%%KRONOLITHDIR%%/viewevent.php -%%KRONOLITHDIR%%/week.php -%%KRONOLITHDIR%%/workweek.php -%%KRONOLITHDIR%%/year.php -@dirrm %%KRONOLITHDIR%%/themes/simplex -@dirrm %%KRONOLITHDIR%%/themes/print -@dirrm %%KRONOLITHDIR%%/themes/mozilla -@dirrm %%KRONOLITHDIR%%/themes/graphics -@dirrm %%KRONOLITHDIR%%/themes/burntorange -@dirrm %%KRONOLITHDIR%%/themes/bluewhite -@dirrm %%KRONOLITHDIR%%/themes -@dirrm %%KRONOLITHDIR%%/templates/year -@dirrm %%KRONOLITHDIR%%/templates/week -@dirrm %%KRONOLITHDIR%%/templates/view -@dirrm %%KRONOLITHDIR%%/templates/search -@dirrm %%KRONOLITHDIR%%/templates/prefs -@dirrm %%KRONOLITHDIR%%/templates/month -@dirrm %%KRONOLITHDIR%%/templates/javascript -@dirrm %%KRONOLITHDIR%%/templates/fbview -@dirrm %%KRONOLITHDIR%%/templates/edit -@dirrm %%KRONOLITHDIR%%/templates/delete -@dirrm %%KRONOLITHDIR%%/templates/day -@dirrm %%KRONOLITHDIR%%/templates/data -@dirrm %%KRONOLITHDIR%%/templates/contacts -@dirrm %%KRONOLITHDIR%%/templates/calendars -@dirrm %%KRONOLITHDIR%%/templates/attendees -@dirrm %%KRONOLITHDIR%%/templates -@dirrm %%KRONOLITHDIR%%/scripts/upgrades -@dirrm %%KRONOLITHDIR%%/scripts/sql -@dirrm %%KRONOLITHDIR%%/scripts -@dirrm %%KRONOLITHDIR%%/po -@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/zh_TW -@dirrm %%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/zh_CN -@dirrm %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/tr_TR -@dirrm %%KRONOLITHDIR%%/locale/sv_SE -@dirrm %%KRONOLITHDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/sl_SI -@dirrm %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/sk_SK -@dirrm %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ru_RU -@dirrm %%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ro_RO -@dirrm %%KRONOLITHDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/pt_PT -@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/pt_BR -@dirrm %%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/pl_PL -@dirrm %%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/nn_NO -@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/nl_NL -@dirrm %%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/nb_NO -@dirrm %%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/lv_LV -@dirrm %%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/lt_LT -@dirrm %%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ko_KR -@dirrm %%KRONOLITHDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ja_JP -@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/it_IT -@dirrm %%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/hu_HU -@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/fr_FR -@dirrm %%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/fi_FI -@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/es_ES -@dirrm %%KRONOLITHDIR%%/locale/en_US -@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/el_GR -@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/de_DE -@dirrm %%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/da_DK -@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/cs_CZ -@dirrm %%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/bg_BG -@dirrm %%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%KRONOLITHDIR%%/locale/ar_SY -@dirrm %%KRONOLITHDIR%%/locale -@dirrm %%KRONOLITHDIR%%/lib/Storage -@dirrm %%KRONOLITHDIR%%/lib/Scheduler -@dirrm %%KRONOLITHDIR%%/lib/FBView -@dirrm %%KRONOLITHDIR%%/lib/Driver -@dirrm %%KRONOLITHDIR%%/lib/Block -@dirrm %%KRONOLITHDIR%%/lib -@dirrm %%KRONOLITHDIR%%/js -@dirrmtry %%KRONOLITHDIR%%/config -@dirrmtry %%KRONOLITHDIR%% +%%HORDIR%%/addevent.php +%%HORDIR%%/addeventaction.php +%%HORDIR%%/attend.php +%%HORDIR%%/attendees.php +%%HORDIR%%/calendar_search.php +%%HORDIR%%/calendars.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/keywords.php.dist +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/contacts.php +%%HORDIR%%/data.php +%%HORDIR%%/day.php +%%HORDIR%%/delevent.php +%%HORDIR%%/deleventaction.php +%%HORDIR%%/editevent.php +%%HORDIR%%/editeventaction.php +%%HORDIR%%/fb.php +%%HORDIR%%/ics.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/stripe.js +%%HORDIR%%/lib/Block/month.php +%%HORDIR%%/lib/Block/monthlist.php +%%HORDIR%%/lib/Block/prevmonthlist.php +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Block/tree_alarms.php +%%HORDIR%%/lib/Block/tree_menu.php +%%HORDIR%%/lib/Day.php +%%HORDIR%%/lib/DayView.php +%%HORDIR%%/lib/Driver/ical.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/FBView/day.php +%%HORDIR%%/lib/FBView/week.php +%%HORDIR%%/lib/FBView/workweek.php +%%HORDIR%%/lib/FBView.php +%%HORDIR%%/lib/Kronolith.php +%%HORDIR%%/lib/Scheduler/kronolith.php +%%HORDIR%%/lib/Storage/kolab.php +%%HORDIR%%/lib/Storage/sql.php +%%HORDIR%%/lib/Storage.php +%%HORDIR%%/lib/WeekView.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo +%%HORDIR%%/month.php +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/kronolith.pot +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_icals.php +%%HORDIR%%/scripts/migrate_to_sql_driver.php +%%HORDIR%%/scripts/reminders.php +%%HORDIR%%/scripts/sql/kronolith.mssql.sql +%%HORDIR%%/scripts/sql/kronolith.mysql.sql +%%HORDIR%%/scripts/sql/kronolith.oci8.sql +%%HORDIR%%/scripts/sql/kronolith.pgsql.sql +%%HORDIR%%/scripts/sql/kronolith.sql +%%HORDIR%%/scripts/sql/kronolith.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql +%%HORDIR%%/scripts/upgrades/2004-05-19_convert_categories_to_strings.php +%%HORDIR%%/scripts/upgrades/2004-12-21_add_event_uid.pgsql.sql +%%HORDIR%%/scripts/upgrades/2004-12-21_add_event_uid.sql +%%HORDIR%%/scripts/upgrades/2006-08-20_fix_recur_int_fields.mysql.sql +%%HORDIR%%/search.php +%%HORDIR%%/templates/attendees/attendees.inc +%%HORDIR%%/templates/calendars/calendars.inc +%%HORDIR%%/templates/calendars/search.inc +%%HORDIR%%/templates/category_legend.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/contacts/contacts.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/day/all_day.inc +%%HORDIR%%/templates/day/head.inc +%%HORDIR%%/templates/day/head_side_by_side.inc +%%HORDIR%%/templates/day/rows.html +%%HORDIR%%/templates/delete/delete.inc +%%HORDIR%%/templates/delete/one.inc +%%HORDIR%%/templates/edit/edit.inc +%%HORDIR%%/templates/edit/edit_timespan.inc +%%HORDIR%%/templates/edit/javascript.inc +%%HORDIR%%/templates/fbview/busyblock.tpl +%%HORDIR%%/templates/fbview/emptyblock.tpl +%%HORDIR%%/templates/fbview/header.tpl +%%HORDIR%%/templates/fbview/legend.tpl +%%HORDIR%%/templates/fbview/meetingblock.tpl +%%HORDIR%%/templates/fbview/row.tpl +%%HORDIR%%/templates/fbview/section.tpl +%%HORDIR%%/templates/fbview/unknownblock.tpl +%%HORDIR%%/templates/javascript/goto.js +%%HORDIR%%/templates/javascript/open_attendees_win.js +%%HORDIR%%/templates/javascript/open_calendar_search.js +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/month/head.inc +%%HORDIR%%/templates/month/head_side_by_side.inc +%%HORDIR%%/templates/prefs/fb_cals_select.inc +%%HORDIR%%/templates/prefs/remote_cal_management.inc +%%HORDIR%%/templates/prefs/search_abook_select.inc +%%HORDIR%%/templates/prefs/shareselect.inc +%%HORDIR%%/templates/search/empty.inc +%%HORDIR%%/templates/search/event_footers.inc +%%HORDIR%%/templates/search/event_headers.inc +%%HORDIR%%/templates/search/event_summaries.inc +%%HORDIR%%/templates/search/header.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/search/search_advanced.inc +%%HORDIR%%/templates/view/view.inc +%%HORDIR%%/templates/week/head.inc +%%HORDIR%%/templates/week/head_side_by_side.inc +%%HORDIR%%/templates/year/head.inc +%%HORDIR%%/themes/bluewhite/screen.css +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/categoryCSS.php +%%HORDIR%%/themes/graphics/addressbook_browse.png +%%HORDIR%%/themes/graphics/alarm.png +%%HORDIR%%/themes/graphics/alarm_small.png +%%HORDIR%%/themes/graphics/attendees.png +%%HORDIR%%/themes/graphics/calendars.png +%%HORDIR%%/themes/graphics/dayview.png +%%HORDIR%%/themes/graphics/expand.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/goto.png +%%HORDIR%%/themes/graphics/kronolith.png +%%HORDIR%%/themes/graphics/monthview.png +%%HORDIR%%/themes/graphics/new.png +%%HORDIR%%/themes/graphics/new_big.png +%%HORDIR%%/themes/graphics/new_small.png +%%HORDIR%%/themes/graphics/recur.png +%%HORDIR%%/themes/graphics/today.png +%%HORDIR%%/themes/graphics/unknown-background.png +%%HORDIR%%/themes/graphics/weekview.png +%%HORDIR%%/themes/graphics/workweekview.png +%%HORDIR%%/themes/graphics/yearview.png +%%HORDIR%%/themes/mozilla/screen.css +%%HORDIR%%/themes/print/screen.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/themes/simplex/screen.css +%%HORDIR%%/viewevent.php +%%HORDIR%%/week.php +%%HORDIR%%/workweek.php +%%HORDIR%%/year.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/FBView +@dirrm %%HORDIR%%/lib/Scheduler +@dirrm %%HORDIR%%/lib/Storage +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/attendees +@dirrm %%HORDIR%%/templates/calendars +@dirrm %%HORDIR%%/templates/contacts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/day +@dirrm %%HORDIR%%/templates/delete +@dirrm %%HORDIR%%/templates/edit +@dirrm %%HORDIR%%/templates/fbview +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/month +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates/week +@dirrm %%HORDIR%%/templates/year +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/bluewhite +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/mozilla +@dirrm %%HORDIR%%/themes/print +@dirrm %%HORDIR%%/themes/simplex +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/deskutils/mnemo/Makefile b/deskutils/mnemo/Makefile index ba9327b1d2e5..4733d120146a 100644 --- a/deskutils/mnemo/Makefile +++ b/deskutils/mnemo/Makefile @@ -7,69 +7,15 @@ PORTNAME= mnemo PORTVERSION= 2.1.1 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE -DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= beech@alaskaparadise.com COMMENT= Mnemo is the Horde notes and memos application -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -PLIST_SUB= MNEMODIR=${LMNEMODIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= MNEMODIR=${MNEMODIR} - -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LMNEMODIR?= ${LHORDEDIR}/mnemo - -MNEMODIR= ${PREFIX}/${LMNEMODIR} -CONFDIR= ${MNEMODIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${MNEMODIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${MNEMODIR}/ - @${CP} -p ${WRKSRC}/*.php ${MNEMODIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${MNEMODIR}/ - @${CHMOD} -R o-rwx ${MNEMODIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${MNEMODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${MNEMODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/mnemo/files/pkg-deinstall.in b/deskutils/mnemo/files/pkg-deinstall.in deleted file mode 100644 index 01e0ca9f6e7b..000000000000 --- a/deskutils/mnemo/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Mnemo config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%MNEMODIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/mnemo/files/pkg-install.in b/deskutils/mnemo/files/pkg-install.in deleted file mode 100644 index 2b5fd65ba10e..000000000000 --- a/deskutils/mnemo/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%MNEMODIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/mnemo/files/pkg-message.in b/deskutils/mnemo/files/pkg-message.in index bbd8d585a94d..07089e835ce8 100644 --- a/deskutils/mnemo/files/pkg-message.in +++ b/deskutils/mnemo/files/pkg-message.in @@ -1,15 +1,14 @@ ************************************************************************ -Mnemo has been installed in %%MNEMODIR%% with your blank +Mnemo has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then, you have to create the table mnemo_memos, from the SQL script -%%MNEMODIR%%/scripts/sql/mnemo.sql +%%HORDIR%%/scripts/sql/mnemo.sql For example, if your database is MySQL, you may run mysql --user=root --password=yourpass horde < mnemo.sql Finally, you must login to Horde as a Horde Administrator to finish the configuration. - ************************************************************************ diff --git a/deskutils/mnemo/pkg-plist b/deskutils/mnemo/pkg-plist index 1812bb6810af..d9f44485e44c 100644 --- a/deskutils/mnemo/pkg-plist +++ b/deskutils/mnemo/pkg-plist @@ -1,190 +1,191 @@ -%%MNEMODIR%%/config/.htaccess -%%MNEMODIR%%/config/conf.xml -%%MNEMODIR%%/config/prefs.php.dist -%%MNEMODIR%%/data.php -%%MNEMODIR%%/index.php -%%MNEMODIR%%/js/fixUnstyledOptions.js -%%MNEMODIR%%/js/tables.js -%%MNEMODIR%%/lib/Block/summary.php -%%MNEMODIR%%/lib/Driver.php -%%MNEMODIR%%/lib/Driver/kolab.php -%%MNEMODIR%%/lib/Driver/sql.php -%%MNEMODIR%%/lib/Mnemo.php -%%MNEMODIR%%/lib/api.php -%%MNEMODIR%%/lib/base.php -%%MNEMODIR%%/lib/prefs.php -%%MNEMODIR%%/lib/version.php -%%MNEMODIR%%/list.php -%%MNEMODIR%%/locale/bg_BG/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/cs_CZ/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/da_DK/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/da_DK/help.xml -%%MNEMODIR%%/locale/de_DE/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/de_DE/help.xml -%%MNEMODIR%%/locale/el_GR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/en_US/help.xml -%%MNEMODIR%%/locale/es_ES/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/es_ES/help.xml -%%MNEMODIR%%/locale/fi_FI/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/fi_FI/help.xml -%%MNEMODIR%%/locale/fr_FR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/hu_HU/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/hu_HU/help.xml -%%MNEMODIR%%/locale/it_IT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/it_IT/help.xml -%%MNEMODIR%%/locale/ja_JP/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lt_LT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lv_LV/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lv_LV/help.xml -%%MNEMODIR%%/locale/nb_NO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/nl_NL/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/nn_NO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pl_PL/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pt_BR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pt_PT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/ro_RO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/ru_RU/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sk_SK/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sk_SK/help.xml -%%MNEMODIR%%/locale/sl_SI/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sv_SE/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/tr_TR/help.xml -%%MNEMODIR%%/locale/zh_CN/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/zh_TW/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/memo.php -%%MNEMODIR%%/notepads.php -%%MNEMODIR%%/po/README -%%MNEMODIR%%/po/bg_BG.po -%%MNEMODIR%%/po/cs_CZ.po -%%MNEMODIR%%/po/da_DK.po -%%MNEMODIR%%/po/de_DE.po -%%MNEMODIR%%/po/el_GR.po -%%MNEMODIR%%/po/es_ES.po -%%MNEMODIR%%/po/fi_FI.po -%%MNEMODIR%%/po/fr_FR.po -%%MNEMODIR%%/po/hu_HU.po -%%MNEMODIR%%/po/it_IT.po -%%MNEMODIR%%/po/ja_JP.po -%%MNEMODIR%%/po/lt_LT.po -%%MNEMODIR%%/po/lv_LV.po -%%MNEMODIR%%/po/mnemo.pot -%%MNEMODIR%%/po/nb_NO.po -%%MNEMODIR%%/po/nl_NL.po -%%MNEMODIR%%/po/nn_NO.po -%%MNEMODIR%%/po/pl_PL.po -%%MNEMODIR%%/po/pt_BR.po -%%MNEMODIR%%/po/pt_PT.po -%%MNEMODIR%%/po/ro_RO.po -%%MNEMODIR%%/po/ru_RU.po -%%MNEMODIR%%/po/sl_SI.po -%%MNEMODIR%%/po/sk_SK.po -%%MNEMODIR%%/po/sv_SE.po -%%MNEMODIR%%/po/zh_CN.po -%%MNEMODIR%%/po/zh_TW.po -%%MNEMODIR%%/scripts/.htaccess -%%MNEMODIR%%/scripts/import_vnotes.php -%%MNEMODIR%%/scripts/sql/mnemo.mssql.sql -%%MNEMODIR%%/scripts/sql/mnemo.oci8.sql -%%MNEMODIR%%/scripts/sql/mnemo.sql -%%MNEMODIR%%/scripts/sql/mnemo.xml -%%MNEMODIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%MNEMODIR%%/scripts/upgrades/1.1_to_2.0.pgsq.sql -%%MNEMODIR%%/scripts/upgrades/2004-12-21_add_memo_uid.sql -%%MNEMODIR%%/search.php -%%MNEMODIR%%/templates/common-header.inc -%%MNEMODIR%%/templates/data/export.inc -%%MNEMODIR%%/templates/data/import.inc -%%MNEMODIR%%/templates/list/empty.inc -%%MNEMODIR%%/templates/list/header.inc -%%MNEMODIR%%/templates/list/memo_footers.inc -%%MNEMODIR%%/templates/list/memo_headers.inc -%%MNEMODIR%%/templates/list/memo_summaries.inc -%%MNEMODIR%%/templates/memo/memo.inc -%%MNEMODIR%%/templates/menu.inc -%%MNEMODIR%%/templates/notepads/notepads.inc -%%MNEMODIR%%/templates/prefs/notepadselect.inc -%%MNEMODIR%%/templates/search/search.inc -%%MNEMODIR%%/templates/view/memo.inc -%%MNEMODIR%%/themes/graphics/add.png -%%MNEMODIR%%/themes/graphics/az.png -%%MNEMODIR%%/themes/graphics/favicon.ico -%%MNEMODIR%%/themes/graphics/mnemo.png -%%MNEMODIR%%/themes/graphics/notepads.png -%%MNEMODIR%%/themes/graphics/za.png -%%MNEMODIR%%/themes/screen.css -%%MNEMODIR%%/view.php -@dirrm %%MNEMODIR%%/themes/graphics -@dirrm %%MNEMODIR%%/themes -@dirrm %%MNEMODIR%%/templates/view -@dirrm %%MNEMODIR%%/templates/search -@dirrm %%MNEMODIR%%/templates/prefs -@dirrm %%MNEMODIR%%/templates/notepads -@dirrm %%MNEMODIR%%/templates/memo -@dirrm %%MNEMODIR%%/templates/list -@dirrm %%MNEMODIR%%/templates/data -@dirrm %%MNEMODIR%%/templates -@dirrm %%MNEMODIR%%/scripts/upgrades -@dirrm %%MNEMODIR%%/scripts/sql -@dirrm %%MNEMODIR%%/scripts -@dirrm %%MNEMODIR%%/po -@dirrm %%MNEMODIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/zh_TW -@dirrm %%MNEMODIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/zh_CN -@dirrm %%MNEMODIR%%/locale/tr_TR -@dirrm %%MNEMODIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sv_SE -@dirrm %%MNEMODIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sl_SI -@dirrm %%MNEMODIR%%/locale/sk_SK -@dirrm %%MNEMODIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ru_RU -@dirrm %%MNEMODIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ro_RO -@dirrm %%MNEMODIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pt_PT -@dirrm %%MNEMODIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pt_BR -@dirrm %%MNEMODIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pl_PL -@dirrm %%MNEMODIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nn_NO -@dirrm %%MNEMODIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nl_NL -@dirrm %%MNEMODIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nb_NO -@dirrm %%MNEMODIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/lv_LV -@dirrm %%MNEMODIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/lt_LT -@dirrm %%MNEMODIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ja_JP -@dirrm %%MNEMODIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/it_IT -@dirrm %%MNEMODIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/hu_HU -@dirrm %%MNEMODIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/fr_FR -@dirrm %%MNEMODIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/fi_FI -@dirrm %%MNEMODIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/es_ES -@dirrm %%MNEMODIR%%/locale/en_US -@dirrm %%MNEMODIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/el_GR -@dirrm %%MNEMODIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/de_DE -@dirrm %%MNEMODIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/da_DK -@dirrm %%MNEMODIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/cs_CZ -@dirrm %%MNEMODIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/bg_BG -@dirrm %%MNEMODIR%%/locale -@dirrm %%MNEMODIR%%/lib/Driver -@dirrm %%MNEMODIR%%/lib/Block -@dirrm %%MNEMODIR%%/lib -@dirrm %%MNEMODIR%%/js -@dirrmtry %%MNEMODIR%%/config -@dirrmtry %%MNEMODIR%% +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/tables.js +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Mnemo.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/list.php +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/da_DK/help.xml +%%HORDIR%%/locale/de_DE/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/it_IT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/it_IT/help.xml +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/mnemo.mo +%%HORDIR%%/memo.php +%%HORDIR%%/notepads.php +%%HORDIR%%/po/README +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mnemo.pot +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_vnotes.php +%%HORDIR%%/scripts/sql/mnemo.mssql.sql +%%HORDIR%%/scripts/sql/mnemo.oci8.sql +%%HORDIR%%/scripts/sql/mnemo.sql +%%HORDIR%%/scripts/sql/mnemo.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsq.sql +%%HORDIR%%/scripts/upgrades/2004-12-21_add_memo_uid.sql +%%HORDIR%%/search.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/list/empty.inc +%%HORDIR%%/templates/list/header.inc +%%HORDIR%%/templates/list/memo_footers.inc +%%HORDIR%%/templates/list/memo_headers.inc +%%HORDIR%%/templates/list/memo_summaries.inc +%%HORDIR%%/templates/memo/memo.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/notepads/notepads.inc +%%HORDIR%%/templates/prefs/notepadselect.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/view/memo.inc +%%HORDIR%%/themes/graphics/add.png +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/mnemo.png +%%HORDIR%%/themes/graphics/notepads.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/list +@dirrm %%HORDIR%%/templates/memo +@dirrm %%HORDIR%%/templates/notepads +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/deskutils/nag/Makefile b/deskutils/nag/Makefile index 8f0c055af8df..dffdf08643e2 100644 --- a/deskutils/nag/Makefile +++ b/deskutils/nag/Makefile @@ -7,68 +7,15 @@ PORTNAME= nag PORTVERSION= 2.1.3 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Simple multiuser task list manager -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -PLIST_SUB= NAGDIR=${LNAGDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= NAGDIR=${NAGDIR} - -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= menu.php prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LNAGDIR?= ${LHORDEDIR}/nag - -NAGDIR= ${PREFIX}/${LNAGDIR} -CONFDIR= ${NAGDIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${NAGDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${NAGDIR}/ - @${CP} -p ${WRKSRC}/*.php ${NAGDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${NAGDIR}/ - @${CHMOD} -R o-rwx ${NAGDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${NAGDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${NAGDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/nag/files/pkg-deinstall.in b/deskutils/nag/files/pkg-deinstall.in deleted file mode 100644 index 6996f090da6d..000000000000 --- a/deskutils/nag/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Nag config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%NAGDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/nag/files/pkg-install.in b/deskutils/nag/files/pkg-install.in deleted file mode 100644 index f7ec7e0017b6..000000000000 --- a/deskutils/nag/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%NAGDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/nag/files/pkg-message.in b/deskutils/nag/files/pkg-message.in index 98c57ea5118a..2a7122633db6 100644 --- a/deskutils/nag/files/pkg-message.in +++ b/deskutils/nag/files/pkg-message.in @@ -1,11 +1,11 @@ ************************************************************************ -Nag has been installed in %%NAGDIR%% with your blank +Nag has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then, you have to create the table nag_tasks, from the SQL script -%%NAGDIR%%/scripts/sql/nag.sql. +%%HORDIR%%/scripts/sql/nag.sql. For example, if your database is MySQL, you may run mysql --user=root --password=yourpass horde < nag.sql diff --git a/deskutils/nag/pkg-plist b/deskutils/nag/pkg-plist index 8681dda8b9a9..eb7c120b72f3 100644 --- a/deskutils/nag/pkg-plist +++ b/deskutils/nag/pkg-plist @@ -1,223 +1,224 @@ -%%NAGDIR%%/config/.htaccess -%%NAGDIR%%/config/conf.xml -%%NAGDIR%%/config/menu.php.dist -%%NAGDIR%%/config/prefs.php.dist -%%NAGDIR%%/data.php -%%NAGDIR%%/ics.php -%%NAGDIR%%/index.php -%%NAGDIR%%/js/fixUnstyledOptions.js -%%NAGDIR%%/js/tables.js -%%NAGDIR%%/js/prototype.js -%%NAGDIR%%/lib/.htaccess -%%NAGDIR%%/lib/Block/summary.php -%%NAGDIR%%/lib/Driver.php -%%NAGDIR%%/lib/Driver/kolab.php -%%NAGDIR%%/lib/Driver/sql.php -%%NAGDIR%%/lib/Nag.php -%%NAGDIR%%/lib/Notification/Listener/status.php -%%NAGDIR%%/lib/Widgets.php -%%NAGDIR%%/lib/api.php -%%NAGDIR%%/lib/base.php -%%NAGDIR%%/lib/prefs.php -%%NAGDIR%%/lib/version.php -%%NAGDIR%%/list.php -%%NAGDIR%%/locale/ar_SY/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/bg_BG/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ca_ES/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ca_ES/help.xml -%%NAGDIR%%/locale/cs_CZ/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/da_DK/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/de_DE/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/de_DE/help.xml -%%NAGDIR%%/locale/el_GR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/en_US/help.xml -%%NAGDIR%%/locale/es_ES/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/es_ES/help.xml -%%NAGDIR%%/locale/fi_FI/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/fi_FI/help.xml -%%NAGDIR%%/locale/fr_FR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/hu_HU/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/hu_HU/help.xml -%%NAGDIR%%/locale/id_ID/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/it_IT/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ja_JP/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ko_KR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/lt_LT/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/lv_LV/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/lv_LV/help.xml -%%NAGDIR%%/locale/nb_NO/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/nl_NL/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/nl_NL/help.xml -%%NAGDIR%%/locale/nn_NO/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/pl_PL/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/pt_BR/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/pt_PT/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ro_RO/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/ru_RU/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/sk_SK/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/sk_SK/help.xml -%%NAGDIR%%/locale/sl_SI/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/sv_SE/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/tr_TR/help.xml -%%NAGDIR%%/locale/zh_CN/LC_MESSAGES/nag.mo -%%NAGDIR%%/locale/zh_TW/LC_MESSAGES/nag.mo -%%NAGDIR%%/po/README -%%NAGDIR%%/po/ar_SY.po -%%NAGDIR%%/po/bg_BG.po -%%NAGDIR%%/po/ca_ES.po -%%NAGDIR%%/po/cs_CZ.po -%%NAGDIR%%/po/da_DK.po -%%NAGDIR%%/po/de_DE.po -%%NAGDIR%%/po/el_GR.po -%%NAGDIR%%/po/es_ES.po -%%NAGDIR%%/po/fi_FI.po -%%NAGDIR%%/po/fr_FR.po -%%NAGDIR%%/po/hu_HU.po -%%NAGDIR%%/po/id_ID.po -%%NAGDIR%%/po/it_IT.po -%%NAGDIR%%/po/ja_JP.po -%%NAGDIR%%/po/ko_KR.po -%%NAGDIR%%/po/lt_LT.po -%%NAGDIR%%/po/lv_LV.po -%%NAGDIR%%/po/nag.pot -%%NAGDIR%%/po/nb_NO.po -%%NAGDIR%%/po/nl_NL.po -%%NAGDIR%%/po/nn_NO.po -%%NAGDIR%%/po/pl_PL.po -%%NAGDIR%%/po/pt_BR.po -%%NAGDIR%%/po/pt_PT.po -%%NAGDIR%%/po/ro_RO.po -%%NAGDIR%%/po/ru_RU.po -%%NAGDIR%%/po/sk_SK.po -%%NAGDIR%%/po/sl_SI.po -%%NAGDIR%%/po/sv_SE.po -%%NAGDIR%%/po/zh_CN.po -%%NAGDIR%%/po/zh_TW.po -%%NAGDIR%%/pref_api.php -%%NAGDIR%%/scripts/.htaccess -%%NAGDIR%%/scripts/import_vtodos.php -%%NAGDIR%%/scripts/sql/nag.mssql.sql -%%NAGDIR%%/scripts/sql/nag.oci8.sql -%%NAGDIR%%/scripts/sql/nag.sql -%%NAGDIR%%/scripts/sql/nag.xml -%%NAGDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%NAGDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql -%%NAGDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql -%%NAGDIR%%/scripts/upgrades/2004-09-13_add_uid_field.php -%%NAGDIR%%/search.php -%%NAGDIR%%/task.php -%%NAGDIR%%/tasklists.php -%%NAGDIR%%/templates/common-header.inc -%%NAGDIR%%/templates/data/export.inc -%%NAGDIR%%/templates/data/import.inc -%%NAGDIR%%/templates/list/empty.inc -%%NAGDIR%%/templates/list/header.inc -%%NAGDIR%%/templates/list/task_footers.inc -%%NAGDIR%%/templates/list/task_headers.inc -%%NAGDIR%%/templates/list/task_summaries.inc -%%NAGDIR%%/templates/menu.inc -%%NAGDIR%%/templates/prefs/tasklistselect.inc -%%NAGDIR%%/templates/search/search.inc -%%NAGDIR%%/templates/task/task.inc -%%NAGDIR%%/templates/tasklists/tasklists.inc -%%NAGDIR%%/templates/view/task.inc -%%NAGDIR%%/themes/categoryCSS.php -%%NAGDIR%%/themes/graphics/add.png -%%NAGDIR%%/themes/graphics/alarm.png -%%NAGDIR%%/themes/graphics/alarm_small.png -%%NAGDIR%%/themes/graphics/az.png -%%NAGDIR%%/themes/graphics/checkbox.png -%%NAGDIR%%/themes/graphics/checked.png -%%NAGDIR%%/themes/graphics/favicon.ico -%%NAGDIR%%/themes/graphics/nag.png -%%NAGDIR%%/themes/graphics/note.png -%%NAGDIR%%/themes/graphics/tasklists.png -%%NAGDIR%%/themes/graphics/unchecked.png -%%NAGDIR%%/themes/graphics/za.png -%%NAGDIR%%/themes/screen.css -%%NAGDIR%%/view.php -@dirrm %%NAGDIR%%/themes/graphics -@dirrm %%NAGDIR%%/themes -@dirrm %%NAGDIR%%/templates/view -@dirrm %%NAGDIR%%/templates/tasklists -@dirrm %%NAGDIR%%/templates/task -@dirrm %%NAGDIR%%/templates/search -@dirrm %%NAGDIR%%/templates/prefs -@dirrm %%NAGDIR%%/templates/list -@dirrm %%NAGDIR%%/templates/data -@dirrm %%NAGDIR%%/templates -@dirrm %%NAGDIR%%/scripts/upgrades -@dirrm %%NAGDIR%%/scripts/sql -@dirrm %%NAGDIR%%/scripts -@dirrm %%NAGDIR%%/po -@dirrm %%NAGDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/zh_TW -@dirrm %%NAGDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/zh_CN -@dirrm %%NAGDIR%%/locale/tr_TR -@dirrm %%NAGDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/sv_SE -@dirrm %%NAGDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/sk_SK -@dirrm %%NAGDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/sl_SI -@dirrm %%NAGDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ru_RU -@dirrm %%NAGDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ro_RO -@dirrm %%NAGDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/pt_PT -@dirrm %%NAGDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/pt_BR -@dirrm %%NAGDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/pl_PL -@dirrm %%NAGDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/nn_NO -@dirrm %%NAGDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/nl_NL -@dirrm %%NAGDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/nb_NO -@dirrm %%NAGDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/lv_LV -@dirrm %%NAGDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/lt_LT -@dirrm %%NAGDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ko_KR -@dirrm %%NAGDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ja_JP -@dirrm %%NAGDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/it_IT -@dirrm %%NAGDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/id_ID -@dirrm %%NAGDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/hu_HU -@dirrm %%NAGDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/fr_FR -@dirrm %%NAGDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/fi_FI -@dirrm %%NAGDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/es_ES -@dirrm %%NAGDIR%%/locale/en_US -@dirrm %%NAGDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/el_GR -@dirrm %%NAGDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/de_DE -@dirrm %%NAGDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/da_DK -@dirrm %%NAGDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/cs_CZ -@dirrm %%NAGDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ca_ES -@dirrm %%NAGDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/bg_BG -@dirrm %%NAGDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%NAGDIR%%/locale/ar_SY -@dirrm %%NAGDIR%%/locale -@dirrm %%NAGDIR%%/lib/Notification/Listener -@dirrm %%NAGDIR%%/lib/Notification -@dirrm %%NAGDIR%%/lib/Driver -@dirrm %%NAGDIR%%/lib/Block -@dirrm %%NAGDIR%%/lib -@dirrm %%NAGDIR%%/js -@dirrmtry %%NAGDIR%%/config -@dirrmtry %%NAGDIR%% +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/ics.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/prototype.js +%%HORDIR%%/js/tables.js +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Nag.php +%%HORDIR%%/lib/Notification/Listener/status.php +%%HORDIR%%/lib/Widgets.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/list.php +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/id_ID/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/nl_NL/help.xml +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/nag.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/nag.mo +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/id_ID.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nag.pot +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/pref_api.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_vtodos.php +%%HORDIR%%/scripts/sql/nag.mssql.sql +%%HORDIR%%/scripts/sql/nag.oci8.sql +%%HORDIR%%/scripts/sql/nag.sql +%%HORDIR%%/scripts/sql/nag.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.oci8.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.sql +%%HORDIR%%/scripts/upgrades/2004-09-13_add_uid_field.php +%%HORDIR%%/search.php +%%HORDIR%%/task.php +%%HORDIR%%/tasklists.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/list/empty.inc +%%HORDIR%%/templates/list/header.inc +%%HORDIR%%/templates/list/task_footers.inc +%%HORDIR%%/templates/list/task_headers.inc +%%HORDIR%%/templates/list/task_summaries.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/prefs/tasklistselect.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/task/task.inc +%%HORDIR%%/templates/tasklists/tasklists.inc +%%HORDIR%%/templates/view/task.inc +%%HORDIR%%/themes/categoryCSS.php +%%HORDIR%%/themes/graphics/add.png +%%HORDIR%%/themes/graphics/alarm.png +%%HORDIR%%/themes/graphics/alarm_small.png +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/checkbox.png +%%HORDIR%%/themes/graphics/checked.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/nag.png +%%HORDIR%%/themes/graphics/note.png +%%HORDIR%%/themes/graphics/tasklists.png +%%HORDIR%%/themes/graphics/unchecked.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/Notification/Listener +@dirrm %%HORDIR%%/lib/Notification +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDIR%%/locale/id_ID +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/list +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/task +@dirrm %%HORDIR%%/templates/tasklists +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/devel/chora/Makefile b/devel/chora/Makefile index 073b1f7da8f1..b663cd988165 100644 --- a/devel/chora/Makefile +++ b/devel/chora/Makefile @@ -9,8 +9,6 @@ PORTNAME= chora PORTVERSION= 2.0.1 PORTREVISION= 1 CATEGORIES= devel www -MASTER_SITES= HORDE -DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= beech@alaskaparadise.com COMMENT= The Horde CVS web-viewer @@ -28,8 +26,6 @@ COMMENT= The Horde CVS web-viewer # #----------------------------------------------------------------------- -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - .if !defined(WITHOUT_SVN) RUN_DEPENDS+= ${LOCALBASE}/bin/svn:${PORTSDIR}/devel/subversion .endif @@ -42,46 +38,17 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/cvsps:${PORTSDIR}/devel/cvsps-devel RUN_DEPENDS+= ${LOCALBASE}/bin/cvsgraph:${PORTSDIR}/devel/cvsgraph .endif -NO_BUILD= yes -USE_APACHE= 1.3+ # needed to test APACHE_VERSION - # Specify where your repository belongs. # (You can reconfigure it after installation anyway) .if defined(PACKAGE_BUILDING) || !defined(CVSROOT) || empty(CVSROOT) CVSROOT= /home/cvs .endif -DOCS= COPYING README docs/BUGS docs/CHANGES docs/CREDITS \ - docs/INSTALL docs/RELEASE_NOTES docs/TODO -CONFFILE= cvsgraph.conf longIntro.txt mime_drivers.php prefs.php \ - sourceroots.php -SUB_DIRS= config lib locale po templates themes - -LHORDEDIR?= www/horde -LCHORADIR= ${LHORDEDIR}/chora - -PLIST_SUB= CHORADIR=${LCHORADIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= CHORADIR=${CHORADIR} CONFDIR=${CONFDIR} - -CHORADIR= ${PREFIX}/${LCHORADIR} -CONFDIR= ${CHORADIR}/config - -PATCH2RM= sourceroots.php.dist.orig sourceroots.php.dist.bak conf.xml.bak - -.include <bsd.port.pre.mk> - -.if ${APACHE_VERSION} >= 20 -HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes -.else -HORDE_INC= ${LOCALBASE}/etc/horde -.endif +USE_HORDE= base pkg-message +USE_GETTEXT= yes +PORTDOCS= README BUGS CHANGES CREDITS INSTALL RELEASE_NOTES TODO pre-configure: - @${SED} -e "s:/home/httpd/html/horde/chora:${CHORADIR}:" \ - ${FILESDIR}/httpd.conf.chora > ${WRKDIR}/httpd-chora.conf @${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" \ -e "s|/usr/bin/cvsgraph|${LOCALBASE}/bin/cvsgraph|" \ -e "s|/usr/bin/svn|${LOCALBASE}/bin/svn|" \ @@ -89,40 +56,14 @@ pre-configure: @${REINPLACE_CMD} -e "s|%%CVSROOT%%|${CVSROOT}|" \ -e "s|%%CONFDIR%%|${CONFDIR}|" \ ${WRKSRC}/config/sourceroots.php.dist -.for FILE in ${PATCH2RM} - @${RM} ${WRKSRC}/config/${FILE} -.endfor pre-install: .if !defined(WITHOUT_CVSPS) - @if ! pkg_info -I -x cvsps-devel > /dev/null ; then \ + @if ! ${PKG_INFO} -I -x cvsps-devel > /dev/null ; then \ ${ECHO_MSG} "Error: cvsps-devel is required, not cvsps." ; \ ${FALSE} ; \ fi .endif -do-install: - @${MKDIR} ${CHORADIR} -.for REP in ${SUB_DIRS} - @${CP} -Rp ${WRKSRC}/${REP} ${CHORADIR} -.endfor - @${CP} -p ${WRKSRC}/*.php ${CHORADIR} - - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${CHORADIR} - @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd-chora.conf ${HORDE_INC} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for FILE in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} -.endfor - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/devel/chora/files/httpd.conf.chora b/devel/chora/files/httpd.conf.chora deleted file mode 100644 index 95afb9c8db4c..000000000000 --- a/devel/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/chora/files/pkg-deinstall.in b/devel/chora/files/pkg-deinstall.in deleted file mode 100644 index ca19b4bfa602..000000000000 --- a/devel/chora/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +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, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/devel/chora/files/pkg-install.in b/devel/chora/files/pkg-install.in deleted file mode 100644 index 4c605270649a..000000000000 --- a/devel/chora/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%CHORADIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/devel/chora/files/pkg-message.in b/devel/chora/files/pkg-message.in deleted file mode 100644 index 34b4d8550554..000000000000 --- a/devel/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. -************************************************************************ diff --git a/devel/chora/pkg-plist b/devel/chora/pkg-plist index b20759e18ae8..11f1c794ef9b 100644 --- a/devel/chora/pkg-plist +++ b/devel/chora/pkg-plist @@ -1,160 +1,152 @@ -%%HORDE_INC%%/httpd-chora.conf -%%PORTDOCS%%%%DOCSDIR%%/BUGS -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/CREDITS -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES -%%PORTDOCS%%%%DOCSDIR%%/TODO -%%CHORADIR%%/annotate.php -%%CHORADIR%%/browse.php -%%CHORADIR%%/co.php -%%CHORADIR%%/config/.htaccess -%%CHORADIR%%/config/conf.xml -%%CHORADIR%%/config/cvsgraph.conf.dist -%%CHORADIR%%/config/longIntro.txt.dist -%%CHORADIR%%/config/mime_drivers.php.dist -%%CHORADIR%%/config/prefs.php.dist -%%CHORADIR%%/config/sourceroots.php.dist -%%CHORADIR%%/cvs.php -%%CHORADIR%%/cvsgraph.php -%%CHORADIR%%/diff.php -%%CHORADIR%%/history.php -%%CHORADIR%%/index.php -%%CHORADIR%%/lib/.htaccess -%%CHORADIR%%/lib/Chora.php -%%CHORADIR%%/lib/base.php -%%CHORADIR%%/lib/version.php -%%CHORADIR%%/locale/.htaccess -%%CHORADIR%%/locale/cs_CZ/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/de_DE/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/de_DE/help.xml -%%CHORADIR%%/locale/en_US/help.xml -%%CHORADIR%%/locale/es_ES/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/es_ES/help.xml -%%CHORADIR%%/locale/fi_FI/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/fi_FI/help.xml -%%CHORADIR%%/locale/fr_FR/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/nb_NO/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/nl_NL/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/pl_PL/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/pt_BR/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/ro_RO/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/ru_RU/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/sk_SK/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/sv_SE/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/zh_CN/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/zh_TW/LC_MESSAGES/chora.mo -%%CHORADIR%%/patchsets.php -%%CHORADIR%%/po/.htaccess -%%CHORADIR%%/po/README -%%CHORADIR%%/po/chora.pot -%%CHORADIR%%/po/cs_CZ.po -%%CHORADIR%%/po/de_DE.po -%%CHORADIR%%/po/es_ES.po -%%CHORADIR%%/po/fi_FI.po -%%CHORADIR%%/po/fr_FR.po -%%CHORADIR%%/po/nb_NO.po -%%CHORADIR%%/po/nl_NL.po -%%CHORADIR%%/po/pl_PL.po -%%CHORADIR%%/po/pt_BR.po -%%CHORADIR%%/po/ro_RO.po -%%CHORADIR%%/po/ru_RU.po -%%CHORADIR%%/po/sk_SK.po -%%CHORADIR%%/po/sv_SE.po -%%CHORADIR%%/po/zh_CN.po -%%CHORADIR%%/po/zh_TW.po -%%CHORADIR%%/stats.php -%%CHORADIR%%/templates/.htaccess -%%CHORADIR%%/templates/annotate/footer.inc -%%CHORADIR%%/templates/annotate/header.inc -%%CHORADIR%%/templates/annotate/line.inc -%%CHORADIR%%/templates/checkout/checkout.inc -%%CHORADIR%%/templates/common-header.inc -%%CHORADIR%%/templates/cvsgraph/cvsgraph.inc -%%CHORADIR%%/templates/diff/hr/add.inc -%%CHORADIR%%/templates/diff/hr/change.inc -%%CHORADIR%%/templates/diff/hr/empty.inc -%%CHORADIR%%/templates/diff/hr/footer.inc -%%CHORADIR%%/templates/diff/hr/header.inc -%%CHORADIR%%/templates/diff/hr/nochange.inc -%%CHORADIR%%/templates/diff/hr/remove.inc -%%CHORADIR%%/templates/diff/hr/row.inc -%%CHORADIR%%/templates/directory/back.inc -%%CHORADIR%%/templates/directory/dir.inc -%%CHORADIR%%/templates/directory/file.inc -%%CHORADIR%%/templates/directory/footer.inc -%%CHORADIR%%/templates/directory/header.inc -%%CHORADIR%%/templates/error_page.inc -%%CHORADIR%%/templates/headerbar.inc -%%CHORADIR%%/templates/history/blank.inc -%%CHORADIR%%/templates/history/branch_cell.inc -%%CHORADIR%%/templates/history/footer.inc -%%CHORADIR%%/templates/history/header.inc -%%CHORADIR%%/templates/history/rev.inc -%%CHORADIR%%/templates/history/row_end.inc -%%CHORADIR%%/templates/history/row_start.inc -%%CHORADIR%%/templates/log/request.inc -%%CHORADIR%%/templates/log/rev.inc -%%CHORADIR%%/templates/menu.inc -%%CHORADIR%%/templates/patchsets/ps.inc -%%CHORADIR%%/templates/stats/stats.inc -%%CHORADIR%%/themes/burntorange/screen.css -%%CHORADIR%%/themes/graphics/back.png -%%CHORADIR%%/themes/graphics/chora.png -%%CHORADIR%%/themes/graphics/deleted.png -%%CHORADIR%%/themes/graphics/favicon.ico -%%CHORADIR%%/themes/graphics/folder.png -%%CHORADIR%%/themes/screen.css -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%CHORADIR%%/themes/graphics -@dirrm %%CHORADIR%%/themes/burntorange -@dirrm %%CHORADIR%%/themes -@dirrm %%CHORADIR%%/templates/stats -@dirrm %%CHORADIR%%/templates/patchsets -@dirrm %%CHORADIR%%/templates/log -@dirrm %%CHORADIR%%/templates/history -@dirrm %%CHORADIR%%/templates/directory -@dirrm %%CHORADIR%%/templates/diff/hr -@dirrm %%CHORADIR%%/templates/diff -@dirrm %%CHORADIR%%/templates/cvsgraph -@dirrm %%CHORADIR%%/templates/checkout -@dirrm %%CHORADIR%%/templates/annotate -@dirrm %%CHORADIR%%/templates -@dirrm %%CHORADIR%%/po -@dirrm %%CHORADIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/zh_TW -@dirrm %%CHORADIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/zh_CN -@dirrm %%CHORADIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/sv_SE -@dirrm %%CHORADIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/sk_SK -@dirrm %%CHORADIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/ru_RU -@dirrm %%CHORADIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/ro_RO -@dirrm %%CHORADIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/pt_BR -@dirrm %%CHORADIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/pl_PL -@dirrm %%CHORADIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/nl_NL -@dirrm %%CHORADIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/nb_NO -@dirrm %%CHORADIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/fr_FR -@dirrm %%CHORADIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/fi_FI -@dirrm %%CHORADIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/es_ES -@dirrm %%CHORADIR%%/locale/en_US -@dirrm %%CHORADIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/de_DE -@dirrm %%CHORADIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/cs_CZ -@dirrm %%CHORADIR%%/locale -@dirrm %%CHORADIR%%/lib -@dirrmtry %%CHORADIR%%/config -@dirrmtry %%CHORADIR%% +%%HORDIR%%/.htaccess +%%HORDIR%%/annotate.php +%%HORDIR%%/browse.php +%%HORDIR%%/co.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/cvsgraph.conf.dist +%%HORDIR%%/config/longIntro.txt.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/sourceroots.php.dist +%%HORDIR%%/cvs.php +%%HORDIR%%/cvsgraph.php +%%HORDIR%%/diff.php +%%HORDIR%%/history.php +%%HORDIR%%/index.php +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Chora.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/chora.mo +%%HORDIR%%/patchsets.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/chora.pot +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/stats.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/annotate/footer.inc +%%HORDIR%%/templates/annotate/header.inc +%%HORDIR%%/templates/annotate/line.inc +%%HORDIR%%/templates/checkout/checkout.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/cvsgraph/cvsgraph.inc +%%HORDIR%%/templates/diff/hr/add.inc +%%HORDIR%%/templates/diff/hr/change.inc +%%HORDIR%%/templates/diff/hr/empty.inc +%%HORDIR%%/templates/diff/hr/footer.inc +%%HORDIR%%/templates/diff/hr/header.inc +%%HORDIR%%/templates/diff/hr/nochange.inc +%%HORDIR%%/templates/diff/hr/remove.inc +%%HORDIR%%/templates/diff/hr/row.inc +%%HORDIR%%/templates/directory/back.inc +%%HORDIR%%/templates/directory/dir.inc +%%HORDIR%%/templates/directory/file.inc +%%HORDIR%%/templates/directory/footer.inc +%%HORDIR%%/templates/directory/header.inc +%%HORDIR%%/templates/error_page.inc +%%HORDIR%%/templates/headerbar.inc +%%HORDIR%%/templates/history/blank.inc +%%HORDIR%%/templates/history/branch_cell.inc +%%HORDIR%%/templates/history/footer.inc +%%HORDIR%%/templates/history/header.inc +%%HORDIR%%/templates/history/rev.inc +%%HORDIR%%/templates/history/row_end.inc +%%HORDIR%%/templates/history/row_start.inc +%%HORDIR%%/templates/log/request.inc +%%HORDIR%%/templates/log/rev.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/patchsets/ps.inc +%%HORDIR%%/templates/stats/stats.inc +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/graphics/back.png +%%HORDIR%%/themes/graphics/chora.png +%%HORDIR%%/themes/graphics/deleted.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/folder.png +%%HORDIR%%/themes/screen.css +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/templates/annotate +@dirrm %%HORDIR%%/templates/checkout +@dirrm %%HORDIR%%/templates/cvsgraph +@dirrm %%HORDIR%%/templates/diff/hr +@dirrm %%HORDIR%%/templates/diff +@dirrm %%HORDIR%%/templates/directory +@dirrm %%HORDIR%%/templates/history +@dirrm %%HORDIR%%/templates/log +@dirrm %%HORDIR%%/templates/patchsets +@dirrm %%HORDIR%%/templates/stats +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/devel/horde-chora/Makefile b/devel/horde-chora/Makefile index 073b1f7da8f1..b663cd988165 100644 --- a/devel/horde-chora/Makefile +++ b/devel/horde-chora/Makefile @@ -9,8 +9,6 @@ PORTNAME= chora PORTVERSION= 2.0.1 PORTREVISION= 1 CATEGORIES= devel www -MASTER_SITES= HORDE -DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= beech@alaskaparadise.com COMMENT= The Horde CVS web-viewer @@ -28,8 +26,6 @@ COMMENT= The Horde CVS web-viewer # #----------------------------------------------------------------------- -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - .if !defined(WITHOUT_SVN) RUN_DEPENDS+= ${LOCALBASE}/bin/svn:${PORTSDIR}/devel/subversion .endif @@ -42,46 +38,17 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/cvsps:${PORTSDIR}/devel/cvsps-devel RUN_DEPENDS+= ${LOCALBASE}/bin/cvsgraph:${PORTSDIR}/devel/cvsgraph .endif -NO_BUILD= yes -USE_APACHE= 1.3+ # needed to test APACHE_VERSION - # Specify where your repository belongs. # (You can reconfigure it after installation anyway) .if defined(PACKAGE_BUILDING) || !defined(CVSROOT) || empty(CVSROOT) CVSROOT= /home/cvs .endif -DOCS= COPYING README docs/BUGS docs/CHANGES docs/CREDITS \ - docs/INSTALL docs/RELEASE_NOTES docs/TODO -CONFFILE= cvsgraph.conf longIntro.txt mime_drivers.php prefs.php \ - sourceroots.php -SUB_DIRS= config lib locale po templates themes - -LHORDEDIR?= www/horde -LCHORADIR= ${LHORDEDIR}/chora - -PLIST_SUB= CHORADIR=${LCHORADIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= CHORADIR=${CHORADIR} CONFDIR=${CONFDIR} - -CHORADIR= ${PREFIX}/${LCHORADIR} -CONFDIR= ${CHORADIR}/config - -PATCH2RM= sourceroots.php.dist.orig sourceroots.php.dist.bak conf.xml.bak - -.include <bsd.port.pre.mk> - -.if ${APACHE_VERSION} >= 20 -HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes -.else -HORDE_INC= ${LOCALBASE}/etc/horde -.endif +USE_HORDE= base pkg-message +USE_GETTEXT= yes +PORTDOCS= README BUGS CHANGES CREDITS INSTALL RELEASE_NOTES TODO pre-configure: - @${SED} -e "s:/home/httpd/html/horde/chora:${CHORADIR}:" \ - ${FILESDIR}/httpd.conf.chora > ${WRKDIR}/httpd-chora.conf @${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" \ -e "s|/usr/bin/cvsgraph|${LOCALBASE}/bin/cvsgraph|" \ -e "s|/usr/bin/svn|${LOCALBASE}/bin/svn|" \ @@ -89,40 +56,14 @@ pre-configure: @${REINPLACE_CMD} -e "s|%%CVSROOT%%|${CVSROOT}|" \ -e "s|%%CONFDIR%%|${CONFDIR}|" \ ${WRKSRC}/config/sourceroots.php.dist -.for FILE in ${PATCH2RM} - @${RM} ${WRKSRC}/config/${FILE} -.endfor pre-install: .if !defined(WITHOUT_CVSPS) - @if ! pkg_info -I -x cvsps-devel > /dev/null ; then \ + @if ! ${PKG_INFO} -I -x cvsps-devel > /dev/null ; then \ ${ECHO_MSG} "Error: cvsps-devel is required, not cvsps." ; \ ${FALSE} ; \ fi .endif -do-install: - @${MKDIR} ${CHORADIR} -.for REP in ${SUB_DIRS} - @${CP} -Rp ${WRKSRC}/${REP} ${CHORADIR} -.endfor - @${CP} -p ${WRKSRC}/*.php ${CHORADIR} - - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${CHORADIR} - @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd-chora.conf ${HORDE_INC} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for FILE in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} -.endfor - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> 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/pkg-deinstall.in b/devel/horde-chora/files/pkg-deinstall.in deleted file mode 100644 index ca19b4bfa602..000000000000 --- a/devel/horde-chora/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +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, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/devel/horde-chora/files/pkg-install.in b/devel/horde-chora/files/pkg-install.in deleted file mode 100644 index 4c605270649a..000000000000 --- a/devel/horde-chora/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%CHORADIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac 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. -************************************************************************ diff --git a/devel/horde-chora/pkg-plist b/devel/horde-chora/pkg-plist index b20759e18ae8..11f1c794ef9b 100644 --- a/devel/horde-chora/pkg-plist +++ b/devel/horde-chora/pkg-plist @@ -1,160 +1,152 @@ -%%HORDE_INC%%/httpd-chora.conf -%%PORTDOCS%%%%DOCSDIR%%/BUGS -%%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/CREDITS -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES -%%PORTDOCS%%%%DOCSDIR%%/TODO -%%CHORADIR%%/annotate.php -%%CHORADIR%%/browse.php -%%CHORADIR%%/co.php -%%CHORADIR%%/config/.htaccess -%%CHORADIR%%/config/conf.xml -%%CHORADIR%%/config/cvsgraph.conf.dist -%%CHORADIR%%/config/longIntro.txt.dist -%%CHORADIR%%/config/mime_drivers.php.dist -%%CHORADIR%%/config/prefs.php.dist -%%CHORADIR%%/config/sourceroots.php.dist -%%CHORADIR%%/cvs.php -%%CHORADIR%%/cvsgraph.php -%%CHORADIR%%/diff.php -%%CHORADIR%%/history.php -%%CHORADIR%%/index.php -%%CHORADIR%%/lib/.htaccess -%%CHORADIR%%/lib/Chora.php -%%CHORADIR%%/lib/base.php -%%CHORADIR%%/lib/version.php -%%CHORADIR%%/locale/.htaccess -%%CHORADIR%%/locale/cs_CZ/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/de_DE/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/de_DE/help.xml -%%CHORADIR%%/locale/en_US/help.xml -%%CHORADIR%%/locale/es_ES/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/es_ES/help.xml -%%CHORADIR%%/locale/fi_FI/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/fi_FI/help.xml -%%CHORADIR%%/locale/fr_FR/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/nb_NO/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/nl_NL/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/pl_PL/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/pt_BR/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/ro_RO/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/ru_RU/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/sk_SK/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/sv_SE/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/zh_CN/LC_MESSAGES/chora.mo -%%CHORADIR%%/locale/zh_TW/LC_MESSAGES/chora.mo -%%CHORADIR%%/patchsets.php -%%CHORADIR%%/po/.htaccess -%%CHORADIR%%/po/README -%%CHORADIR%%/po/chora.pot -%%CHORADIR%%/po/cs_CZ.po -%%CHORADIR%%/po/de_DE.po -%%CHORADIR%%/po/es_ES.po -%%CHORADIR%%/po/fi_FI.po -%%CHORADIR%%/po/fr_FR.po -%%CHORADIR%%/po/nb_NO.po -%%CHORADIR%%/po/nl_NL.po -%%CHORADIR%%/po/pl_PL.po -%%CHORADIR%%/po/pt_BR.po -%%CHORADIR%%/po/ro_RO.po -%%CHORADIR%%/po/ru_RU.po -%%CHORADIR%%/po/sk_SK.po -%%CHORADIR%%/po/sv_SE.po -%%CHORADIR%%/po/zh_CN.po -%%CHORADIR%%/po/zh_TW.po -%%CHORADIR%%/stats.php -%%CHORADIR%%/templates/.htaccess -%%CHORADIR%%/templates/annotate/footer.inc -%%CHORADIR%%/templates/annotate/header.inc -%%CHORADIR%%/templates/annotate/line.inc -%%CHORADIR%%/templates/checkout/checkout.inc -%%CHORADIR%%/templates/common-header.inc -%%CHORADIR%%/templates/cvsgraph/cvsgraph.inc -%%CHORADIR%%/templates/diff/hr/add.inc -%%CHORADIR%%/templates/diff/hr/change.inc -%%CHORADIR%%/templates/diff/hr/empty.inc -%%CHORADIR%%/templates/diff/hr/footer.inc -%%CHORADIR%%/templates/diff/hr/header.inc -%%CHORADIR%%/templates/diff/hr/nochange.inc -%%CHORADIR%%/templates/diff/hr/remove.inc -%%CHORADIR%%/templates/diff/hr/row.inc -%%CHORADIR%%/templates/directory/back.inc -%%CHORADIR%%/templates/directory/dir.inc -%%CHORADIR%%/templates/directory/file.inc -%%CHORADIR%%/templates/directory/footer.inc -%%CHORADIR%%/templates/directory/header.inc -%%CHORADIR%%/templates/error_page.inc -%%CHORADIR%%/templates/headerbar.inc -%%CHORADIR%%/templates/history/blank.inc -%%CHORADIR%%/templates/history/branch_cell.inc -%%CHORADIR%%/templates/history/footer.inc -%%CHORADIR%%/templates/history/header.inc -%%CHORADIR%%/templates/history/rev.inc -%%CHORADIR%%/templates/history/row_end.inc -%%CHORADIR%%/templates/history/row_start.inc -%%CHORADIR%%/templates/log/request.inc -%%CHORADIR%%/templates/log/rev.inc -%%CHORADIR%%/templates/menu.inc -%%CHORADIR%%/templates/patchsets/ps.inc -%%CHORADIR%%/templates/stats/stats.inc -%%CHORADIR%%/themes/burntorange/screen.css -%%CHORADIR%%/themes/graphics/back.png -%%CHORADIR%%/themes/graphics/chora.png -%%CHORADIR%%/themes/graphics/deleted.png -%%CHORADIR%%/themes/graphics/favicon.ico -%%CHORADIR%%/themes/graphics/folder.png -%%CHORADIR%%/themes/screen.css -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%CHORADIR%%/themes/graphics -@dirrm %%CHORADIR%%/themes/burntorange -@dirrm %%CHORADIR%%/themes -@dirrm %%CHORADIR%%/templates/stats -@dirrm %%CHORADIR%%/templates/patchsets -@dirrm %%CHORADIR%%/templates/log -@dirrm %%CHORADIR%%/templates/history -@dirrm %%CHORADIR%%/templates/directory -@dirrm %%CHORADIR%%/templates/diff/hr -@dirrm %%CHORADIR%%/templates/diff -@dirrm %%CHORADIR%%/templates/cvsgraph -@dirrm %%CHORADIR%%/templates/checkout -@dirrm %%CHORADIR%%/templates/annotate -@dirrm %%CHORADIR%%/templates -@dirrm %%CHORADIR%%/po -@dirrm %%CHORADIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/zh_TW -@dirrm %%CHORADIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/zh_CN -@dirrm %%CHORADIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/sv_SE -@dirrm %%CHORADIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/sk_SK -@dirrm %%CHORADIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/ru_RU -@dirrm %%CHORADIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/ro_RO -@dirrm %%CHORADIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/pt_BR -@dirrm %%CHORADIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/pl_PL -@dirrm %%CHORADIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/nl_NL -@dirrm %%CHORADIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/nb_NO -@dirrm %%CHORADIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/fr_FR -@dirrm %%CHORADIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/fi_FI -@dirrm %%CHORADIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/es_ES -@dirrm %%CHORADIR%%/locale/en_US -@dirrm %%CHORADIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/de_DE -@dirrm %%CHORADIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%CHORADIR%%/locale/cs_CZ -@dirrm %%CHORADIR%%/locale -@dirrm %%CHORADIR%%/lib -@dirrmtry %%CHORADIR%%/config -@dirrmtry %%CHORADIR%% +%%HORDIR%%/.htaccess +%%HORDIR%%/annotate.php +%%HORDIR%%/browse.php +%%HORDIR%%/co.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/cvsgraph.conf.dist +%%HORDIR%%/config/longIntro.txt.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/sourceroots.php.dist +%%HORDIR%%/cvs.php +%%HORDIR%%/cvsgraph.php +%%HORDIR%%/diff.php +%%HORDIR%%/history.php +%%HORDIR%%/index.php +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Chora.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/chora.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/chora.mo +%%HORDIR%%/patchsets.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/chora.pot +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/stats.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/annotate/footer.inc +%%HORDIR%%/templates/annotate/header.inc +%%HORDIR%%/templates/annotate/line.inc +%%HORDIR%%/templates/checkout/checkout.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/cvsgraph/cvsgraph.inc +%%HORDIR%%/templates/diff/hr/add.inc +%%HORDIR%%/templates/diff/hr/change.inc +%%HORDIR%%/templates/diff/hr/empty.inc +%%HORDIR%%/templates/diff/hr/footer.inc +%%HORDIR%%/templates/diff/hr/header.inc +%%HORDIR%%/templates/diff/hr/nochange.inc +%%HORDIR%%/templates/diff/hr/remove.inc +%%HORDIR%%/templates/diff/hr/row.inc +%%HORDIR%%/templates/directory/back.inc +%%HORDIR%%/templates/directory/dir.inc +%%HORDIR%%/templates/directory/file.inc +%%HORDIR%%/templates/directory/footer.inc +%%HORDIR%%/templates/directory/header.inc +%%HORDIR%%/templates/error_page.inc +%%HORDIR%%/templates/headerbar.inc +%%HORDIR%%/templates/history/blank.inc +%%HORDIR%%/templates/history/branch_cell.inc +%%HORDIR%%/templates/history/footer.inc +%%HORDIR%%/templates/history/header.inc +%%HORDIR%%/templates/history/rev.inc +%%HORDIR%%/templates/history/row_end.inc +%%HORDIR%%/templates/history/row_start.inc +%%HORDIR%%/templates/log/request.inc +%%HORDIR%%/templates/log/rev.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/patchsets/ps.inc +%%HORDIR%%/templates/stats/stats.inc +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/graphics/back.png +%%HORDIR%%/themes/graphics/chora.png +%%HORDIR%%/themes/graphics/deleted.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/folder.png +%%HORDIR%%/themes/screen.css +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/templates/annotate +@dirrm %%HORDIR%%/templates/checkout +@dirrm %%HORDIR%%/templates/cvsgraph +@dirrm %%HORDIR%%/templates/diff/hr +@dirrm %%HORDIR%%/templates/diff +@dirrm %%HORDIR%%/templates/directory +@dirrm %%HORDIR%%/templates/history +@dirrm %%HORDIR%%/templates/log +@dirrm %%HORDIR%%/templates/patchsets +@dirrm %%HORDIR%%/templates/stats +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/horde-imp/Makefile b/mail/horde-imp/Makefile index 48e7a1ebb674..7c12481824c1 100644 --- a/mail/horde-imp/Makefile +++ b/mail/horde-imp/Makefile @@ -7,10 +7,8 @@ PORTNAME= imp PORTVERSION= 4.1.4 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Webmail system for IMAP/POP3 mailboxes @@ -39,15 +37,11 @@ COMMENT= Webmail system for IMAP/POP3 mailboxes RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL -CONFLICTS= imp-3.* - USE_PHP= imap . if !defined(WITHOUT_LDAP) USE_PHP+= ldap . endif -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - .if !defined(WITHOUT_SMIME) USE_PHP+= openssl .endif @@ -66,44 +60,13 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell RUN_DEPENDS+= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request .endif -NO_BUILD= yes +CONFLICTS= imp-3.* +USE_HORDE= base USE_GETTEXT= yes -REINPLACE_ARGS= -i.beforeIMP - PORTDOCS= README CHANGES CREDITS INSTALL \ RELEASE_NOTES TODO UPGRADING -CONFFILE= filter.txt header.php menu.php mime_drivers.php motd.php \ - prefs.php servers.php trailer.txt -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LIMPDIR= ${LHORDEDIR}/imp -PEARDIR?= ${LOCALBASE}/share/pear - -PLIST_SUB= IMPDIR=${LIMPDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= IMPDIR=${IMPDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} - -IMPDIR= ${PREFIX}/${LIMPDIR} -CONFDIR= ${IMPDIR}/config - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h - -PATCH2RM= prefs.php.dist.orig servers.php.dist.orig conf.xml.orig \ - conf.xml.beforeIMP servers.php.dist.beforeIMP - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ pre-configure: - @${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml .if !defined(WITHOUT_ASPELL) @${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/aspell:" \ ${WRKSRC}/config/conf.xml @@ -136,11 +99,6 @@ pre-configure: . endif .endif -.for fc in ${PATCH2RM} - @${RM} ${WRKSRC}/config/${fc} -.endfor - @${RM} ${WRKSRC}/lib/MIME/Headers.php.beforeIMP - pre-install: .if !defined(BATCH) && !defined(WITHOUT_SSL) @if ! ${GREP} -q -e 'CCLIENT_SSLENABLED "yes"' ${PORTREV_H}; then \ @@ -151,27 +109,5 @@ pre-install: fi .endif -do-install: - @${INSTALL} -d ${IMPDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${IMPDIR}/ - @${CP} -p ${WRKSRC}/*.php ${IMPDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IMPDIR}/ - @${CHMOD} -R o-rwx ${IMPDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${IMPDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${IMPDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/horde-imp/files/pkg-deinstall.in b/mail/horde-imp/files/pkg-deinstall.in deleted file mode 100644 index e4787a72dfe4..000000000000 --- a/mail/horde-imp/files/pkg-deinstall.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%IMPDIR%%/config/*php %%IMPDIR%%/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/horde-imp/files/pkg-install.in b/mail/horde-imp/files/pkg-install.in deleted file mode 100644 index 7a19b9e2b9de..000000000000 --- a/mail/horde-imp/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%IMPDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/horde-imp/files/pkg-message.in b/mail/horde-imp/files/pkg-message.in index 0d82a9a5d916..9a3de8c83b0c 100644 --- a/mail/horde-imp/files/pkg-message.in +++ b/mail/horde-imp/files/pkg-message.in @@ -1,12 +1,13 @@ ************************************************************************ -IMP has been installed in %%IMPDIR%% with your blank +IMP has been installed in %%HORDIR%%/ with your blank configuration files. Horde must be configured and the tables created; if not, see -`pkg_info -D -x horde'. +`pkg_info -Dx horde-base'. Then, you have to tune the configuration files located in -%%CONFDIR%%/, specially the file servers.php to define your mailserver. +%%HORCFG%%/, especially the file servers.php +to define your mailserver. Then, you must login to Horde as a Horde Administrator to finish the configuration. Please read %%DOCSDIR%%/INSTALL. diff --git a/mail/horde-imp/pkg-plist b/mail/horde-imp/pkg-plist index 7aeb4b50a7c6..37bc7af5025a 100644 --- a/mail/horde-imp/pkg-plist +++ b/mail/horde-imp/pkg-plist @@ -1,498 +1,499 @@ -%%IMPDIR%%/acl.php -%%IMPDIR%%/attachment.php -%%IMPDIR%%/compose.php -%%IMPDIR%%/config/.htaccess -%%IMPDIR%%/config/conf.xml -%%IMPDIR%%/config/filter.txt.dist -%%IMPDIR%%/config/header.php.dist -%%IMPDIR%%/config/menu.php.dist -%%IMPDIR%%/config/mime_drivers.php.dist -%%IMPDIR%%/config/motd.php.dist -%%IMPDIR%%/config/prefs.php.dist -%%IMPDIR%%/config/servers.php.dist -%%IMPDIR%%/config/trailer.txt.dist -%%IMPDIR%%/contacts.php -%%IMPDIR%%/expand.php -%%IMPDIR%%/fetchmail.php -%%IMPDIR%%/fetchmailprefs.php -%%IMPDIR%%/filterprefs.php -%%IMPDIR%%/folders.php -%%IMPDIR%%/index.php -%%IMPDIR%%/js/ieEscGuard.js -%%IMPDIR%%/lib/.htaccess -%%IMPDIR%%/lib/Auth/imp.php -%%IMPDIR%%/lib/Block/summary.php -%%IMPDIR%%/lib/Block/tree_folders.php -%%IMPDIR%%/lib/Compose.php -%%IMPDIR%%/lib/Crypt/PGP.php -%%IMPDIR%%/lib/Crypt/SMIME.php -%%IMPDIR%%/lib/Fetchmail.php -%%IMPDIR%%/lib/Fetchmail/imap.php -%%IMPDIR%%/lib/Filter.php -%%IMPDIR%%/lib/Folder.php -%%IMPDIR%%/lib/IMAP.php -%%IMPDIR%%/lib/IMAP/Client.php -%%IMPDIR%%/lib/IMAP/Search.php -%%IMPDIR%%/lib/IMAP/Sort.php -%%IMPDIR%%/lib/IMAP/Thread.php -%%IMPDIR%%/lib/IMAP/Tree.php -%%IMPDIR%%/lib/IMP.php -%%IMPDIR%%/lib/Identity/imp.php -%%IMPDIR%%/lib/MIME/Contents.php -%%IMPDIR%%/lib/MIME/Headers.php -%%IMPDIR%%/lib/MIME/Viewer/alternative.php -%%IMPDIR%%/lib/MIME/Viewer/appledouble.php -%%IMPDIR%%/lib/MIME/Viewer/enriched.php -%%IMPDIR%%/lib/MIME/Viewer/html.php -%%IMPDIR%%/lib/MIME/Viewer/images.php -%%IMPDIR%%/lib/MIME/Viewer/itip.php -%%IMPDIR%%/lib/MIME/Viewer/multipart.php -%%IMPDIR%%/lib/MIME/Viewer/notification.php -%%IMPDIR%%/lib/MIME/Viewer/partial.php -%%IMPDIR%%/lib/MIME/Viewer/pgp.php -%%IMPDIR%%/lib/MIME/Viewer/pkcs7.php -%%IMPDIR%%/lib/MIME/Viewer/plain.php -%%IMPDIR%%/lib/MIME/Viewer/related.php -%%IMPDIR%%/lib/MIME/Viewer/rfc822.php -%%IMPDIR%%/lib/MIME/Viewer/status.php -%%IMPDIR%%/lib/MIME/Viewer/tnef.php -%%IMPDIR%%/lib/MIME/Viewer/zip.php -%%IMPDIR%%/lib/Mailbox.php -%%IMPDIR%%/lib/Maillog.php -%%IMPDIR%%/lib/Maintenance/Task/delete_attachments_monthly.php -%%IMPDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php -%%IMPDIR%%/lib/Maintenance/Task/fetchmail_login.php -%%IMPDIR%%/lib/Maintenance/Task/purge_trash.php -%%IMPDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php -%%IMPDIR%%/lib/Maintenance/Task/tos_agreement.php -%%IMPDIR%%/lib/Maintenance/imp.php -%%IMPDIR%%/lib/Message.php -%%IMPDIR%%/lib/Notification/Listener/status.php -%%IMPDIR%%/lib/Quota.php -%%IMPDIR%%/lib/Quota/command.php -%%IMPDIR%%/lib/Quota/courier.php -%%IMPDIR%%/lib/Quota/cyrus.php -%%IMPDIR%%/lib/Quota/logfile.php -%%IMPDIR%%/lib/Quota/mdaemon.php -%%IMPDIR%%/lib/Quota/mercury32.php -%%IMPDIR%%/lib/Search.php -%%IMPDIR%%/lib/Session.php -%%IMPDIR%%/lib/Spam.php -%%IMPDIR%%/lib/api.php -%%IMPDIR%%/lib/base.php -%%IMPDIR%%/lib/prefs.php -%%IMPDIR%%/lib/version.php -%%IMPDIR%%/locale/.htaccess -%%IMPDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ar_SY/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/bs_BA/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ca_ES/help.xml -%%IMPDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/cs_CZ/help.xml -%%IMPDIR%%/locale/da_DK/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/da_DK/help.xml -%%IMPDIR%%/locale/de_DE/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/de_DE/help.xml -%%IMPDIR%%/locale/el_GR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/el_GR/help.xml -%%IMPDIR%%/locale/en_US/help.xml -%%IMPDIR%%/locale/es_ES/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/es_ES/help.xml -%%IMPDIR%%/locale/et_EE/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/et_EE/help.xml -%%IMPDIR%%/locale/fa_IR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/fa_IR/help.xml -%%IMPDIR%%/locale/fi_FI/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/fi_FI/help.xml -%%IMPDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/fr_FR/help.xml -%%IMPDIR%%/locale/gl_ES/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/he_IL/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/hu_HU/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/hu_HU/help.xml -%%IMPDIR%%/locale/id_ID/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/is_IS/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/it_IT/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/it_IT/help.xml -%%IMPDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/km_KH/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ko_KR/help.xml -%%IMPDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/mk_MK/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/nb_NO/help.xml -%%IMPDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/nl_NL/help.xml -%%IMPDIR%%/locale/nn_NO/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pl_PL/help.xml -%%IMPDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pt_BR/help.xml -%%IMPDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pt_PT/help.xml -%%IMPDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ru_RU/help.xml -%%IMPDIR%%/locale/sk_SK/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/sk_SK/help.xml -%%IMPDIR%%/locale/sl_SI/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/sv_SE/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/sv_SE/help.xml -%%IMPDIR%%/locale/th_TH/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/tr_TR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/tr_TR/help.xml -%%IMPDIR%%/locale/uk_UA/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/uk_UA/help.xml -%%IMPDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/zh_CN/help.xml -%%IMPDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/zh_TW/help.xml -%%IMPDIR%%/login.php -%%IMPDIR%%/mailbox.php -%%IMPDIR%%/message.php -%%IMPDIR%%/pgp.php -%%IMPDIR%%/po/.htaccess -%%IMPDIR%%/po/README -%%IMPDIR%%/po/ar_OM.po -%%IMPDIR%%/po/ar_SY.po -%%IMPDIR%%/po/bg_BG.po -%%IMPDIR%%/po/bs_BA.po -%%IMPDIR%%/po/ca_ES.po -%%IMPDIR%%/po/cs_CZ.po -%%IMPDIR%%/po/da_DK.po -%%IMPDIR%%/po/de_DE.po -%%IMPDIR%%/po/el_GR.po -%%IMPDIR%%/po/es_ES.po -%%IMPDIR%%/po/et_EE.po -%%IMPDIR%%/po/fa_IR.po -%%IMPDIR%%/po/fi_FI.po -%%IMPDIR%%/po/fr_FR.po -%%IMPDIR%%/po/gl_ES.po -%%IMPDIR%%/po/he_IL.po -%%IMPDIR%%/po/hu_HU.po -%%IMPDIR%%/po/id_ID.po -%%IMPDIR%%/po/imp.pot -%%IMPDIR%%/po/is_IS.po -%%IMPDIR%%/po/it_IT.po -%%IMPDIR%%/po/ja_JP.po -%%IMPDIR%%/po/km_KH.po -%%IMPDIR%%/po/ko_KR.po -%%IMPDIR%%/po/lt_LT.po -%%IMPDIR%%/po/lv_LV.po -%%IMPDIR%%/po/mk_MK.po -%%IMPDIR%%/po/nb_NO.po -%%IMPDIR%%/po/nl_NL.po -%%IMPDIR%%/po/nn_NO.po -%%IMPDIR%%/po/pl_PL.po -%%IMPDIR%%/po/pt_BR.po -%%IMPDIR%%/po/pt_PT.po -%%IMPDIR%%/po/ro_RO.po -%%IMPDIR%%/po/ru_RU.po -%%IMPDIR%%/po/sk_SK.po -%%IMPDIR%%/po/sl_SI.po -%%IMPDIR%%/po/sv_SE.po -%%IMPDIR%%/po/th_TH.po -%%IMPDIR%%/po/tr_TR.po -%%IMPDIR%%/po/uk_UA.po -%%IMPDIR%%/po/zh_CN.po -%%IMPDIR%%/po/zh_TW.po -%%IMPDIR%%/recompose.php -%%IMPDIR%%/redirect.php -%%IMPDIR%%/saveimage.php -%%IMPDIR%%/scripts/.htaccess -%%IMPDIR%%/scripts/Imp.reg -%%IMPDIR%%/scripts/custom_login.php -%%IMPDIR%%/search.php -%%IMPDIR%%/smime.php -%%IMPDIR%%/spelling.php -%%IMPDIR%%/stationery.php -%%IMPDIR%%/templates/.htaccess -%%IMPDIR%%/templates/acl/acl.inc -%%IMPDIR%%/templates/common-header.inc -%%IMPDIR%%/templates/compose/attachments.inc -%%IMPDIR%%/templates/compose/attachments.js -%%IMPDIR%%/templates/compose/compose.inc -%%IMPDIR%%/templates/compose/compose.js -%%IMPDIR%%/templates/compose/compose_expand.js -%%IMPDIR%%/templates/compose/encrypt_list.inc -%%IMPDIR%%/templates/compose/expand.inc -%%IMPDIR%%/templates/compose/recompose.inc -%%IMPDIR%%/templates/compose/redirect.inc -%%IMPDIR%%/templates/compose/spelling.inc -%%IMPDIR%%/templates/compose/spelling.js -%%IMPDIR%%/templates/compose/success.inc -%%IMPDIR%%/templates/contacts/contacts.inc -%%IMPDIR%%/templates/fetchmail/account_select.inc -%%IMPDIR%%/templates/fetchmail/driver_select.inc -%%IMPDIR%%/templates/fetchmail/fetchmail.inc -%%IMPDIR%%/templates/fetchmail/manage.inc -%%IMPDIR%%/templates/fetchmail/top.inc -%%IMPDIR%%/templates/filters/notactive.inc -%%IMPDIR%%/templates/filters/prefs.inc -%%IMPDIR%%/templates/folders/actions.inc -%%IMPDIR%%/templates/folders/folders.html -%%IMPDIR%%/templates/folders/folders_confirm.html -%%IMPDIR%%/templates/folders/foot.inc -%%IMPDIR%%/templates/folders/head.inc -%%IMPDIR%%/templates/folders/import.inc -%%IMPDIR%%/templates/javascript/addressesBlocks.js -%%IMPDIR%%/templates/javascript/folders.js -%%IMPDIR%%/templates/javascript/popup.js -%%IMPDIR%%/templates/login/login.inc -%%IMPDIR%%/templates/mailbox/actions.inc -%%IMPDIR%%/templates/mailbox/actions_deleted.inc -%%IMPDIR%%/templates/mailbox/alert.inc -%%IMPDIR%%/templates/mailbox/empty_mailbox.inc -%%IMPDIR%%/templates/mailbox/footer.inc -%%IMPDIR%%/templates/mailbox/header.inc -%%IMPDIR%%/templates/mailbox/javascript.inc -%%IMPDIR%%/templates/mailbox/legend.inc -%%IMPDIR%%/templates/mailbox/mailbox.html -%%IMPDIR%%/templates/mailbox/message_footers.inc -%%IMPDIR%%/templates/mailbox/message_headers.inc -%%IMPDIR%%/templates/mailbox/navbar.inc -%%IMPDIR%%/templates/mailbox/searchfolder.inc -%%IMPDIR%%/templates/menu.inc -%%IMPDIR%%/templates/message/headers.inc -%%IMPDIR%%/templates/message/javascript.inc -%%IMPDIR%%/templates/message/message.inc -%%IMPDIR%%/templates/message/navbar_actions.inc -%%IMPDIR%%/templates/message/navbar_navigate.inc -%%IMPDIR%%/templates/message/navbar_top.inc -%%IMPDIR%%/templates/pgp/import_key.inc -%%IMPDIR%%/templates/pgp/notactive.inc -%%IMPDIR%%/templates/pgp/passphrase.inc -%%IMPDIR%%/templates/pgp/pgp.inc -%%IMPDIR%%/templates/prefs/defaultsearchselect.inc -%%IMPDIR%%/templates/prefs/encryptselect.inc -%%IMPDIR%%/templates/prefs/folderselect.inc -%%IMPDIR%%/templates/prefs/initialpageselect.inc -%%IMPDIR%%/templates/prefs/sentmailselect.inc -%%IMPDIR%%/templates/prefs/sourceselect.inc -%%IMPDIR%%/templates/prefs/spamselect.inc -%%IMPDIR%%/templates/prefs/trashselect.inc -%%IMPDIR%%/templates/quota/quota.inc -%%IMPDIR%%/templates/saveimage/saveimage.inc -%%IMPDIR%%/templates/search/fields.inc -%%IMPDIR%%/templates/search/header.inc -%%IMPDIR%%/templates/search/javascript.inc -%%IMPDIR%%/templates/search/main.inc -%%IMPDIR%%/templates/smime/import_key.inc -%%IMPDIR%%/templates/smime/notactive.inc -%%IMPDIR%%/templates/smime/passphrase.inc -%%IMPDIR%%/templates/smime/smime.inc -%%IMPDIR%%/templates/stationery/prefs.inc -%%IMPDIR%%/templates/thread/thread.html -%%IMPDIR%%/test.php -%%IMPDIR%%/themes/azur/screen.css -%%IMPDIR%%/themes/bluemoon/screen.css -%%IMPDIR%%/themes/bluewhite/screen.css -%%IMPDIR%%/themes/brown/screen.css -%%IMPDIR%%/themes/burntorange/screen.css -%%IMPDIR%%/themes/cherry/screen.css -%%IMPDIR%%/themes/cornflower/screen.css -%%IMPDIR%%/themes/gennevilliers/screen.css -%%IMPDIR%%/themes/graphics/addressbook_add.png -%%IMPDIR%%/themes/graphics/addressbook_browse.png -%%IMPDIR%%/themes/graphics/apple.png -%%IMPDIR%%/themes/graphics/attachment.png -%%IMPDIR%%/themes/graphics/audio/theetone.wav -%%IMPDIR%%/themes/graphics/compose.png -%%IMPDIR%%/themes/graphics/empty_spam.png -%%IMPDIR%%/themes/graphics/empty_trash.png -%%IMPDIR%%/themes/graphics/encrypted.png -%%IMPDIR%%/themes/graphics/expand.png -%%IMPDIR%%/themes/graphics/favicon.ico -%%IMPDIR%%/themes/graphics/fetchmail.png -%%IMPDIR%%/themes/graphics/filters.png -%%IMPDIR%%/themes/graphics/folders/drafts.png -%%IMPDIR%%/themes/graphics/folders/folder.png -%%IMPDIR%%/themes/graphics/folders/folder_open.png -%%IMPDIR%%/themes/graphics/folders/inbox.png -%%IMPDIR%%/themes/graphics/folders/sent.png -%%IMPDIR%%/themes/graphics/folders/trash.png -%%IMPDIR%%/themes/graphics/imp.png -%%IMPDIR%%/themes/graphics/mail_answered.png -%%IMPDIR%%/themes/graphics/mail_deleted.png -%%IMPDIR%%/themes/graphics/mail_draft.png -%%IMPDIR%%/themes/graphics/mail_flagged.png -%%IMPDIR%%/themes/graphics/mail_forwarded.png -%%IMPDIR%%/themes/graphics/mail_personal.png -%%IMPDIR%%/themes/graphics/mail_priority_high.png -%%IMPDIR%%/themes/graphics/mail_priority_low.png -%%IMPDIR%%/themes/graphics/mail_unseen.png -%%IMPDIR%%/themes/graphics/manage_attachments.png -%%IMPDIR%%/themes/graphics/mime/binary.png -%%IMPDIR%%/themes/graphics/mime/compressed.png -%%IMPDIR%%/themes/graphics/mime/encryption.png -%%IMPDIR%%/themes/graphics/mime/html.png -%%IMPDIR%%/themes/graphics/mime/image.png -%%IMPDIR%%/themes/graphics/mime/itip.png -%%IMPDIR%%/themes/graphics/mime/mail.png -%%IMPDIR%%/themes/graphics/mime/text.png -%%IMPDIR%%/themes/graphics/newmail.png -%%IMPDIR%%/themes/graphics/shared.png -%%IMPDIR%%/themes/graphics/signed.png -%%IMPDIR%%/themes/graphics/spacer_red.png -%%IMPDIR%%/themes/graphics/spellcheck.png -%%IMPDIR%%/themes/green/screen.css -%%IMPDIR%%/themes/grey/screen.css -%%IMPDIR%%/themes/lavander/screen.css -%%IMPDIR%%/themes/luc/screen.css -%%IMPDIR%%/themes/lucblue/screen.css -%%IMPDIR%%/themes/postnuke/screen.css -%%IMPDIR%%/themes/rtl.css -%%IMPDIR%%/themes/screen.css -%%IMPDIR%%/themes/simplex/screen.css -%%IMPDIR%%/themes/sun/screen.css -%%IMPDIR%%/thread.php -%%IMPDIR%%/view.php -@dirrm %%IMPDIR%%/themes/sun -@dirrm %%IMPDIR%%/themes/simplex -@dirrm %%IMPDIR%%/themes/postnuke -@dirrm %%IMPDIR%%/themes/lucblue -@dirrm %%IMPDIR%%/themes/luc -@dirrm %%IMPDIR%%/themes/lavander -@dirrm %%IMPDIR%%/themes/graphics/mime -@dirrm %%IMPDIR%%/themes/graphics/folders -@dirrm %%IMPDIR%%/themes/graphics/audio -@dirrm %%IMPDIR%%/themes/graphics -@dirrm %%IMPDIR%%/themes/grey -@dirrm %%IMPDIR%%/themes/green -@dirrm %%IMPDIR%%/themes/gennevilliers -@dirrm %%IMPDIR%%/themes/cornflower -@dirrm %%IMPDIR%%/themes/cherry -@dirrm %%IMPDIR%%/themes/burntorange -@dirrm %%IMPDIR%%/themes/brown -@dirrm %%IMPDIR%%/themes/bluewhite -@dirrm %%IMPDIR%%/themes/bluemoon -@dirrm %%IMPDIR%%/themes/azur -@dirrm %%IMPDIR%%/themes -@dirrm %%IMPDIR%%/templates/thread -@dirrm %%IMPDIR%%/templates/stationery -@dirrm %%IMPDIR%%/templates/smime -@dirrm %%IMPDIR%%/templates/search -@dirrm %%IMPDIR%%/templates/saveimage -@dirrm %%IMPDIR%%/templates/quota -@dirrm %%IMPDIR%%/templates/prefs -@dirrm %%IMPDIR%%/templates/pgp -@dirrm %%IMPDIR%%/templates/message -@dirrm %%IMPDIR%%/templates/mailbox -@dirrm %%IMPDIR%%/templates/login -@dirrm %%IMPDIR%%/templates/javascript -@dirrm %%IMPDIR%%/templates/folders -@dirrm %%IMPDIR%%/templates/filters -@dirrm %%IMPDIR%%/templates/fetchmail -@dirrm %%IMPDIR%%/templates/contacts -@dirrm %%IMPDIR%%/templates/compose -@dirrm %%IMPDIR%%/templates/acl -@dirrm %%IMPDIR%%/templates -@dirrm %%IMPDIR%%/scripts -@dirrm %%IMPDIR%%/po -@dirrm %%IMPDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/zh_TW -@dirrm %%IMPDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/zh_CN -@dirrm %%IMPDIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/uk_UA -@dirrm %%IMPDIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/tr_TR -@dirrm %%IMPDIR%%/locale/th_TH/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/th_TH -@dirrm %%IMPDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/sv_SE -@dirrm %%IMPDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/sl_SI -@dirrm %%IMPDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/sk_SK -@dirrm %%IMPDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ru_RU -@dirrm %%IMPDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ro_RO -@dirrm %%IMPDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/pt_PT -@dirrm %%IMPDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/pt_BR -@dirrm %%IMPDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/pl_PL -@dirrm %%IMPDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/nn_NO -@dirrm %%IMPDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/nl_NL -@dirrm %%IMPDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/nb_NO -@dirrm %%IMPDIR%%/locale/mk_MK/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/mk_MK -@dirrm %%IMPDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/lv_LV -@dirrm %%IMPDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/lt_LT -@dirrm %%IMPDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ko_KR -@dirrm %%IMPDIR%%/locale/km_KH/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/km_KH -@dirrm %%IMPDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ja_JP -@dirrm %%IMPDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/it_IT -@dirrm %%IMPDIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/is_IS -@dirrm %%IMPDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/id_ID -@dirrm %%IMPDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/hu_HU -@dirrm %%IMPDIR%%/locale/he_IL/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/he_IL -@dirrm %%IMPDIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/gl_ES -@dirrm %%IMPDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/fr_FR -@dirrm %%IMPDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/fi_FI -@dirrm %%IMPDIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/fa_IR -@dirrm %%IMPDIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/et_EE -@dirrm %%IMPDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/es_ES -@dirrm %%IMPDIR%%/locale/en_US -@dirrm %%IMPDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/el_GR -@dirrm %%IMPDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/de_DE -@dirrm %%IMPDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/da_DK -@dirrm %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/cs_CZ -@dirrm %%IMPDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ca_ES -@dirrm %%IMPDIR%%/locale/bs_BA/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/bs_BA -@dirrm %%IMPDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/bg_BG -@dirrm %%IMPDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ar_SY -@dirrm %%IMPDIR%%/locale/ar_OM/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ar_OM -@dirrm %%IMPDIR%%/locale -@dirrm %%IMPDIR%%/lib/Quota -@dirrm %%IMPDIR%%/lib/Notification/Listener -@dirrm %%IMPDIR%%/lib/Notification -@dirrm %%IMPDIR%%/lib/Maintenance/Task -@dirrm %%IMPDIR%%/lib/Maintenance -@dirrm %%IMPDIR%%/lib/MIME/Viewer -@dirrm %%IMPDIR%%/lib/MIME -@dirrm %%IMPDIR%%/lib/Identity -@dirrm %%IMPDIR%%/lib/IMAP -@dirrm %%IMPDIR%%/lib/Fetchmail -@dirrm %%IMPDIR%%/lib/Crypt -@dirrm %%IMPDIR%%/lib/Block -@dirrm %%IMPDIR%%/lib/Auth -@dirrm %%IMPDIR%%/lib -@dirrm %%IMPDIR%%/js -@dirrmtry %%IMPDIR%%/config -@dirrmtry %%IMPDIR%% +%%HORDIR%%/acl.php +%%HORDIR%%/attachment.php +%%HORDIR%%/compose.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/filter.txt.dist +%%HORDIR%%/config/header.php.dist +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/motd.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/servers.php.dist +%%HORDIR%%/config/trailer.txt.dist +%%HORDIR%%/contacts.php +%%HORDIR%%/expand.php +%%HORDIR%%/fetchmail.php +%%HORDIR%%/fetchmailprefs.php +%%HORDIR%%/filterprefs.php +%%HORDIR%%/folders.php +%%HORDIR%%/index.php +%%HORDIR%%/js/ieEscGuard.js +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Auth/imp.php +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Block/tree_folders.php +%%HORDIR%%/lib/Compose.php +%%HORDIR%%/lib/Crypt/PGP.php +%%HORDIR%%/lib/Crypt/SMIME.php +%%HORDIR%%/lib/Fetchmail/imap.php +%%HORDIR%%/lib/Fetchmail.php +%%HORDIR%%/lib/Filter.php +%%HORDIR%%/lib/Folder.php +%%HORDIR%%/lib/IMAP/Client.php +%%HORDIR%%/lib/IMAP/Search.php +%%HORDIR%%/lib/IMAP/Sort.php +%%HORDIR%%/lib/IMAP/Thread.php +%%HORDIR%%/lib/IMAP/Tree.php +%%HORDIR%%/lib/IMAP.php +%%HORDIR%%/lib/IMP.php +%%HORDIR%%/lib/Identity/imp.php +%%HORDIR%%/lib/MIME/Contents.php +%%HORDIR%%/lib/MIME/Headers.php +%%HORDIR%%/lib/MIME/Viewer/alternative.php +%%HORDIR%%/lib/MIME/Viewer/appledouble.php +%%HORDIR%%/lib/MIME/Viewer/enriched.php +%%HORDIR%%/lib/MIME/Viewer/html.php +%%HORDIR%%/lib/MIME/Viewer/images.php +%%HORDIR%%/lib/MIME/Viewer/itip.php +%%HORDIR%%/lib/MIME/Viewer/multipart.php +%%HORDIR%%/lib/MIME/Viewer/notification.php +%%HORDIR%%/lib/MIME/Viewer/partial.php +%%HORDIR%%/lib/MIME/Viewer/pgp.php +%%HORDIR%%/lib/MIME/Viewer/pkcs7.php +%%HORDIR%%/lib/MIME/Viewer/plain.php +%%HORDIR%%/lib/MIME/Viewer/related.php +%%HORDIR%%/lib/MIME/Viewer/rfc822.php +%%HORDIR%%/lib/MIME/Viewer/status.php +%%HORDIR%%/lib/MIME/Viewer/tnef.php +%%HORDIR%%/lib/MIME/Viewer/zip.php +%%HORDIR%%/lib/Mailbox.php +%%HORDIR%%/lib/Maillog.php +%%HORDIR%%/lib/Maintenance/Task/delete_attachments_monthly.php +%%HORDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php +%%HORDIR%%/lib/Maintenance/Task/fetchmail_login.php +%%HORDIR%%/lib/Maintenance/Task/purge_trash.php +%%HORDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php +%%HORDIR%%/lib/Maintenance/Task/tos_agreement.php +%%HORDIR%%/lib/Maintenance/imp.php +%%HORDIR%%/lib/Message.php +%%HORDIR%%/lib/Notification/Listener/status.php +%%HORDIR%%/lib/Quota/command.php +%%HORDIR%%/lib/Quota/courier.php +%%HORDIR%%/lib/Quota/cyrus.php +%%HORDIR%%/lib/Quota/logfile.php +%%HORDIR%%/lib/Quota/mdaemon.php +%%HORDIR%%/lib/Quota/mercury32.php +%%HORDIR%%/lib/Quota.php +%%HORDIR%%/lib/Search.php +%%HORDIR%%/lib/Session.php +%%HORDIR%%/lib/Spam.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/bs_BA/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/cs_CZ/help.xml +%%HORDIR%%/locale/da_DK/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/da_DK/help.xml +%%HORDIR%%/locale/de_DE/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/el_GR/help.xml +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/et_EE/help.xml +%%HORDIR%%/locale/fa_IR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/fa_IR/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/gl_ES/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/he_IL/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/id_ID/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/is_IS/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/it_IT/help.xml +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/km_KH/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ko_KR/help.xml +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/mk_MK/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/nb_NO/help.xml +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/nl_NL/help.xml +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pl_PL/help.xml +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pt_PT/help.xml +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ru_RU/help.xml +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/sv_SE/help.xml +%%HORDIR%%/locale/th_TH/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/uk_UA/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/uk_UA/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/zh_CN/help.xml +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/zh_TW/help.xml +%%HORDIR%%/login.php +%%HORDIR%%/mailbox.php +%%HORDIR%%/message.php +%%HORDIR%%/pgp.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_OM.po +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/bs_BA.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fa_IR.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gl_ES.po +%%HORDIR%%/po/he_IL.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/id_ID.po +%%HORDIR%%/po/imp.pot +%%HORDIR%%/po/is_IS.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/km_KH.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mk_MK.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/th_TH.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/uk_UA.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/recompose.php +%%HORDIR%%/redirect.php +%%HORDIR%%/saveimage.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/Imp.reg +%%HORDIR%%/scripts/custom_login.php +%%HORDIR%%/search.php +%%HORDIR%%/smime.php +%%HORDIR%%/spelling.php +%%HORDIR%%/stationery.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/acl/acl.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/compose/attachments.inc +%%HORDIR%%/templates/compose/attachments.js +%%HORDIR%%/templates/compose/compose.inc +%%HORDIR%%/templates/compose/compose.js +%%HORDIR%%/templates/compose/compose_expand.js +%%HORDIR%%/templates/compose/encrypt_list.inc +%%HORDIR%%/templates/compose/expand.inc +%%HORDIR%%/templates/compose/recompose.inc +%%HORDIR%%/templates/compose/redirect.inc +%%HORDIR%%/templates/compose/spelling.inc +%%HORDIR%%/templates/compose/spelling.js +%%HORDIR%%/templates/compose/success.inc +%%HORDIR%%/templates/contacts/contacts.inc +%%HORDIR%%/templates/fetchmail/account_select.inc +%%HORDIR%%/templates/fetchmail/driver_select.inc +%%HORDIR%%/templates/fetchmail/fetchmail.inc +%%HORDIR%%/templates/fetchmail/manage.inc +%%HORDIR%%/templates/fetchmail/top.inc +%%HORDIR%%/templates/filters/notactive.inc +%%HORDIR%%/templates/filters/prefs.inc +%%HORDIR%%/templates/folders/actions.inc +%%HORDIR%%/templates/folders/folders.html +%%HORDIR%%/templates/folders/folders_confirm.html +%%HORDIR%%/templates/folders/foot.inc +%%HORDIR%%/templates/folders/head.inc +%%HORDIR%%/templates/folders/import.inc +%%HORDIR%%/templates/javascript/addressesBlocks.js +%%HORDIR%%/templates/javascript/folders.js +%%HORDIR%%/templates/javascript/popup.js +%%HORDIR%%/templates/login/login.inc +%%HORDIR%%/templates/mailbox/actions.inc +%%HORDIR%%/templates/mailbox/actions_deleted.inc +%%HORDIR%%/templates/mailbox/alert.inc +%%HORDIR%%/templates/mailbox/empty_mailbox.inc +%%HORDIR%%/templates/mailbox/footer.inc +%%HORDIR%%/templates/mailbox/header.inc +%%HORDIR%%/templates/mailbox/javascript.inc +%%HORDIR%%/templates/mailbox/legend.inc +%%HORDIR%%/templates/mailbox/mailbox.html +%%HORDIR%%/templates/mailbox/message_footers.inc +%%HORDIR%%/templates/mailbox/message_headers.inc +%%HORDIR%%/templates/mailbox/navbar.inc +%%HORDIR%%/templates/mailbox/searchfolder.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/message/headers.inc +%%HORDIR%%/templates/message/javascript.inc +%%HORDIR%%/templates/message/message.inc +%%HORDIR%%/templates/message/navbar_actions.inc +%%HORDIR%%/templates/message/navbar_navigate.inc +%%HORDIR%%/templates/message/navbar_top.inc +%%HORDIR%%/templates/pgp/import_key.inc +%%HORDIR%%/templates/pgp/notactive.inc +%%HORDIR%%/templates/pgp/passphrase.inc +%%HORDIR%%/templates/pgp/pgp.inc +%%HORDIR%%/templates/prefs/defaultsearchselect.inc +%%HORDIR%%/templates/prefs/encryptselect.inc +%%HORDIR%%/templates/prefs/folderselect.inc +%%HORDIR%%/templates/prefs/initialpageselect.inc +%%HORDIR%%/templates/prefs/sentmailselect.inc +%%HORDIR%%/templates/prefs/sourceselect.inc +%%HORDIR%%/templates/prefs/spamselect.inc +%%HORDIR%%/templates/prefs/trashselect.inc +%%HORDIR%%/templates/quota/quota.inc +%%HORDIR%%/templates/saveimage/saveimage.inc +%%HORDIR%%/templates/search/fields.inc +%%HORDIR%%/templates/search/header.inc +%%HORDIR%%/templates/search/javascript.inc +%%HORDIR%%/templates/search/main.inc +%%HORDIR%%/templates/smime/import_key.inc +%%HORDIR%%/templates/smime/notactive.inc +%%HORDIR%%/templates/smime/passphrase.inc +%%HORDIR%%/templates/smime/smime.inc +%%HORDIR%%/templates/stationery/prefs.inc +%%HORDIR%%/templates/thread/thread.html +%%HORDIR%%/test.php +%%HORDIR%%/themes/azur/screen.css +%%HORDIR%%/themes/bluemoon/screen.css +%%HORDIR%%/themes/bluewhite/screen.css +%%HORDIR%%/themes/brown/screen.css +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/cherry/screen.css +%%HORDIR%%/themes/cornflower/screen.css +%%HORDIR%%/themes/gennevilliers/screen.css +%%HORDIR%%/themes/graphics/addressbook_add.png +%%HORDIR%%/themes/graphics/addressbook_browse.png +%%HORDIR%%/themes/graphics/apple.png +%%HORDIR%%/themes/graphics/attachment.png +%%HORDIR%%/themes/graphics/audio/theetone.wav +%%HORDIR%%/themes/graphics/compose.png +%%HORDIR%%/themes/graphics/empty_spam.png +%%HORDIR%%/themes/graphics/empty_trash.png +%%HORDIR%%/themes/graphics/encrypted.png +%%HORDIR%%/themes/graphics/expand.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/fetchmail.png +%%HORDIR%%/themes/graphics/filters.png +%%HORDIR%%/themes/graphics/folders/drafts.png +%%HORDIR%%/themes/graphics/folders/folder.png +%%HORDIR%%/themes/graphics/folders/folder_open.png +%%HORDIR%%/themes/graphics/folders/inbox.png +%%HORDIR%%/themes/graphics/folders/sent.png +%%HORDIR%%/themes/graphics/folders/trash.png +%%HORDIR%%/themes/graphics/imp.png +%%HORDIR%%/themes/graphics/mail_answered.png +%%HORDIR%%/themes/graphics/mail_deleted.png +%%HORDIR%%/themes/graphics/mail_draft.png +%%HORDIR%%/themes/graphics/mail_flagged.png +%%HORDIR%%/themes/graphics/mail_forwarded.png +%%HORDIR%%/themes/graphics/mail_personal.png +%%HORDIR%%/themes/graphics/mail_priority_high.png +%%HORDIR%%/themes/graphics/mail_priority_low.png +%%HORDIR%%/themes/graphics/mail_unseen.png +%%HORDIR%%/themes/graphics/manage_attachments.png +%%HORDIR%%/themes/graphics/mime/binary.png +%%HORDIR%%/themes/graphics/mime/compressed.png +%%HORDIR%%/themes/graphics/mime/encryption.png +%%HORDIR%%/themes/graphics/mime/html.png +%%HORDIR%%/themes/graphics/mime/image.png +%%HORDIR%%/themes/graphics/mime/itip.png +%%HORDIR%%/themes/graphics/mime/mail.png +%%HORDIR%%/themes/graphics/mime/text.png +%%HORDIR%%/themes/graphics/newmail.png +%%HORDIR%%/themes/graphics/shared.png +%%HORDIR%%/themes/graphics/signed.png +%%HORDIR%%/themes/graphics/spacer_red.png +%%HORDIR%%/themes/graphics/spellcheck.png +%%HORDIR%%/themes/green/screen.css +%%HORDIR%%/themes/grey/screen.css +%%HORDIR%%/themes/lavander/screen.css +%%HORDIR%%/themes/luc/screen.css +%%HORDIR%%/themes/lucblue/screen.css +%%HORDIR%%/themes/postnuke/screen.css +%%HORDIR%%/themes/rtl.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/themes/simplex/screen.css +%%HORDIR%%/themes/sun/screen.css +%%HORDIR%%/thread.php +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Auth +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Crypt +@dirrm %%HORDIR%%/lib/Fetchmail +@dirrm %%HORDIR%%/lib/IMAP +@dirrm %%HORDIR%%/lib/Identity +@dirrm %%HORDIR%%/lib/MIME/Viewer +@dirrm %%HORDIR%%/lib/MIME +@dirrm %%HORDIR%%/lib/Maintenance/Task +@dirrm %%HORDIR%%/lib/Maintenance +@dirrm %%HORDIR%%/lib/Notification/Listener +@dirrm %%HORDIR%%/lib/Notification +@dirrm %%HORDIR%%/lib/Quota +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_OM/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_OM +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/bs_BA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bs_BA +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fa_IR +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/gl_ES +@dirrm %%HORDIR%%/locale/he_IL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/he_IL +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDIR%%/locale/id_ID +@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%HORDIR%%/locale/is_IS +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/km_KH/LC_MESSAGES +@dirrm %%HORDIR%%/locale/km_KH +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/mk_MK +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/th_TH/LC_MESSAGES +@dirrm %%HORDIR%%/locale/th_TH +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/uk_UA +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/acl +@dirrm %%HORDIR%%/templates/compose +@dirrm %%HORDIR%%/templates/contacts +@dirrm %%HORDIR%%/templates/fetchmail +@dirrm %%HORDIR%%/templates/filters +@dirrm %%HORDIR%%/templates/folders +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/login +@dirrm %%HORDIR%%/templates/mailbox +@dirrm %%HORDIR%%/templates/message +@dirrm %%HORDIR%%/templates/pgp +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/quota +@dirrm %%HORDIR%%/templates/saveimage +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/smime +@dirrm %%HORDIR%%/templates/stationery +@dirrm %%HORDIR%%/templates/thread +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/azur +@dirrm %%HORDIR%%/themes/bluemoon +@dirrm %%HORDIR%%/themes/bluewhite +@dirrm %%HORDIR%%/themes/brown +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/cherry +@dirrm %%HORDIR%%/themes/cornflower +@dirrm %%HORDIR%%/themes/gennevilliers +@dirrm %%HORDIR%%/themes/graphics/audio +@dirrm %%HORDIR%%/themes/graphics/folders +@dirrm %%HORDIR%%/themes/graphics/mime +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/green +@dirrm %%HORDIR%%/themes/grey +@dirrm %%HORDIR%%/themes/lavander +@dirrm %%HORDIR%%/themes/luc +@dirrm %%HORDIR%%/themes/lucblue +@dirrm %%HORDIR%%/themes/postnuke +@dirrm %%HORDIR%%/themes/simplex +@dirrm %%HORDIR%%/themes/sun +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/horde-ingo/Makefile b/mail/horde-ingo/Makefile index eb94e51a0363..a17b4d34104f 100644 --- a/mail/horde-ingo/Makefile +++ b/mail/horde-ingo/Makefile @@ -7,10 +7,8 @@ PORTNAME= ingo PORTVERSION= 1.1.3 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Horde's email-filter management application @@ -22,63 +20,14 @@ COMMENT= Horde's email-filter management application # #----------------------------------------------------------------------- -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes -USE_PHP= imap -USE_GETTEXT= yes - -PLIST_SUB= INGODIR=${LINGODIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= INGODIR=${INGODIR} - -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO -CONFFILE= backends.php fields.php prefs.php -SUB_DIRS= config lib locale po scripts templates themes js - -LHORDEDIR?= www/horde -LINGODIR= ${LHORDEDIR}/ingo -PEARDIR?= ${LOCALBASE}/share/pear - -INGODIR= ${PREFIX}/${LINGODIR} -CONFDIR= ${INGODIR}/config - -.include <bsd.port.pre.mk> - .if defined(WITH_SIEVE) || exists(${LOCALBASE}/cyrus/bin/timsieved) RUN_DEPENDS+= ${PEARDIR}/Net/Sieve.php:${PORTSDIR}/net/pear-Net_Sieve .endif -post-patch: - @${FIND} ${WRKSRC} -name "*.orig" -delete - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -do-install: - @${INSTALL} -d ${INGODIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${INGODIR}/ - @${CP} -p ${WRKSRC}/*.php ${INGODIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${INGODIR}/ - @${CHMOD} -R o-rwx ${CONFDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${INGODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${CONFDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} +USE_PHP= imap +USE_HORDE= base pkg-message +USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/horde-ingo/files/pkg-deinstall.in b/mail/horde-ingo/files/pkg-deinstall.in deleted file mode 100644 index 9d8d08de9224..000000000000 --- a/mail/horde-ingo/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Ingo config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%INGODIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/horde-ingo/files/pkg-install.in b/mail/horde-ingo/files/pkg-install.in deleted file mode 100644 index 3a7bcda4b76a..000000000000 --- a/mail/horde-ingo/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%INGODIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/horde-ingo/files/pkg-message.in b/mail/horde-ingo/files/pkg-message.in deleted file mode 100644 index 0a1a920d3516..000000000000 --- a/mail/horde-ingo/files/pkg-message.in +++ /dev/null @@ -1,10 +0,0 @@ -************************************************************************ -Ingo has been installed in %%INGODIR%% with your blank -configuration files. - -Horde must be configured; if not, see `pkg_info -D -x horde'. - -Finally, you must login to Horde as a Horde Administrator to finish the -configuration. - -************************************************************************ diff --git a/mail/horde-ingo/pkg-plist b/mail/horde-ingo/pkg-plist index e54f8e1a2cf8..5e6d04751680 100644 --- a/mail/horde-ingo/pkg-plist +++ b/mail/horde-ingo/pkg-plist @@ -1,195 +1,196 @@ -%%INGODIR%%/blacklist.php -%%INGODIR%%/config/.htaccess -%%INGODIR%%/config/backends.php.dist -%%INGODIR%%/config/conf.xml -%%INGODIR%%/config/fields.php.dist -%%INGODIR%%/config/prefs.php.dist -%%INGODIR%%/filters.php -%%INGODIR%%/forward.php -%%INGODIR%%/index.php -%%INGODIR%%/js/stripe.js -%%INGODIR%%/lib/Block/overview.php -%%INGODIR%%/lib/Driver.php -%%INGODIR%%/lib/Driver/ldap.php -%%INGODIR%%/lib/Driver/null.php -%%INGODIR%%/lib/Driver/timsieved.php -%%INGODIR%%/lib/Driver/vfs.php -%%INGODIR%%/lib/IMAP/Search.php -%%INGODIR%%/lib/Ingo.php -%%INGODIR%%/lib/Script.php -%%INGODIR%%/lib/Script/imap.php -%%INGODIR%%/lib/Script/maildrop.php -%%INGODIR%%/lib/Script/procmail.php -%%INGODIR%%/lib/Script/sieve.php -%%INGODIR%%/lib/Session.php -%%INGODIR%%/lib/Storage.php -%%INGODIR%%/lib/Storage/prefs.php -%%INGODIR%%/lib/api.php -%%INGODIR%%/lib/base.php -%%INGODIR%%/lib/version.php -%%INGODIR%%/locale/ca_ES/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/ca_ES/help.xml -%%INGODIR%%/locale/cs_CZ/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/da_DK/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/de_DE/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/de_DE/help.xml -%%INGODIR%%/locale/en_US/help.xml -%%INGODIR%%/locale/el_GR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/es_ES/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/es_ES/help.xml -%%INGODIR%%/locale/et_EE/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/fi_FI/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/fi_FI/help.xml -%%INGODIR%%/locale/fr_FR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/fr_FR/help.xml -%%INGODIR%%/locale/hu_HU/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/it_IT/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/ko_KR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/lt_LT/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/lv_LV/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/lv_LV/help.xml -%%INGODIR%%/locale/nb_NO/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/nl_NL/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/pl_PL/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/pt_BR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/pt_PT/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/ro_RO/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/sl_SI/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/sv_SE/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/tr_TR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/zh_TW/LC_MESSAGES/ingo.mo -%%INGODIR%%/po/README -%%INGODIR%%/po/ca_ES.po -%%INGODIR%%/po/cs_CZ.po -%%INGODIR%%/po/da_DK.po -%%INGODIR%%/po/de_DE.po -%%INGODIR%%/po/el_GR.po -%%INGODIR%%/po/es_ES.po -%%INGODIR%%/po/et_EE.po -%%INGODIR%%/po/fi_FI.po -%%INGODIR%%/po/fr_FR.po -%%INGODIR%%/po/hu_HU.po -%%INGODIR%%/po/ingo.pot -%%INGODIR%%/po/it_IT.po -%%INGODIR%%/po/ko_KR.po -%%INGODIR%%/po/lt_LT.po -%%INGODIR%%/po/lv_LV.po -%%INGODIR%%/po/nb_NO.po -%%INGODIR%%/po/nl_NL.po -%%INGODIR%%/po/pl_PL.po -%%INGODIR%%/po/pt_BR.po -%%INGODIR%%/po/pt_PT.po -%%INGODIR%%/po/ro_RO.po -%%INGODIR%%/po/sl_SI.po -%%INGODIR%%/po/sv_SE.po -%%INGODIR%%/po/tr_TR.po -%%INGODIR%%/po/zh_TW.po -%%INGODIR%%/rule.php -%%INGODIR%%/script.php -%%INGODIR%%/scripts/.htaccess -%%INGODIR%%/scripts/convert_imp_filters.php -%%INGODIR%%/templates/blacklist/blacklist.inc -%%INGODIR%%/templates/common-header.inc -%%INGODIR%%/templates/filters/filter-none.inc -%%INGODIR%%/templates/filters/filter.html -%%INGODIR%%/templates/filters/footer.inc -%%INGODIR%%/templates/filters/header.inc -%%INGODIR%%/templates/filters/settings.inc -%%INGODIR%%/templates/forward/forward.inc -%%INGODIR%%/templates/javascript/new_folder.js -%%INGODIR%%/templates/menu.inc -%%INGODIR%%/templates/rule/filter.inc -%%INGODIR%%/templates/rule/footer.inc -%%INGODIR%%/templates/rule/header.inc -%%INGODIR%%/templates/script/activate.inc -%%INGODIR%%/templates/script/footer.inc -%%INGODIR%%/templates/script/header.inc -%%INGODIR%%/templates/script/script.inc -%%INGODIR%%/templates/vacation/vacation.inc -%%INGODIR%%/templates/whitelist/whitelist.inc -%%INGODIR%%/test.php -%%INGODIR%%/themes/graphics/blacklist.png -%%INGODIR%%/themes/graphics/copy.png -%%INGODIR%%/themes/graphics/disable.png -%%INGODIR%%/themes/graphics/enable.png -%%INGODIR%%/themes/graphics/favicon.ico -%%INGODIR%%/themes/graphics/forward.png -%%INGODIR%%/themes/graphics/ingo.png -%%INGODIR%%/themes/graphics/script.png -%%INGODIR%%/themes/graphics/vacation.png -%%INGODIR%%/themes/graphics/whitelist.png -%%INGODIR%%/themes/screen.css -%%INGODIR%%/vacation.php -%%INGODIR%%/whitelist.php -@dirrm %%INGODIR%%/themes/graphics -@dirrm %%INGODIR%%/themes -@dirrm %%INGODIR%%/templates/whitelist -@dirrm %%INGODIR%%/templates/vacation -@dirrm %%INGODIR%%/templates/script -@dirrm %%INGODIR%%/templates/rule -@dirrm %%INGODIR%%/templates/javascript -@dirrm %%INGODIR%%/templates/forward -@dirrm %%INGODIR%%/templates/filters -@dirrm %%INGODIR%%/templates/blacklist -@dirrm %%INGODIR%%/templates -@dirrm %%INGODIR%%/scripts -@dirrm %%INGODIR%%/po -@dirrm %%INGODIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%INGODIR%%/locale/zh_TW -@dirrm %%INGODIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/tr_TR -@dirrm %%INGODIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%INGODIR%%/locale/sv_SE -@dirrm %%INGODIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%INGODIR%%/locale/sl_SI -@dirrm %%INGODIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%INGODIR%%/locale/ro_RO -@dirrm %%INGODIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%INGODIR%%/locale/pt_PT -@dirrm %%INGODIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/pt_BR -@dirrm %%INGODIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%INGODIR%%/locale/pl_PL -@dirrm %%INGODIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%INGODIR%%/locale/nl_NL -@dirrm %%INGODIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%INGODIR%%/locale/nb_NO -@dirrm %%INGODIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%INGODIR%%/locale/lv_LV -@dirrm %%INGODIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%INGODIR%%/locale/lt_LT -@dirrm %%INGODIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/ko_KR -@dirrm %%INGODIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%INGODIR%%/locale/it_IT -@dirrm %%INGODIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%INGODIR%%/locale/hu_HU -@dirrm %%INGODIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/fr_FR -@dirrm %%INGODIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%INGODIR%%/locale/fi_FI -@dirrm %%INGODIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%INGODIR%%/locale/et_EE -@dirrm %%INGODIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%INGODIR%%/locale/es_ES -@dirrm %%INGODIR%%/locale/en_US -@dirrm %%INGODIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/el_GR -@dirrm %%INGODIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%INGODIR%%/locale/de_DE -@dirrm %%INGODIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%INGODIR%%/locale/da_DK -@dirrm %%INGODIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%INGODIR%%/locale/cs_CZ -@dirrm %%INGODIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%INGODIR%%/locale/ca_ES -@dirrm %%INGODIR%%/locale -@dirrm %%INGODIR%%/js -@dirrm %%INGODIR%%/lib/Storage -@dirrm %%INGODIR%%/lib/Script -@dirrm %%INGODIR%%/lib/IMAP -@dirrm %%INGODIR%%/lib/Driver -@dirrm %%INGODIR%%/lib/Block -@dirrm %%INGODIR%%/lib -@dirrmtry %%INGODIR%%/config -@dirrmtry %%INGODIR%% +%%HORDIR%%/blacklist.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/backends.php.dist +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/fields.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/filters.php +%%HORDIR%%/forward.php +%%HORDIR%%/index.php +%%HORDIR%%/js/stripe.js +%%HORDIR%%/lib/Block/overview.php +%%HORDIR%%/lib/Driver/ldap.php +%%HORDIR%%/lib/Driver/null.php +%%HORDIR%%/lib/Driver/timsieved.php +%%HORDIR%%/lib/Driver/vfs.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/IMAP/Search.php +%%HORDIR%%/lib/Ingo.php +%%HORDIR%%/lib/Script/imap.php +%%HORDIR%%/lib/Script/maildrop.php +%%HORDIR%%/lib/Script/procmail.php +%%HORDIR%%/lib/Script/sieve.php +%%HORDIR%%/lib/Script.php +%%HORDIR%%/lib/Session.php +%%HORDIR%%/lib/Storage/prefs.php +%%HORDIR%%/lib/Storage.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/ingo.mo +%%HORDIR%%/po/README +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/ingo.pot +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/rule.php +%%HORDIR%%/script.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/convert_imp_filters.php +%%HORDIR%%/templates/blacklist/blacklist.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/filters/filter-none.inc +%%HORDIR%%/templates/filters/filter.html +%%HORDIR%%/templates/filters/footer.inc +%%HORDIR%%/templates/filters/header.inc +%%HORDIR%%/templates/filters/settings.inc +%%HORDIR%%/templates/forward/forward.inc +%%HORDIR%%/templates/javascript/new_folder.js +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/rule/filter.inc +%%HORDIR%%/templates/rule/footer.inc +%%HORDIR%%/templates/rule/header.inc +%%HORDIR%%/templates/script/activate.inc +%%HORDIR%%/templates/script/footer.inc +%%HORDIR%%/templates/script/header.inc +%%HORDIR%%/templates/script/script.inc +%%HORDIR%%/templates/vacation/vacation.inc +%%HORDIR%%/templates/whitelist/whitelist.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/blacklist.png +%%HORDIR%%/themes/graphics/copy.png +%%HORDIR%%/themes/graphics/disable.png +%%HORDIR%%/themes/graphics/enable.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/forward.png +%%HORDIR%%/themes/graphics/ingo.png +%%HORDIR%%/themes/graphics/script.png +%%HORDIR%%/themes/graphics/vacation.png +%%HORDIR%%/themes/graphics/whitelist.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/vacation.php +%%HORDIR%%/whitelist.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/IMAP +@dirrm %%HORDIR%%/lib/Script +@dirrm %%HORDIR%%/lib/Storage +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/blacklist +@dirrm %%HORDIR%%/templates/filters +@dirrm %%HORDIR%%/templates/forward +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/rule +@dirrm %%HORDIR%%/templates/script +@dirrm %%HORDIR%%/templates/vacation +@dirrm %%HORDIR%%/templates/whitelist +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/horde-mimp/Makefile b/mail/horde-mimp/Makefile index 017f37710359..c8abd67b2b31 100644 --- a/mail/horde-mimp/Makefile +++ b/mail/horde-mimp/Makefile @@ -7,9 +7,7 @@ PORTNAME= mimp PORTVERSION= 1.0.1 -DISTVERSIONPREFIX= h3- CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Mobile webmail system @@ -28,21 +26,6 @@ COMMENT= Mobile webmail system # - WITHOUT_SSL if you have not installed c-client WITH_SSL; # # - WITH_VALID_CERT if you own a valid SSL certificate; -# -# - WITH_IMAPSERVER if you want to depend on an IMAP server; -# -# or you can select to work with one of these servers: -# -# - WITH_CYRUS-IMAPD MIMP will work with cyrus-imapd; -# -# - WITH_IMAP-UW MIMP will work with imap-uw; -# -# - WITH_DOVECOT MIMP will work with dovecot; -# -# - WITH_COURIER-IMAP MIMP will work with courier-imap. -# -# These choices are mutually exclusive, and imap-uw is the default. -# #----------------------------------------------------------------------- RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL @@ -51,74 +34,18 @@ USE_PHP= imap . if !defined(WITHOUT_LDAP) USE_PHP+= ldap . endif - -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - .if !defined(WITHOUT_SMIME) USE_PHP+= openssl .endif - .if !defined(NOCRYPT) RUN_DEPENDS+= ${LOCALBASE}/bin/gpgv:${PORTSDIR}/security/gnupg1 .endif -NO_BUILD= yes -USE_APACHE= 1.3+ # needed to test APACHE_VERSION +USE_HORDE= base USE_GETTEXT= yes -REINPLACE_ARGS= -i.beforeMIMP - PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES -CONFFILE= filter.txt header.php menu.php mime_drivers.php motd.php \ - prefs.php servers.php trailer.txt conf.xml .htaccess -SUB_DIRS= config lib locale po templates themes - -LHORDEDIR?= www/horde -LMIMPDIR= ${LHORDEDIR}/mimp -PEARDIR?= ${LOCALBASE}/share/pear - -PLIST_SUB= MIMPDIR=${LMIMPDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= MIMPDIR=${MIMPDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} - -MIMPDIR= ${PREFIX}/${LMIMPDIR} -CONFDIR= ${MIMPDIR}/config - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h - -PATCH2RM= prefs.php.dist.orig servers.php.dist.orig - -.include <bsd.port.pre.mk> - -.if defined(WITH_IMAPSERVER) -. if defined(WITH_IMAP-UW) || exists(${LOCALBASE}/libexec/imapd) -RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw -. elif defined(WITH_CYRUS-IMAPD) || exists(${LOCALBASE}/cyrus/bin/master) -RUN_DEPENDS+= ${LOCALBASE}/cyrus/bin/master:${PORTSDIR}/mail/cyrus-imapd23 -. elif defined(WITH_COURIER-IMAP) || exists(${LOCALBASE}/bin/deliverquota) -RUN_DEPENDS+= ${LOCALBASE}/bin/deliverquota:${PORTSDIR}/mail/courier-imap -. elif defined(WITH_DOVECOT) || exists(${LOCALBASE}/libexec/dovecot/imap) -RUN_DEPENDS+= ${LOCALBASE}/libexec/dovecot/imap:${PORTSDIR}/mail/dovecot -. else -RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw -. endif -.endif - -.if ${APACHE_VERSION} >= 20 -HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes/ -.else -HORDE_INC= ${LOCALBASE}/etc/horde/ -.endif - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ pre-configure: - @${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml .if !defined(NOCRYPT) @${REINPLACE_CMD} -e "s:%%GPG%%:${LOCALBASE}/bin/gpg:" \ ${WRKSRC}/config/conf.xml @@ -142,8 +69,6 @@ pre-configure: ${WRKSRC}/config/servers.php.dist . endif .endif - @${SED} -e "s:/home/httpd/html/horde/mimp:${MIMPDIR}:" \ - ${FILESDIR}/httpd.conf.mimp > ${WRKDIR}/httpd-mimp.conf pre-install: .if !defined(BATCH) && !defined(WITHOUT_SSL) @@ -154,28 +79,6 @@ pre-install: ${FALSE} ; \ fi .endif -.for fc in ${PATCH2RM} - @${RM} ${WRKSRC}/config/${fc} -.endfor - -do-install: - @${INSTALL} -d ${MIMPDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${MIMPDIR}/ - @${CP} -p ${WRKSRC}/*.php ${MIMPDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${INSTALL_DATA} ${WRKDIR}/httpd-mimp.conf ${HORDE_INC}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${MIMPDIR}/ - @${CHMOD} -R o-rwx ${CONFDIR}/ -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/horde-mimp/files/httpd.conf.mimp b/mail/horde-mimp/files/httpd.conf.mimp deleted file mode 100644 index 0a6aadc8a2cc..000000000000 --- a/mail/horde-mimp/files/httpd.conf.mimp +++ /dev/null @@ -1,31 +0,0 @@ -# This is included in Apache's httpd.conf for MIMP -# -# For security, don't serve pages from the MIMP configuration and -# library directories. -# -<Directory "/home/httpd/html/horde/mimp/config"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/lib"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/locale"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/po"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/scripts"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/templates"> - order deny,allow - deny from all -</Directory> -# End of MIMP configuration ================ - diff --git a/mail/horde-mimp/files/pkg-deinstall.in b/mail/horde-mimp/files/pkg-deinstall.in deleted file mode 100644 index 7f721dba2f9a..000000000000 --- a/mail/horde-mimp/files/pkg-deinstall.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: -# - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%MIMPDIR%%/config/*php %%MIMPDIR%%/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/horde-mimp/files/pkg-install.in b/mail/horde-mimp/files/pkg-install.in deleted file mode 100644 index 6268cfb52df6..000000000000 --- a/mail/horde-mimp/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%MIMPDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/horde-mimp/files/pkg-message.in b/mail/horde-mimp/files/pkg-message.in index 0710c978e6d5..20c7c869de8d 100644 --- a/mail/horde-mimp/files/pkg-message.in +++ b/mail/horde-mimp/files/pkg-message.in @@ -1,12 +1,12 @@ ************************************************************************ -MIMP has been installed in %%MIMPDIR%% with your blank +MIMP has been installed in %%HORDIR%% with your blank configuration files. Horde must be configured and the tables created; if not, see -`pkg_info -D -x horde'. +`pkg_info -Dx horde-base'. Then, you might have to tune the configuration files located in -%%CONFDIR%%/, specially the file servers.php. +%%HORCFG%%/, specially the file servers.php. Then, you must login to Horde as a Horde Administrator to finish the configuration. Please read %%DOCSDIR%%/INSTALL. diff --git a/mail/horde-mimp/pkg-plist b/mail/horde-mimp/pkg-plist index 9009f3448350..55d92b55df58 100644 --- a/mail/horde-mimp/pkg-plist +++ b/mail/horde-mimp/pkg-plist @@ -1,120 +1,117 @@ -%%MIMPDIR%%/compose.php -%%MIMPDIR%%/config/.htaccess -%%MIMPDIR%%/config/conf.xml -%%MIMPDIR%%/config/filter.txt.dist -%%MIMPDIR%%/config/header.php.dist -%%MIMPDIR%%/config/menu.php.dist -%%MIMPDIR%%/config/mime_drivers.php.dist -%%MIMPDIR%%/config/motd.php.dist -%%MIMPDIR%%/config/prefs.php.dist -%%MIMPDIR%%/config/servers.php.dist -%%MIMPDIR%%/config/trailer.txt.dist -%%MIMPDIR%%/config/conf.xml.beforeMIMP -%%MIMPDIR%%/config/servers.php.dist.beforeMIMP -%%MIMPDIR%%/folders.php -%%MIMPDIR%%/index.php -%%MIMPDIR%%/lib/Auth/mimp.php -%%MIMPDIR%%/lib/base.php -%%MIMPDIR%%/lib/Compose.php -%%MIMPDIR%%/lib/Folder.php -%%MIMPDIR%%/lib/IMAP.php -%%MIMPDIR%%/lib/IMAP/Client.php -%%MIMPDIR%%/lib/IMAP/Sort.php -%%MIMPDIR%%/lib/IMAP/Tree.php -%%MIMPDIR%%/lib/Identity/mimp.php -%%MIMPDIR%%/lib/MIME/Contents.php -%%MIMPDIR%%/lib/MIME/Headers.php -%%MIMPDIR%%/lib/MIME/Viewer/alternative.php -%%MIMPDIR%%/lib/MIME/Viewer/html.php -%%MIMPDIR%%/lib/MIME/Viewer/multipart.php -%%MIMPDIR%%/lib/MIME/Viewer/plain.php -%%MIMPDIR%%/lib/MIME/Viewer/related.php -%%MIMPDIR%%/lib/MIME/Headers.php.beforeMIMP -%%MIMPDIR%%/lib/Mailbox.php -%%MIMPDIR%%/lib/Message.php -%%MIMPDIR%%/lib/MIMP.php -%%MIMPDIR%%/lib/Session.php -%%MIMPDIR%%/lib/api.php -%%MIMPDIR%%/lib/prefs.php -%%MIMPDIR%%/lib/version.php -%%MIMPDIR%%/locale/ca_ES/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/de_DE/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/es_ES/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/fi_FI/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/fr_FR/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/hu_HU/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/it_IT/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/lt_LT/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/nl_NL/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/pt_PT/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/ro_RO/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/login.php -%%MIMPDIR%%/mailbox.php -%%MIMPDIR%%/message.php -%%MIMPDIR%%/po/README -%%MIMPDIR%%/po/mimp.pot -%%MIMPDIR%%/po/ca_ES.po -%%MIMPDIR%%/po/de_DE.po -%%MIMPDIR%%/po/es_ES.po -%%MIMPDIR%%/po/fi_FI.po -%%MIMPDIR%%/po/fr_FR.po -%%MIMPDIR%%/po/hu_HU.po -%%MIMPDIR%%/po/it_IT.po -%%MIMPDIR%%/po/lt_LT.po -%%MIMPDIR%%/po/nl_NL.po -%%MIMPDIR%%/po/pt_PT.po -%%MIMPDIR%%/po/ro_RO.po -%%MIMPDIR%%/redirect.php -%%MIMPDIR%%/templates/common-header.inc -%%MIMPDIR%%/templates/compose/compose.inc -%%MIMPDIR%%/templates/compose/redirect.inc -%%MIMPDIR%%/templates/index/notconfigured.inc -%%MIMPDIR%%/templates/login/login.inc -%%MIMPDIR%%/templates/mailbox/mailbox.inc -%%MIMPDIR%%/templates/prefs/sentmailselect.inc -%%MIMPDIR%%/test.php -%%MIMPDIR%%/themes/graphics/favicon.ico -%%MIMPDIR%%/themes/graphics/mimp.png -%%MIMPDIR%%/themes/graphics/horde-power2.png -%%MIMPDIR%%/themes/graphics/horde-power2.wbmp -%%HORDE_INC%%httpd-mimp.conf -@dirrm %%MIMPDIR%%/themes/graphics -@dirrm %%MIMPDIR%%/themes -@dirrm %%MIMPDIR%%/templates/prefs -@dirrm %%MIMPDIR%%/templates/mailbox -@dirrm %%MIMPDIR%%/templates/login -@dirrm %%MIMPDIR%%/templates/index -@dirrm %%MIMPDIR%%/templates/compose -@dirrm %%MIMPDIR%%/templates -@dirrm %%MIMPDIR%%/po -@dirrm %%MIMPDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/ro_RO -@dirrm %%MIMPDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/pt_PT -@dirrm %%MIMPDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/nl_NL -@dirrm %%MIMPDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/lt_LT -@dirrm %%MIMPDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/it_IT -@dirrm %%MIMPDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/hu_HU -@dirrm %%MIMPDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/fr_FR -@dirrm %%MIMPDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/fi_FI -@dirrm %%MIMPDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/es_ES -@dirrm %%MIMPDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/de_DE -@dirrm %%MIMPDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/ca_ES -@dirrm %%MIMPDIR%%/locale -@dirrm %%MIMPDIR%%/lib/MIME/Viewer -@dirrm %%MIMPDIR%%/lib/MIME -@dirrm %%MIMPDIR%%/lib/Identity -@dirrm %%MIMPDIR%%/lib/IMAP -@dirrm %%MIMPDIR%%/lib/Auth -@dirrm %%MIMPDIR%%/lib -@dirrmtry %%MIMPDIR%%/config -@dirrmtry %%MIMPDIR%% +%%HORDIR%%/compose.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/filter.txt.dist +%%HORDIR%%/config/header.php.dist +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/motd.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/servers.php.dist +%%HORDIR%%/config/trailer.txt.dist +%%HORDIR%%/folders.php +%%HORDIR%%/index.php +%%HORDIR%%/lib/Auth/mimp.php +%%HORDIR%%/lib/Compose.php +%%HORDIR%%/lib/Folder.php +%%HORDIR%%/lib/IMAP/Client.php +%%HORDIR%%/lib/IMAP/Sort.php +%%HORDIR%%/lib/IMAP/Tree.php +%%HORDIR%%/lib/IMAP.php +%%HORDIR%%/lib/Identity/mimp.php +%%HORDIR%%/lib/MIME/Contents.php +%%HORDIR%%/lib/MIME/Headers.php +%%HORDIR%%/lib/MIME/Viewer/alternative.php +%%HORDIR%%/lib/MIME/Viewer/html.php +%%HORDIR%%/lib/MIME/Viewer/multipart.php +%%HORDIR%%/lib/MIME/Viewer/plain.php +%%HORDIR%%/lib/MIME/Viewer/related.php +%%HORDIR%%/lib/MIMP.php +%%HORDIR%%/lib/Mailbox.php +%%HORDIR%%/lib/Message.php +%%HORDIR%%/lib/Session.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/es_ES/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/mimp.mo +%%HORDIR%%/login.php +%%HORDIR%%/mailbox.php +%%HORDIR%%/message.php +%%HORDIR%%/po/README +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/mimp.pot +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/redirect.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/compose/compose.inc +%%HORDIR%%/templates/compose/redirect.inc +%%HORDIR%%/templates/index/notconfigured.inc +%%HORDIR%%/templates/login/login.inc +%%HORDIR%%/templates/mailbox/mailbox.inc +%%HORDIR%%/templates/prefs/sentmailselect.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/horde-power2.png +%%HORDIR%%/themes/graphics/horde-power2.wbmp +%%HORDIR%%/themes/graphics/mimp.png +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/lib/Auth +@dirrm %%HORDIR%%/lib/IMAP +@dirrm %%HORDIR%%/lib/Identity +@dirrm %%HORDIR%%/lib/MIME/Viewer +@dirrm %%HORDIR%%/lib/MIME +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/templates/compose +@dirrm %%HORDIR%%/templates/index +@dirrm %%HORDIR%%/templates/login +@dirrm %%HORDIR%%/templates/mailbox +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/horde-turba/Makefile b/mail/horde-turba/Makefile index 6cddc5222df0..d1a0a7d8accd 100644 --- a/mail/horde-turba/Makefile +++ b/mail/horde-turba/Makefile @@ -7,69 +7,21 @@ PORTNAME= turba PORTVERSION= 2.1.4 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= The Horde contact management application -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - +USE_HORDE= base USE_PHP= ldap -NO_BUILD= yes USE_GETTEXT= yes -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL LDAP \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= attributes.php menu.php mime_drivers.php prefs.php sources.php -SUB_DIRS= config lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LTURBADIR?= ${LHORDEDIR}/turba - -PLIST_SUB= TURBADIR=${LTURBADIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= TURBADIR=${TURBADIR} CONFDIR=${CONFDIR} - -TURBADIR= ${PREFIX}/${LTURBADIR} -CONFDIR= ${TURBADIR}/config +PORTDOCS= README CHANGES CREDITS INSTALL LDAP RELEASE_NOTES TODO UPGRADING -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @${RM} ${WRKSRC}/config/sources.php.dist.orig +pre-patch: @${REINPLACE_CMD} -e "s:/usr/bin/ldapadd:${LOCALBASE}/bin/ldapadd:" \ ${WRKSRC}/scripts/ldap/addou.pl -do-install: - @${INSTALL} -d ${TURBADIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${TURBADIR}/ - @${CP} -p ${WRKSRC}/*.php ${TURBADIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${TURBADIR}/ - @${CHMOD} -R o-rwx ${TURBADIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${TURBADIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${TURBADIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/horde-turba/files/pkg-deinstall.in b/mail/horde-turba/files/pkg-deinstall.in deleted file mode 100644 index fced5020f1b0..000000000000 --- a/mail/horde-turba/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Turba config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%TURBADIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/horde-turba/files/pkg-install.in b/mail/horde-turba/files/pkg-install.in deleted file mode 100644 index e0611782bf84..000000000000 --- a/mail/horde-turba/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%TURBADIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/horde-turba/files/pkg-message.in b/mail/horde-turba/files/pkg-message.in index c59f450b8cf5..fac46bfb9f28 100644 --- a/mail/horde-turba/files/pkg-message.in +++ b/mail/horde-turba/files/pkg-message.in @@ -1,11 +1,11 @@ ************************************************************************ -Turba has been installed in %%TURBADIR%% with your blank +Turba has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde'. Then, you might have to tune the configuration files located in -%%CONFDIR%%/, specially the file sources.php. +%%HORCFG%%/, specially the file sources.php. Warning: if you don't use some source, deactivate it, or you could ******** experience bad response times! @@ -15,7 +15,7 @@ Then, you must login to Horde as a Horde Administrator to finish the configuration. You have to create a table in your database; please see -%%TURBADIR%%/scripts/. +%%HORDIR%%/scripts/. You might create a LDAP schema: please see the doc LDAP. ************************************************************************ diff --git a/mail/horde-turba/pkg-plist b/mail/horde-turba/pkg-plist index fe2bc9fa07da..0ae7fe8003b0 100644 --- a/mail/horde-turba/pkg-plist +++ b/mail/horde-turba/pkg-plist @@ -1,274 +1,275 @@ -%%TURBADIR%%/add.php -%%TURBADIR%%/addressbooks.php -%%TURBADIR%%/browse.php -%%TURBADIR%%/config/.htaccess -%%TURBADIR%%/config/attributes.php.dist -%%TURBADIR%%/config/conf.xml -%%TURBADIR%%/config/menu.php.dist -%%TURBADIR%%/config/mime_drivers.php.dist -%%TURBADIR%%/config/prefs.php.dist -%%TURBADIR%%/config/sources.php.dist -%%TURBADIR%%/data.php -%%TURBADIR%%/delete.php -%%TURBADIR%%/display.php -%%TURBADIR%%/edit.php -%%TURBADIR%%/index.php -%%TURBADIR%%/lib/.htaccess -%%TURBADIR%%/lib/Block/minisearch.php -%%TURBADIR%%/lib/Block/tree_menu.php -%%TURBADIR%%/lib/Driver.php -%%TURBADIR%%/lib/Driver/imsp.php -%%TURBADIR%%/lib/Driver/kolab.php -%%TURBADIR%%/lib/Driver/ldap.php -%%TURBADIR%%/lib/Driver/null.php -%%TURBADIR%%/lib/Driver/prefs.php -%%TURBADIR%%/lib/Driver/sql.php -%%TURBADIR%%/lib/Group.php -%%TURBADIR%%/lib/List.php -%%TURBADIR%%/lib/ListView.php -%%TURBADIR%%/lib/Object.php -%%TURBADIR%%/lib/Object/Group.php -%%TURBADIR%%/lib/ObjectView.php -%%TURBADIR%%/lib/Renderer.php -%%TURBADIR%%/lib/tests/tovcard.phpt -%%TURBADIR%%/lib/Turba.php -%%TURBADIR%%/lib/api.php -%%TURBADIR%%/lib/base.php -%%TURBADIR%%/lib/prefs.php -%%TURBADIR%%/lib/version.php -%%TURBADIR%%/locale/.htaccess -%%TURBADIR%%/locale/ar_SY/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/bg_BG/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ca_ES/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ca_ES/help.xml -%%TURBADIR%%/locale/cs_CZ/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/da_DK/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/de_DE/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/de_DE/help.xml -%%TURBADIR%%/locale/el_GR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/en_US/help.xml -%%TURBADIR%%/locale/es_ES/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/es_ES/help.xml -%%TURBADIR%%/locale/et_EE/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fa_IR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fa_IR/help.xml -%%TURBADIR%%/locale/fi_FI/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fi_FI/help.xml -%%TURBADIR%%/locale/fr_FR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fr_FR/help.xml -%%TURBADIR%%/locale/gl_ES/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/hu_HU/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/is_IS/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/it_IT/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ja_JP/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ko_KR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/lt_LT/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/lv_LV/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/mk_MK/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/nb_NO/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/nl_NL/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/nn_NO/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pl_PL/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pt_BR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pt_BR/help.xml -%%TURBADIR%%/locale/pt_PT/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pt_PT/help.xml -%%TURBADIR%%/locale/ro_RO/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ru_RU/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/sk_SK/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/sk_SK/help.xml -%%TURBADIR%%/locale/sl_SI/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/sv_SE/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/tr_TR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/tr_TR/help.xml -%%TURBADIR%%/locale/uk_UA/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/zh_CN/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/zh_TW/LC_MESSAGES/turba.mo -%%TURBADIR%%/minisearch.php -%%TURBADIR%%/po/.htaccess -%%TURBADIR%%/po/README -%%TURBADIR%%/po/ar_SY.po -%%TURBADIR%%/po/bg_BG.po -%%TURBADIR%%/po/ca_ES.po -%%TURBADIR%%/po/cs_CZ.po -%%TURBADIR%%/po/da_DK.po -%%TURBADIR%%/po/de_DE.po -%%TURBADIR%%/po/el_GR.po -%%TURBADIR%%/po/es_ES.po -%%TURBADIR%%/po/et_EE.po -%%TURBADIR%%/po/fa_IR.po -%%TURBADIR%%/po/fi_FI.po -%%TURBADIR%%/po/fr_FR.po -%%TURBADIR%%/po/gl_ES.po -%%TURBADIR%%/po/hu_HU.po -%%TURBADIR%%/po/is_IS.po -%%TURBADIR%%/po/it_IT.po -%%TURBADIR%%/po/ja_JP.po -%%TURBADIR%%/po/ko_KR.po -%%TURBADIR%%/po/lt_LT.po -%%TURBADIR%%/po/lv_LV.po -%%TURBADIR%%/po/mk_MK.po -%%TURBADIR%%/po/nb_NO.po -%%TURBADIR%%/po/nl_NL.po -%%TURBADIR%%/po/nn_NO.po -%%TURBADIR%%/po/pl_PL.po -%%TURBADIR%%/po/pt_BR.po -%%TURBADIR%%/po/pt_PT.po -%%TURBADIR%%/po/ro_RO.po -%%TURBADIR%%/po/ru_RU.po -%%TURBADIR%%/po/sk_SK.po -%%TURBADIR%%/po/sl_SI.po -%%TURBADIR%%/po/sv_SE.po -%%TURBADIR%%/po/tr_TR.po -%%TURBADIR%%/po/turba.pot -%%TURBADIR%%/po/uk_UA.po -%%TURBADIR%%/po/zh_CN.po -%%TURBADIR%%/po/zh_TW.po -%%TURBADIR%%/scripts/.htaccess -%%TURBADIR%%/scripts/Turba.reg -%%TURBADIR%%/scripts/import_vcards.php -%%TURBADIR%%/scripts/ldap/addou -%%TURBADIR%%/scripts/ldap/addou.pl -%%TURBADIR%%/scripts/ldap/core.schema.patch -%%TURBADIR%%/scripts/ldap/rfc2739.schema -%%TURBADIR%%/scripts/sql/turba_objects.mssql.sql -%%TURBADIR%%/scripts/sql/turba_objects.mysql.sql -%%TURBADIR%%/scripts/sql/turba_objects.oci8.sql -%%TURBADIR%%/scripts/sql/turba_objects.pgsql.sql -%%TURBADIR%%/scripts/sql/turba_objects.sql -%%TURBADIR%%/scripts/sql/turba.xml -%%TURBADIR%%/scripts/sql/turba_weddingguests.sql -%%TURBADIR%%/scripts/upgrades/create_default_histories.php -%%TURBADIR%%/scripts/upgrades/1.2_to_2.0.oci8.sql -%%TURBADIR%%/scripts/upgrades/1.1_to_1.2.sql -%%TURBADIR%%/scripts/upgrades/1.2_to_2.0.sql -%%TURBADIR%%/scripts/upgrades/public_to_horde_share.php -%%TURBADIR%%/search.php -%%TURBADIR%%/templates/.htaccess -%%TURBADIR%%/templates/addressbooks.inc -%%TURBADIR%%/templates/block/minisearch.inc -%%TURBADIR%%/templates/browse/actions.inc -%%TURBADIR%%/templates/browse/column_footers.inc -%%TURBADIR%%/templates/browse/column_headers.inc -%%TURBADIR%%/templates/browse/contactrow.inc -%%TURBADIR%%/templates/browse/footer.inc -%%TURBADIR%%/templates/browse/footerAlpha.inc -%%TURBADIR%%/templates/browse/header.inc -%%TURBADIR%%/templates/browse/javascript.inc -%%TURBADIR%%/templates/browse/row.inc -%%TURBADIR%%/templates/browse/search.inc -%%TURBADIR%%/templates/browse/search_criteria.inc -%%TURBADIR%%/templates/common-header.inc -%%TURBADIR%%/templates/data/export.inc -%%TURBADIR%%/templates/data/import.inc -%%TURBADIR%%/templates/menu.inc -%%TURBADIR%%/templates/prefs/addressbookselect.inc -%%TURBADIR%%/templates/prefs/columnselect.inc -%%TURBADIR%%/templates/prefs/imsp_opt.inc -%%TURBADIR%%/test.php -%%TURBADIR%%/themes/graphics/contact.png -%%TURBADIR%%/themes/graphics/favicon.ico -%%TURBADIR%%/themes/graphics/group.png -%%TURBADIR%%/themes/graphics/menu/browse.png -%%TURBADIR%%/themes/graphics/menu/new.png -%%TURBADIR%%/themes/graphics/new.png -%%TURBADIR%%/themes/graphics/turba.png -%%TURBADIR%%/themes/ideas/screen.css -%%TURBADIR%%/themes/screen.css -%%TURBADIR%%/vcard.php -%%TURBADIR%%/view.php -@dirrm %%TURBADIR%%/themes/ideas -@dirrm %%TURBADIR%%/themes/graphics/menu -@dirrm %%TURBADIR%%/themes/graphics -@dirrm %%TURBADIR%%/themes -@dirrm %%TURBADIR%%/templates/prefs -@dirrm %%TURBADIR%%/templates/data -@dirrm %%TURBADIR%%/templates/browse -@dirrm %%TURBADIR%%/templates/block -@dirrm %%TURBADIR%%/templates -@dirrm %%TURBADIR%%/scripts/upgrades -@dirrm %%TURBADIR%%/scripts/sql -@dirrm %%TURBADIR%%/scripts/ldap -@dirrm %%TURBADIR%%/scripts -@dirrm %%TURBADIR%%/po -@dirrm %%TURBADIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/zh_TW -@dirrm %%TURBADIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/zh_CN -@dirrm %%TURBADIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/uk_UA -@dirrm %%TURBADIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/tr_TR -@dirrm %%TURBADIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/sv_SE -@dirrm %%TURBADIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/sl_SI -@dirrm %%TURBADIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/sk_SK -@dirrm %%TURBADIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ru_RU -@dirrm %%TURBADIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ro_RO -@dirrm %%TURBADIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/pt_PT -@dirrm %%TURBADIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/pt_BR -@dirrm %%TURBADIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/pl_PL -@dirrm %%TURBADIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/nn_NO -@dirrm %%TURBADIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/nl_NL -@dirrm %%TURBADIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/nb_NO -@dirrm %%TURBADIR%%/locale/mk_MK/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/mk_MK -@dirrm %%TURBADIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/lv_LV -@dirrm %%TURBADIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/lt_LT -@dirrm %%TURBADIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ko_KR -@dirrm %%TURBADIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ja_JP -@dirrm %%TURBADIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/it_IT -@dirrm %%TURBADIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/is_IS -@dirrm %%TURBADIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/hu_HU -@dirrm %%TURBADIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/gl_ES -@dirrm %%TURBADIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/fr_FR -@dirrm %%TURBADIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/fi_FI -@dirrm %%TURBADIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/fa_IR -@dirrm %%TURBADIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/et_EE -@dirrm %%TURBADIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/es_ES -@dirrm %%TURBADIR%%/locale/en_US -@dirrm %%TURBADIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/el_GR -@dirrm %%TURBADIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/de_DE -@dirrm %%TURBADIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/da_DK -@dirrm %%TURBADIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/cs_CZ -@dirrm %%TURBADIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ca_ES -@dirrm %%TURBADIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/bg_BG -@dirrm %%TURBADIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ar_SY -@dirrm %%TURBADIR%%/locale -@dirrm %%TURBADIR%%/lib/tests -@dirrm %%TURBADIR%%/lib/Object -@dirrm %%TURBADIR%%/lib/Driver -@dirrm %%TURBADIR%%/lib/Block -@dirrm %%TURBADIR%%/lib -@dirrmtry %%TURBADIR%%/config -@dirrmtry %%TURBADIR%% +%%HORDIR%%/add.php +%%HORDIR%%/addressbooks.php +%%HORDIR%%/browse.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/attributes.php.dist +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/sources.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/delete.php +%%HORDIR%%/display.php +%%HORDIR%%/edit.php +%%HORDIR%%/index.php +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Block/minisearch.php +%%HORDIR%%/lib/Block/tree_menu.php +%%HORDIR%%/lib/Driver/imsp.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/ldap.php +%%HORDIR%%/lib/Driver/null.php +%%HORDIR%%/lib/Driver/prefs.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Group.php +%%HORDIR%%/lib/List.php +%%HORDIR%%/lib/ListView.php +%%HORDIR%%/lib/Object/Group.php +%%HORDIR%%/lib/Object.php +%%HORDIR%%/lib/ObjectView.php +%%HORDIR%%/lib/Renderer.php +%%HORDIR%%/lib/Turba.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/tests/tovcard.phpt +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fa_IR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fa_IR/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/gl_ES/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/is_IS/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/mk_MK/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pt_PT/help.xml +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/uk_UA/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/turba.mo +%%HORDIR%%/minisearch.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fa_IR.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gl_ES.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/is_IS.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mk_MK.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/turba.pot +%%HORDIR%%/po/uk_UA.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/Turba.reg +%%HORDIR%%/scripts/import_vcards.php +%%HORDIR%%/scripts/ldap/addou +%%HORDIR%%/scripts/ldap/addou.pl +%%HORDIR%%/scripts/ldap/core.schema.patch +%%HORDIR%%/scripts/ldap/rfc2739.schema +%%HORDIR%%/scripts/sql/turba.xml +%%HORDIR%%/scripts/sql/turba_objects.mssql.sql +%%HORDIR%%/scripts/sql/turba_objects.mysql.sql +%%HORDIR%%/scripts/sql/turba_objects.oci8.sql +%%HORDIR%%/scripts/sql/turba_objects.pgsql.sql +%%HORDIR%%/scripts/sql/turba_objects.sql +%%HORDIR%%/scripts/sql/turba_weddingguests.sql +%%HORDIR%%/scripts/upgrades/1.1_to_1.2.sql +%%HORDIR%%/scripts/upgrades/1.2_to_2.0.oci8.sql +%%HORDIR%%/scripts/upgrades/1.2_to_2.0.sql +%%HORDIR%%/scripts/upgrades/create_default_histories.php +%%HORDIR%%/scripts/upgrades/public_to_horde_share.php +%%HORDIR%%/search.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/addressbooks.inc +%%HORDIR%%/templates/block/minisearch.inc +%%HORDIR%%/templates/browse/actions.inc +%%HORDIR%%/templates/browse/column_footers.inc +%%HORDIR%%/templates/browse/column_headers.inc +%%HORDIR%%/templates/browse/contactrow.inc +%%HORDIR%%/templates/browse/footer.inc +%%HORDIR%%/templates/browse/footerAlpha.inc +%%HORDIR%%/templates/browse/header.inc +%%HORDIR%%/templates/browse/javascript.inc +%%HORDIR%%/templates/browse/row.inc +%%HORDIR%%/templates/browse/search.inc +%%HORDIR%%/templates/browse/search_criteria.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/prefs/addressbookselect.inc +%%HORDIR%%/templates/prefs/columnselect.inc +%%HORDIR%%/templates/prefs/imsp_opt.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/contact.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/group.png +%%HORDIR%%/themes/graphics/menu/browse.png +%%HORDIR%%/themes/graphics/menu/new.png +%%HORDIR%%/themes/graphics/new.png +%%HORDIR%%/themes/graphics/turba.png +%%HORDIR%%/themes/ideas/screen.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/vcard.php +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/Object +@dirrm %%HORDIR%%/lib/tests +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fa_IR +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/gl_ES +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%HORDIR%%/locale/is_IS +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/mk_MK +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/uk_UA +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/ldap +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/block +@dirrm %%HORDIR%%/templates/browse +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics/menu +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/ideas +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/horde-vacation/Makefile b/mail/horde-vacation/Makefile index fbe69a1c2c16..b81886f02382 100644 --- a/mail/horde-vacation/Makefile +++ b/mail/horde-vacation/Makefile @@ -7,9 +7,7 @@ PORTNAME= vacation PORTVERSION= 3.0 -DISTVERSIONPREFIX= h3- CATEGORIES= mail www -MASTER_SITES= HORDE PKGNAMEPREFIX= horde- MAINTAINER= beech@alaskaparadise.com @@ -33,69 +31,9 @@ USE_PHP+= ldap USE_PHP+= ftp .endif -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes -USE_APACHE= 1.3+ # needed to test APACHE_VERSION +USE_HORDE= base pkg-message USE_GETTEXT= yes -REINPLACE_ARGS= -i "" - PORTDOCS= CHANGES CREDITS INSTALL RELEASE_NOTES TODO -CONFFILE= conf.xml .htaccess -SUB_DIRS= config files lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LVACDIR= ${LHORDEDIR}/vacation -PEARDIR?= ${LOCALBASE}/share/pear - -PLIST_SUB= VACDIR=${LVACDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= VACDIR=${VACDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} - -VACDIR= ${PREFIX}/${LVACDIR} -CONFDIR= ${VACDIR}/config - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h - -.include <bsd.port.pre.mk> - -.if ${APACHE_VERSION} >= 20 -HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes/ -.else -HORDE_INC= ${LOCALBASE}/etc/horde/ -.endif - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml - @${SED} -e "s:/home/httpd/html/horde/vacation:${VACDIR}:" \ - ${FILESDIR}/httpd.conf.vacation > ${WRKDIR}/httpd-vacation.conf - -do-install: - @${INSTALL} -d ${VACDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${VACDIR}/ - @${CP} -p ${WRKSRC}/*.php ${VACDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${INSTALL_DATA} ${WRKDIR}/httpd-vacation.conf ${HORDE_INC}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${VACDIR}/ - @${CHMOD} -R o-rwx ${CONFDIR}/ -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/horde-vacation/files/httpd.conf.vacation b/mail/horde-vacation/files/httpd.conf.vacation deleted file mode 100644 index 8c5c87914088..000000000000 --- a/mail/horde-vacation/files/httpd.conf.vacation +++ /dev/null @@ -1,31 +0,0 @@ -# This is included in Apache's httpd.conf for VACATION -# -# For security, don't serve pages from the VACATION configuration and -# library directories. -# -<Directory "/home/httpd/html/horde/vacation/config"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/vacation/lib"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/vacation/locale"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/vacation/po"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/vacation/scripts"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/vacation/templates"> - order deny,allow - deny from all -</Directory> -# End of VACATION configuration ================ - diff --git a/mail/horde-vacation/files/pkg-deinstall.in b/mail/horde-vacation/files/pkg-deinstall.in deleted file mode 100644 index b0935973dcea..000000000000 --- a/mail/horde-vacation/files/pkg-deinstall.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: -# - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%VACDIR%%/config/*.xml %%VACDIR%%/config/*xml`; do - diff -bBqw $cf $cf.xml >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/horde-vacation/files/pkg-install.in b/mail/horde-vacation/files/pkg-install.in deleted file mode 100644 index 317b307c0b70..000000000000 --- a/mail/horde-vacation/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%VACDIR%%/config/*.xml | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.xml $cf - fi - done - fi - ;; -esac diff --git a/mail/horde-vacation/files/pkg-message.in b/mail/horde-vacation/files/pkg-message.in deleted file mode 100644 index 788efd39a59c..000000000000 --- a/mail/horde-vacation/files/pkg-message.in +++ /dev/null @@ -1,12 +0,0 @@ -************************************************************************ -VACATION has been installed in %%VACDIR%% with your blank -configuration files. - -Horde must be configured and the tables created; if not, see -`pkg_info -D -x horde'. - -Then, you must login to Horde as a Horde Administrator to finish the -configuration. Please read %%DOCSDIR%%/INSTALL. - -To protect your configuration files, you have to restart your webserver. -************************************************************************ diff --git a/mail/horde-vacation/pkg-plist b/mail/horde-vacation/pkg-plist index 03e2d6cc44c5..b46a030b34a1 100644 --- a/mail/horde-vacation/pkg-plist +++ b/mail/horde-vacation/pkg-plist @@ -1,128 +1,128 @@ -%%VACDIR%%/config/.htaccess -%%VACDIR%%/config/conf.xml -%%VACDIR%%/files/empty.btree.bin -%%VACDIR%%/files/empty.empty.bin -%%VACDIR%%/files/empty.gdbm.bin -%%VACDIR%%/files/empty.hash.bin -%%VACDIR%%/files/empty.hash3.bin -%%VACDIR%%/index.php -%%VACDIR%%/lib/AliasDriver/ftp.php -%%VACDIR%%/lib/AliasDriver/none.php -%%VACDIR%%/lib/Block/summary.php -%%VACDIR%%/lib/AliasDriver.php -%%VACDIR%%/lib/base.php -%%VACDIR%%/lib/Driver.php -%%VACDIR%%/lib/Driver/forwards.php -%%VACDIR%%/lib/Driver/ldap.php -%%VACDIR%%/lib/Driver/qmail.php -%%VACDIR%%/lib/Driver/sql.php -%%VACDIR%%/lib/.htaccess -%%VACDIR%%/lib/version.php -%%VACDIR%%/locale/bg_BG/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/cs_CZ/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/da_DK/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/de_DE/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/el_GR/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/en_US/help.xml -%%VACDIR%%/locale/es_ES/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/es_ES/help.xml -%%VACDIR%%/locale/fa_IR/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/fa_IR/help.xml -%%VACDIR%%/locale/fi_FI/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/fi_FI/help.xml -%%VACDIR%%/locale/fr_FR/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/gl_ES/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/hu_HU/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/it_IT/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/nl_NL/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/nl_NL/help.xml -%%VACDIR%%/locale/nn_NO/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/pl_PL/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/pt_BR/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/ro_RO/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/sv_SE/LC_MESSAGES/vacation.mo -%%VACDIR%%/locale/zh_TW/LC_MESSAGES/vacation.mo -%%VACDIR%%/main.php -%%VACDIR%%/po/README -%%VACDIR%%/po/.htaccess -%%VACDIR%%/po/bg_BG.po -%%VACDIR%%/po/cs_CZ.po -%%VACDIR%%/po/da_DK.po -%%VACDIR%%/po/de_DE.po -%%VACDIR%%/po/el_GR.po -%%VACDIR%%/po/es_ES.po -%%VACDIR%%/po/fa_IR.po -%%VACDIR%%/po/fi_FI.po -%%VACDIR%%/po/fr_FR.po -%%VACDIR%%/po/gl_ES.po -%%VACDIR%%/po/hu_HU.po -%%VACDIR%%/po/it_IT.po -%%VACDIR%%/po/nl_NL.po -%%VACDIR%%/po/nn_NO.po -%%VACDIR%%/po/pl_PL.po -%%VACDIR%%/po/pt_BR.po -%%VACDIR%%/po/ro_RO.po -%%VACDIR%%/po/sv_SE.po -%%VACDIR%%/po/vacation.pot -%%VACDIR%%/po/zh_TW.po -%%VACDIR%%/scripts/.htaccess -%%VACDIR%%/scripts/create-db-files.pl -%%VACDIR%%/templates/common-header.inc -%%VACDIR%%/templates/.htaccess -%%VACDIR%%/templates/main/main.inc -%%VACDIR%%/themes/graphics/favicon.ico -%%VACDIR%%/themes/graphics/vacation.png -%%HORDE_INC%%httpd-vacation.conf -@dirrm %%VACDIR%%/themes/graphics -@dirrm %%VACDIR%%/themes -@dirrm %%VACDIR%%/templates/main -@dirrm %%VACDIR%%/templates -@dirrm %%VACDIR%%/scripts -@dirrm %%VACDIR%%/po -@dirrm %%VACDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%VACDIR%%/locale/zh_TW -@dirrm %%VACDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%VACDIR%%/locale/sv_SE -@dirrm %%VACDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%VACDIR%%/locale/ro_RO -@dirrm %%VACDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%VACDIR%%/locale/pt_BR -@dirrm %%VACDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%VACDIR%%/locale/pl_PL -@dirrm %%VACDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%VACDIR%%/locale/nn_NO -@dirrm %%VACDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%VACDIR%%/locale/nl_NL -@dirrm %%VACDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%VACDIR%%/locale/it_IT -@dirrm %%VACDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%VACDIR%%/locale/hu_HU -@dirrm %%VACDIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%VACDIR%%/locale/gl_ES -@dirrm %%VACDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%VACDIR%%/locale/fr_FR -@dirrm %%VACDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%VACDIR%%/locale/fi_FI -@dirrm %%VACDIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%VACDIR%%/locale/fa_IR -@dirrm %%VACDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%VACDIR%%/locale/es_ES -@dirrm %%VACDIR%%/locale/en_US -@dirrm %%VACDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%VACDIR%%/locale/el_GR -@dirrm %%VACDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%VACDIR%%/locale/de_DE -@dirrm %%VACDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%VACDIR%%/locale/da_DK -@dirrm %%VACDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%VACDIR%%/locale/cs_CZ -@dirrm %%VACDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%VACDIR%%/locale/bg_BG -@dirrm %%VACDIR%%/locale -@dirrm %%VACDIR%%/lib/Driver -@dirrm %%VACDIR%%/lib/Block -@dirrm %%VACDIR%%/lib/AliasDriver -@dirrm %%VACDIR%%/lib -@dirrm %%VACDIR%%/files -@dirrmtry %%VACDIR%%/config -@dirrmtry %%VACDIR%% +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/files/empty.btree.bin +%%HORDIR%%/files/empty.empty.bin +%%HORDIR%%/files/empty.gdbm.bin +%%HORDIR%%/files/empty.hash.bin +%%HORDIR%%/files/empty.hash3.bin +%%HORDIR%%/index.php +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/AliasDriver/ftp.php +%%HORDIR%%/lib/AliasDriver/none.php +%%HORDIR%%/lib/AliasDriver.php +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Driver/forwards.php +%%HORDIR%%/lib/Driver/ldap.php +%%HORDIR%%/lib/Driver/qmail.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/el_GR/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fa_IR/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/fa_IR/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/gl_ES/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/nl_NL/help.xml +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/vacation.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/vacation.mo +%%HORDIR%%/main.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fa_IR.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gl_ES.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/vacation.pot +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/create-db-files.pl +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/main/main.inc +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/vacation.png +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/files +@dirrm %%HORDIR%%/lib/AliasDriver +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fa_IR +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/gl_ES +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/main +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/horde4-imp/Makefile b/mail/horde4-imp/Makefile index 48e7a1ebb674..7c12481824c1 100644 --- a/mail/horde4-imp/Makefile +++ b/mail/horde4-imp/Makefile @@ -7,10 +7,8 @@ PORTNAME= imp PORTVERSION= 4.1.4 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Webmail system for IMAP/POP3 mailboxes @@ -39,15 +37,11 @@ COMMENT= Webmail system for IMAP/POP3 mailboxes RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL -CONFLICTS= imp-3.* - USE_PHP= imap . if !defined(WITHOUT_LDAP) USE_PHP+= ldap . endif -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - .if !defined(WITHOUT_SMIME) USE_PHP+= openssl .endif @@ -66,44 +60,13 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell RUN_DEPENDS+= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request .endif -NO_BUILD= yes +CONFLICTS= imp-3.* +USE_HORDE= base USE_GETTEXT= yes -REINPLACE_ARGS= -i.beforeIMP - PORTDOCS= README CHANGES CREDITS INSTALL \ RELEASE_NOTES TODO UPGRADING -CONFFILE= filter.txt header.php menu.php mime_drivers.php motd.php \ - prefs.php servers.php trailer.txt -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LIMPDIR= ${LHORDEDIR}/imp -PEARDIR?= ${LOCALBASE}/share/pear - -PLIST_SUB= IMPDIR=${LIMPDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= IMPDIR=${IMPDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} - -IMPDIR= ${PREFIX}/${LIMPDIR} -CONFDIR= ${IMPDIR}/config - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h - -PATCH2RM= prefs.php.dist.orig servers.php.dist.orig conf.xml.orig \ - conf.xml.beforeIMP servers.php.dist.beforeIMP - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ pre-configure: - @${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml .if !defined(WITHOUT_ASPELL) @${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/aspell:" \ ${WRKSRC}/config/conf.xml @@ -136,11 +99,6 @@ pre-configure: . endif .endif -.for fc in ${PATCH2RM} - @${RM} ${WRKSRC}/config/${fc} -.endfor - @${RM} ${WRKSRC}/lib/MIME/Headers.php.beforeIMP - pre-install: .if !defined(BATCH) && !defined(WITHOUT_SSL) @if ! ${GREP} -q -e 'CCLIENT_SSLENABLED "yes"' ${PORTREV_H}; then \ @@ -151,27 +109,5 @@ pre-install: fi .endif -do-install: - @${INSTALL} -d ${IMPDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${IMPDIR}/ - @${CP} -p ${WRKSRC}/*.php ${IMPDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IMPDIR}/ - @${CHMOD} -R o-rwx ${IMPDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${IMPDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${IMPDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/horde4-imp/files/pkg-deinstall.in b/mail/horde4-imp/files/pkg-deinstall.in deleted file mode 100644 index e4787a72dfe4..000000000000 --- a/mail/horde4-imp/files/pkg-deinstall.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%IMPDIR%%/config/*php %%IMPDIR%%/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/horde4-imp/files/pkg-install.in b/mail/horde4-imp/files/pkg-install.in deleted file mode 100644 index 7a19b9e2b9de..000000000000 --- a/mail/horde4-imp/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%IMPDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/horde4-imp/files/pkg-message.in b/mail/horde4-imp/files/pkg-message.in index 0d82a9a5d916..9a3de8c83b0c 100644 --- a/mail/horde4-imp/files/pkg-message.in +++ b/mail/horde4-imp/files/pkg-message.in @@ -1,12 +1,13 @@ ************************************************************************ -IMP has been installed in %%IMPDIR%% with your blank +IMP has been installed in %%HORDIR%%/ with your blank configuration files. Horde must be configured and the tables created; if not, see -`pkg_info -D -x horde'. +`pkg_info -Dx horde-base'. Then, you have to tune the configuration files located in -%%CONFDIR%%/, specially the file servers.php to define your mailserver. +%%HORCFG%%/, especially the file servers.php +to define your mailserver. Then, you must login to Horde as a Horde Administrator to finish the configuration. Please read %%DOCSDIR%%/INSTALL. diff --git a/mail/horde4-imp/pkg-plist b/mail/horde4-imp/pkg-plist index 7aeb4b50a7c6..37bc7af5025a 100644 --- a/mail/horde4-imp/pkg-plist +++ b/mail/horde4-imp/pkg-plist @@ -1,498 +1,499 @@ -%%IMPDIR%%/acl.php -%%IMPDIR%%/attachment.php -%%IMPDIR%%/compose.php -%%IMPDIR%%/config/.htaccess -%%IMPDIR%%/config/conf.xml -%%IMPDIR%%/config/filter.txt.dist -%%IMPDIR%%/config/header.php.dist -%%IMPDIR%%/config/menu.php.dist -%%IMPDIR%%/config/mime_drivers.php.dist -%%IMPDIR%%/config/motd.php.dist -%%IMPDIR%%/config/prefs.php.dist -%%IMPDIR%%/config/servers.php.dist -%%IMPDIR%%/config/trailer.txt.dist -%%IMPDIR%%/contacts.php -%%IMPDIR%%/expand.php -%%IMPDIR%%/fetchmail.php -%%IMPDIR%%/fetchmailprefs.php -%%IMPDIR%%/filterprefs.php -%%IMPDIR%%/folders.php -%%IMPDIR%%/index.php -%%IMPDIR%%/js/ieEscGuard.js -%%IMPDIR%%/lib/.htaccess -%%IMPDIR%%/lib/Auth/imp.php -%%IMPDIR%%/lib/Block/summary.php -%%IMPDIR%%/lib/Block/tree_folders.php -%%IMPDIR%%/lib/Compose.php -%%IMPDIR%%/lib/Crypt/PGP.php -%%IMPDIR%%/lib/Crypt/SMIME.php -%%IMPDIR%%/lib/Fetchmail.php -%%IMPDIR%%/lib/Fetchmail/imap.php -%%IMPDIR%%/lib/Filter.php -%%IMPDIR%%/lib/Folder.php -%%IMPDIR%%/lib/IMAP.php -%%IMPDIR%%/lib/IMAP/Client.php -%%IMPDIR%%/lib/IMAP/Search.php -%%IMPDIR%%/lib/IMAP/Sort.php -%%IMPDIR%%/lib/IMAP/Thread.php -%%IMPDIR%%/lib/IMAP/Tree.php -%%IMPDIR%%/lib/IMP.php -%%IMPDIR%%/lib/Identity/imp.php -%%IMPDIR%%/lib/MIME/Contents.php -%%IMPDIR%%/lib/MIME/Headers.php -%%IMPDIR%%/lib/MIME/Viewer/alternative.php -%%IMPDIR%%/lib/MIME/Viewer/appledouble.php -%%IMPDIR%%/lib/MIME/Viewer/enriched.php -%%IMPDIR%%/lib/MIME/Viewer/html.php -%%IMPDIR%%/lib/MIME/Viewer/images.php -%%IMPDIR%%/lib/MIME/Viewer/itip.php -%%IMPDIR%%/lib/MIME/Viewer/multipart.php -%%IMPDIR%%/lib/MIME/Viewer/notification.php -%%IMPDIR%%/lib/MIME/Viewer/partial.php -%%IMPDIR%%/lib/MIME/Viewer/pgp.php -%%IMPDIR%%/lib/MIME/Viewer/pkcs7.php -%%IMPDIR%%/lib/MIME/Viewer/plain.php -%%IMPDIR%%/lib/MIME/Viewer/related.php -%%IMPDIR%%/lib/MIME/Viewer/rfc822.php -%%IMPDIR%%/lib/MIME/Viewer/status.php -%%IMPDIR%%/lib/MIME/Viewer/tnef.php -%%IMPDIR%%/lib/MIME/Viewer/zip.php -%%IMPDIR%%/lib/Mailbox.php -%%IMPDIR%%/lib/Maillog.php -%%IMPDIR%%/lib/Maintenance/Task/delete_attachments_monthly.php -%%IMPDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php -%%IMPDIR%%/lib/Maintenance/Task/fetchmail_login.php -%%IMPDIR%%/lib/Maintenance/Task/purge_trash.php -%%IMPDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php -%%IMPDIR%%/lib/Maintenance/Task/tos_agreement.php -%%IMPDIR%%/lib/Maintenance/imp.php -%%IMPDIR%%/lib/Message.php -%%IMPDIR%%/lib/Notification/Listener/status.php -%%IMPDIR%%/lib/Quota.php -%%IMPDIR%%/lib/Quota/command.php -%%IMPDIR%%/lib/Quota/courier.php -%%IMPDIR%%/lib/Quota/cyrus.php -%%IMPDIR%%/lib/Quota/logfile.php -%%IMPDIR%%/lib/Quota/mdaemon.php -%%IMPDIR%%/lib/Quota/mercury32.php -%%IMPDIR%%/lib/Search.php -%%IMPDIR%%/lib/Session.php -%%IMPDIR%%/lib/Spam.php -%%IMPDIR%%/lib/api.php -%%IMPDIR%%/lib/base.php -%%IMPDIR%%/lib/prefs.php -%%IMPDIR%%/lib/version.php -%%IMPDIR%%/locale/.htaccess -%%IMPDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ar_SY/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/bs_BA/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ca_ES/help.xml -%%IMPDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/cs_CZ/help.xml -%%IMPDIR%%/locale/da_DK/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/da_DK/help.xml -%%IMPDIR%%/locale/de_DE/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/de_DE/help.xml -%%IMPDIR%%/locale/el_GR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/el_GR/help.xml -%%IMPDIR%%/locale/en_US/help.xml -%%IMPDIR%%/locale/es_ES/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/es_ES/help.xml -%%IMPDIR%%/locale/et_EE/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/et_EE/help.xml -%%IMPDIR%%/locale/fa_IR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/fa_IR/help.xml -%%IMPDIR%%/locale/fi_FI/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/fi_FI/help.xml -%%IMPDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/fr_FR/help.xml -%%IMPDIR%%/locale/gl_ES/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/he_IL/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/hu_HU/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/hu_HU/help.xml -%%IMPDIR%%/locale/id_ID/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/is_IS/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/it_IT/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/it_IT/help.xml -%%IMPDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/km_KH/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ko_KR/help.xml -%%IMPDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/mk_MK/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/nb_NO/help.xml -%%IMPDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/nl_NL/help.xml -%%IMPDIR%%/locale/nn_NO/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pl_PL/help.xml -%%IMPDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pt_BR/help.xml -%%IMPDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pt_PT/help.xml -%%IMPDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ru_RU/help.xml -%%IMPDIR%%/locale/sk_SK/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/sk_SK/help.xml -%%IMPDIR%%/locale/sl_SI/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/sv_SE/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/sv_SE/help.xml -%%IMPDIR%%/locale/th_TH/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/tr_TR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/tr_TR/help.xml -%%IMPDIR%%/locale/uk_UA/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/uk_UA/help.xml -%%IMPDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/zh_CN/help.xml -%%IMPDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/zh_TW/help.xml -%%IMPDIR%%/login.php -%%IMPDIR%%/mailbox.php -%%IMPDIR%%/message.php -%%IMPDIR%%/pgp.php -%%IMPDIR%%/po/.htaccess -%%IMPDIR%%/po/README -%%IMPDIR%%/po/ar_OM.po -%%IMPDIR%%/po/ar_SY.po -%%IMPDIR%%/po/bg_BG.po -%%IMPDIR%%/po/bs_BA.po -%%IMPDIR%%/po/ca_ES.po -%%IMPDIR%%/po/cs_CZ.po -%%IMPDIR%%/po/da_DK.po -%%IMPDIR%%/po/de_DE.po -%%IMPDIR%%/po/el_GR.po -%%IMPDIR%%/po/es_ES.po -%%IMPDIR%%/po/et_EE.po -%%IMPDIR%%/po/fa_IR.po -%%IMPDIR%%/po/fi_FI.po -%%IMPDIR%%/po/fr_FR.po -%%IMPDIR%%/po/gl_ES.po -%%IMPDIR%%/po/he_IL.po -%%IMPDIR%%/po/hu_HU.po -%%IMPDIR%%/po/id_ID.po -%%IMPDIR%%/po/imp.pot -%%IMPDIR%%/po/is_IS.po -%%IMPDIR%%/po/it_IT.po -%%IMPDIR%%/po/ja_JP.po -%%IMPDIR%%/po/km_KH.po -%%IMPDIR%%/po/ko_KR.po -%%IMPDIR%%/po/lt_LT.po -%%IMPDIR%%/po/lv_LV.po -%%IMPDIR%%/po/mk_MK.po -%%IMPDIR%%/po/nb_NO.po -%%IMPDIR%%/po/nl_NL.po -%%IMPDIR%%/po/nn_NO.po -%%IMPDIR%%/po/pl_PL.po -%%IMPDIR%%/po/pt_BR.po -%%IMPDIR%%/po/pt_PT.po -%%IMPDIR%%/po/ro_RO.po -%%IMPDIR%%/po/ru_RU.po -%%IMPDIR%%/po/sk_SK.po -%%IMPDIR%%/po/sl_SI.po -%%IMPDIR%%/po/sv_SE.po -%%IMPDIR%%/po/th_TH.po -%%IMPDIR%%/po/tr_TR.po -%%IMPDIR%%/po/uk_UA.po -%%IMPDIR%%/po/zh_CN.po -%%IMPDIR%%/po/zh_TW.po -%%IMPDIR%%/recompose.php -%%IMPDIR%%/redirect.php -%%IMPDIR%%/saveimage.php -%%IMPDIR%%/scripts/.htaccess -%%IMPDIR%%/scripts/Imp.reg -%%IMPDIR%%/scripts/custom_login.php -%%IMPDIR%%/search.php -%%IMPDIR%%/smime.php -%%IMPDIR%%/spelling.php -%%IMPDIR%%/stationery.php -%%IMPDIR%%/templates/.htaccess -%%IMPDIR%%/templates/acl/acl.inc -%%IMPDIR%%/templates/common-header.inc -%%IMPDIR%%/templates/compose/attachments.inc -%%IMPDIR%%/templates/compose/attachments.js -%%IMPDIR%%/templates/compose/compose.inc -%%IMPDIR%%/templates/compose/compose.js -%%IMPDIR%%/templates/compose/compose_expand.js -%%IMPDIR%%/templates/compose/encrypt_list.inc -%%IMPDIR%%/templates/compose/expand.inc -%%IMPDIR%%/templates/compose/recompose.inc -%%IMPDIR%%/templates/compose/redirect.inc -%%IMPDIR%%/templates/compose/spelling.inc -%%IMPDIR%%/templates/compose/spelling.js -%%IMPDIR%%/templates/compose/success.inc -%%IMPDIR%%/templates/contacts/contacts.inc -%%IMPDIR%%/templates/fetchmail/account_select.inc -%%IMPDIR%%/templates/fetchmail/driver_select.inc -%%IMPDIR%%/templates/fetchmail/fetchmail.inc -%%IMPDIR%%/templates/fetchmail/manage.inc -%%IMPDIR%%/templates/fetchmail/top.inc -%%IMPDIR%%/templates/filters/notactive.inc -%%IMPDIR%%/templates/filters/prefs.inc -%%IMPDIR%%/templates/folders/actions.inc -%%IMPDIR%%/templates/folders/folders.html -%%IMPDIR%%/templates/folders/folders_confirm.html -%%IMPDIR%%/templates/folders/foot.inc -%%IMPDIR%%/templates/folders/head.inc -%%IMPDIR%%/templates/folders/import.inc -%%IMPDIR%%/templates/javascript/addressesBlocks.js -%%IMPDIR%%/templates/javascript/folders.js -%%IMPDIR%%/templates/javascript/popup.js -%%IMPDIR%%/templates/login/login.inc -%%IMPDIR%%/templates/mailbox/actions.inc -%%IMPDIR%%/templates/mailbox/actions_deleted.inc -%%IMPDIR%%/templates/mailbox/alert.inc -%%IMPDIR%%/templates/mailbox/empty_mailbox.inc -%%IMPDIR%%/templates/mailbox/footer.inc -%%IMPDIR%%/templates/mailbox/header.inc -%%IMPDIR%%/templates/mailbox/javascript.inc -%%IMPDIR%%/templates/mailbox/legend.inc -%%IMPDIR%%/templates/mailbox/mailbox.html -%%IMPDIR%%/templates/mailbox/message_footers.inc -%%IMPDIR%%/templates/mailbox/message_headers.inc -%%IMPDIR%%/templates/mailbox/navbar.inc -%%IMPDIR%%/templates/mailbox/searchfolder.inc -%%IMPDIR%%/templates/menu.inc -%%IMPDIR%%/templates/message/headers.inc -%%IMPDIR%%/templates/message/javascript.inc -%%IMPDIR%%/templates/message/message.inc -%%IMPDIR%%/templates/message/navbar_actions.inc -%%IMPDIR%%/templates/message/navbar_navigate.inc -%%IMPDIR%%/templates/message/navbar_top.inc -%%IMPDIR%%/templates/pgp/import_key.inc -%%IMPDIR%%/templates/pgp/notactive.inc -%%IMPDIR%%/templates/pgp/passphrase.inc -%%IMPDIR%%/templates/pgp/pgp.inc -%%IMPDIR%%/templates/prefs/defaultsearchselect.inc -%%IMPDIR%%/templates/prefs/encryptselect.inc -%%IMPDIR%%/templates/prefs/folderselect.inc -%%IMPDIR%%/templates/prefs/initialpageselect.inc -%%IMPDIR%%/templates/prefs/sentmailselect.inc -%%IMPDIR%%/templates/prefs/sourceselect.inc -%%IMPDIR%%/templates/prefs/spamselect.inc -%%IMPDIR%%/templates/prefs/trashselect.inc -%%IMPDIR%%/templates/quota/quota.inc -%%IMPDIR%%/templates/saveimage/saveimage.inc -%%IMPDIR%%/templates/search/fields.inc -%%IMPDIR%%/templates/search/header.inc -%%IMPDIR%%/templates/search/javascript.inc -%%IMPDIR%%/templates/search/main.inc -%%IMPDIR%%/templates/smime/import_key.inc -%%IMPDIR%%/templates/smime/notactive.inc -%%IMPDIR%%/templates/smime/passphrase.inc -%%IMPDIR%%/templates/smime/smime.inc -%%IMPDIR%%/templates/stationery/prefs.inc -%%IMPDIR%%/templates/thread/thread.html -%%IMPDIR%%/test.php -%%IMPDIR%%/themes/azur/screen.css -%%IMPDIR%%/themes/bluemoon/screen.css -%%IMPDIR%%/themes/bluewhite/screen.css -%%IMPDIR%%/themes/brown/screen.css -%%IMPDIR%%/themes/burntorange/screen.css -%%IMPDIR%%/themes/cherry/screen.css -%%IMPDIR%%/themes/cornflower/screen.css -%%IMPDIR%%/themes/gennevilliers/screen.css -%%IMPDIR%%/themes/graphics/addressbook_add.png -%%IMPDIR%%/themes/graphics/addressbook_browse.png -%%IMPDIR%%/themes/graphics/apple.png -%%IMPDIR%%/themes/graphics/attachment.png -%%IMPDIR%%/themes/graphics/audio/theetone.wav -%%IMPDIR%%/themes/graphics/compose.png -%%IMPDIR%%/themes/graphics/empty_spam.png -%%IMPDIR%%/themes/graphics/empty_trash.png -%%IMPDIR%%/themes/graphics/encrypted.png -%%IMPDIR%%/themes/graphics/expand.png -%%IMPDIR%%/themes/graphics/favicon.ico -%%IMPDIR%%/themes/graphics/fetchmail.png -%%IMPDIR%%/themes/graphics/filters.png -%%IMPDIR%%/themes/graphics/folders/drafts.png -%%IMPDIR%%/themes/graphics/folders/folder.png -%%IMPDIR%%/themes/graphics/folders/folder_open.png -%%IMPDIR%%/themes/graphics/folders/inbox.png -%%IMPDIR%%/themes/graphics/folders/sent.png -%%IMPDIR%%/themes/graphics/folders/trash.png -%%IMPDIR%%/themes/graphics/imp.png -%%IMPDIR%%/themes/graphics/mail_answered.png -%%IMPDIR%%/themes/graphics/mail_deleted.png -%%IMPDIR%%/themes/graphics/mail_draft.png -%%IMPDIR%%/themes/graphics/mail_flagged.png -%%IMPDIR%%/themes/graphics/mail_forwarded.png -%%IMPDIR%%/themes/graphics/mail_personal.png -%%IMPDIR%%/themes/graphics/mail_priority_high.png -%%IMPDIR%%/themes/graphics/mail_priority_low.png -%%IMPDIR%%/themes/graphics/mail_unseen.png -%%IMPDIR%%/themes/graphics/manage_attachments.png -%%IMPDIR%%/themes/graphics/mime/binary.png -%%IMPDIR%%/themes/graphics/mime/compressed.png -%%IMPDIR%%/themes/graphics/mime/encryption.png -%%IMPDIR%%/themes/graphics/mime/html.png -%%IMPDIR%%/themes/graphics/mime/image.png -%%IMPDIR%%/themes/graphics/mime/itip.png -%%IMPDIR%%/themes/graphics/mime/mail.png -%%IMPDIR%%/themes/graphics/mime/text.png -%%IMPDIR%%/themes/graphics/newmail.png -%%IMPDIR%%/themes/graphics/shared.png -%%IMPDIR%%/themes/graphics/signed.png -%%IMPDIR%%/themes/graphics/spacer_red.png -%%IMPDIR%%/themes/graphics/spellcheck.png -%%IMPDIR%%/themes/green/screen.css -%%IMPDIR%%/themes/grey/screen.css -%%IMPDIR%%/themes/lavander/screen.css -%%IMPDIR%%/themes/luc/screen.css -%%IMPDIR%%/themes/lucblue/screen.css -%%IMPDIR%%/themes/postnuke/screen.css -%%IMPDIR%%/themes/rtl.css -%%IMPDIR%%/themes/screen.css -%%IMPDIR%%/themes/simplex/screen.css -%%IMPDIR%%/themes/sun/screen.css -%%IMPDIR%%/thread.php -%%IMPDIR%%/view.php -@dirrm %%IMPDIR%%/themes/sun -@dirrm %%IMPDIR%%/themes/simplex -@dirrm %%IMPDIR%%/themes/postnuke -@dirrm %%IMPDIR%%/themes/lucblue -@dirrm %%IMPDIR%%/themes/luc -@dirrm %%IMPDIR%%/themes/lavander -@dirrm %%IMPDIR%%/themes/graphics/mime -@dirrm %%IMPDIR%%/themes/graphics/folders -@dirrm %%IMPDIR%%/themes/graphics/audio -@dirrm %%IMPDIR%%/themes/graphics -@dirrm %%IMPDIR%%/themes/grey -@dirrm %%IMPDIR%%/themes/green -@dirrm %%IMPDIR%%/themes/gennevilliers -@dirrm %%IMPDIR%%/themes/cornflower -@dirrm %%IMPDIR%%/themes/cherry -@dirrm %%IMPDIR%%/themes/burntorange -@dirrm %%IMPDIR%%/themes/brown -@dirrm %%IMPDIR%%/themes/bluewhite -@dirrm %%IMPDIR%%/themes/bluemoon -@dirrm %%IMPDIR%%/themes/azur -@dirrm %%IMPDIR%%/themes -@dirrm %%IMPDIR%%/templates/thread -@dirrm %%IMPDIR%%/templates/stationery -@dirrm %%IMPDIR%%/templates/smime -@dirrm %%IMPDIR%%/templates/search -@dirrm %%IMPDIR%%/templates/saveimage -@dirrm %%IMPDIR%%/templates/quota -@dirrm %%IMPDIR%%/templates/prefs -@dirrm %%IMPDIR%%/templates/pgp -@dirrm %%IMPDIR%%/templates/message -@dirrm %%IMPDIR%%/templates/mailbox -@dirrm %%IMPDIR%%/templates/login -@dirrm %%IMPDIR%%/templates/javascript -@dirrm %%IMPDIR%%/templates/folders -@dirrm %%IMPDIR%%/templates/filters -@dirrm %%IMPDIR%%/templates/fetchmail -@dirrm %%IMPDIR%%/templates/contacts -@dirrm %%IMPDIR%%/templates/compose -@dirrm %%IMPDIR%%/templates/acl -@dirrm %%IMPDIR%%/templates -@dirrm %%IMPDIR%%/scripts -@dirrm %%IMPDIR%%/po -@dirrm %%IMPDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/zh_TW -@dirrm %%IMPDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/zh_CN -@dirrm %%IMPDIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/uk_UA -@dirrm %%IMPDIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/tr_TR -@dirrm %%IMPDIR%%/locale/th_TH/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/th_TH -@dirrm %%IMPDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/sv_SE -@dirrm %%IMPDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/sl_SI -@dirrm %%IMPDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/sk_SK -@dirrm %%IMPDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ru_RU -@dirrm %%IMPDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ro_RO -@dirrm %%IMPDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/pt_PT -@dirrm %%IMPDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/pt_BR -@dirrm %%IMPDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/pl_PL -@dirrm %%IMPDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/nn_NO -@dirrm %%IMPDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/nl_NL -@dirrm %%IMPDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/nb_NO -@dirrm %%IMPDIR%%/locale/mk_MK/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/mk_MK -@dirrm %%IMPDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/lv_LV -@dirrm %%IMPDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/lt_LT -@dirrm %%IMPDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ko_KR -@dirrm %%IMPDIR%%/locale/km_KH/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/km_KH -@dirrm %%IMPDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ja_JP -@dirrm %%IMPDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/it_IT -@dirrm %%IMPDIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/is_IS -@dirrm %%IMPDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/id_ID -@dirrm %%IMPDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/hu_HU -@dirrm %%IMPDIR%%/locale/he_IL/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/he_IL -@dirrm %%IMPDIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/gl_ES -@dirrm %%IMPDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/fr_FR -@dirrm %%IMPDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/fi_FI -@dirrm %%IMPDIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/fa_IR -@dirrm %%IMPDIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/et_EE -@dirrm %%IMPDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/es_ES -@dirrm %%IMPDIR%%/locale/en_US -@dirrm %%IMPDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/el_GR -@dirrm %%IMPDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/de_DE -@dirrm %%IMPDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/da_DK -@dirrm %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/cs_CZ -@dirrm %%IMPDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ca_ES -@dirrm %%IMPDIR%%/locale/bs_BA/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/bs_BA -@dirrm %%IMPDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/bg_BG -@dirrm %%IMPDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ar_SY -@dirrm %%IMPDIR%%/locale/ar_OM/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ar_OM -@dirrm %%IMPDIR%%/locale -@dirrm %%IMPDIR%%/lib/Quota -@dirrm %%IMPDIR%%/lib/Notification/Listener -@dirrm %%IMPDIR%%/lib/Notification -@dirrm %%IMPDIR%%/lib/Maintenance/Task -@dirrm %%IMPDIR%%/lib/Maintenance -@dirrm %%IMPDIR%%/lib/MIME/Viewer -@dirrm %%IMPDIR%%/lib/MIME -@dirrm %%IMPDIR%%/lib/Identity -@dirrm %%IMPDIR%%/lib/IMAP -@dirrm %%IMPDIR%%/lib/Fetchmail -@dirrm %%IMPDIR%%/lib/Crypt -@dirrm %%IMPDIR%%/lib/Block -@dirrm %%IMPDIR%%/lib/Auth -@dirrm %%IMPDIR%%/lib -@dirrm %%IMPDIR%%/js -@dirrmtry %%IMPDIR%%/config -@dirrmtry %%IMPDIR%% +%%HORDIR%%/acl.php +%%HORDIR%%/attachment.php +%%HORDIR%%/compose.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/filter.txt.dist +%%HORDIR%%/config/header.php.dist +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/motd.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/servers.php.dist +%%HORDIR%%/config/trailer.txt.dist +%%HORDIR%%/contacts.php +%%HORDIR%%/expand.php +%%HORDIR%%/fetchmail.php +%%HORDIR%%/fetchmailprefs.php +%%HORDIR%%/filterprefs.php +%%HORDIR%%/folders.php +%%HORDIR%%/index.php +%%HORDIR%%/js/ieEscGuard.js +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Auth/imp.php +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Block/tree_folders.php +%%HORDIR%%/lib/Compose.php +%%HORDIR%%/lib/Crypt/PGP.php +%%HORDIR%%/lib/Crypt/SMIME.php +%%HORDIR%%/lib/Fetchmail/imap.php +%%HORDIR%%/lib/Fetchmail.php +%%HORDIR%%/lib/Filter.php +%%HORDIR%%/lib/Folder.php +%%HORDIR%%/lib/IMAP/Client.php +%%HORDIR%%/lib/IMAP/Search.php +%%HORDIR%%/lib/IMAP/Sort.php +%%HORDIR%%/lib/IMAP/Thread.php +%%HORDIR%%/lib/IMAP/Tree.php +%%HORDIR%%/lib/IMAP.php +%%HORDIR%%/lib/IMP.php +%%HORDIR%%/lib/Identity/imp.php +%%HORDIR%%/lib/MIME/Contents.php +%%HORDIR%%/lib/MIME/Headers.php +%%HORDIR%%/lib/MIME/Viewer/alternative.php +%%HORDIR%%/lib/MIME/Viewer/appledouble.php +%%HORDIR%%/lib/MIME/Viewer/enriched.php +%%HORDIR%%/lib/MIME/Viewer/html.php +%%HORDIR%%/lib/MIME/Viewer/images.php +%%HORDIR%%/lib/MIME/Viewer/itip.php +%%HORDIR%%/lib/MIME/Viewer/multipart.php +%%HORDIR%%/lib/MIME/Viewer/notification.php +%%HORDIR%%/lib/MIME/Viewer/partial.php +%%HORDIR%%/lib/MIME/Viewer/pgp.php +%%HORDIR%%/lib/MIME/Viewer/pkcs7.php +%%HORDIR%%/lib/MIME/Viewer/plain.php +%%HORDIR%%/lib/MIME/Viewer/related.php +%%HORDIR%%/lib/MIME/Viewer/rfc822.php +%%HORDIR%%/lib/MIME/Viewer/status.php +%%HORDIR%%/lib/MIME/Viewer/tnef.php +%%HORDIR%%/lib/MIME/Viewer/zip.php +%%HORDIR%%/lib/Mailbox.php +%%HORDIR%%/lib/Maillog.php +%%HORDIR%%/lib/Maintenance/Task/delete_attachments_monthly.php +%%HORDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php +%%HORDIR%%/lib/Maintenance/Task/fetchmail_login.php +%%HORDIR%%/lib/Maintenance/Task/purge_trash.php +%%HORDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php +%%HORDIR%%/lib/Maintenance/Task/tos_agreement.php +%%HORDIR%%/lib/Maintenance/imp.php +%%HORDIR%%/lib/Message.php +%%HORDIR%%/lib/Notification/Listener/status.php +%%HORDIR%%/lib/Quota/command.php +%%HORDIR%%/lib/Quota/courier.php +%%HORDIR%%/lib/Quota/cyrus.php +%%HORDIR%%/lib/Quota/logfile.php +%%HORDIR%%/lib/Quota/mdaemon.php +%%HORDIR%%/lib/Quota/mercury32.php +%%HORDIR%%/lib/Quota.php +%%HORDIR%%/lib/Search.php +%%HORDIR%%/lib/Session.php +%%HORDIR%%/lib/Spam.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/bs_BA/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/cs_CZ/help.xml +%%HORDIR%%/locale/da_DK/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/da_DK/help.xml +%%HORDIR%%/locale/de_DE/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/el_GR/help.xml +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/et_EE/help.xml +%%HORDIR%%/locale/fa_IR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/fa_IR/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/gl_ES/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/he_IL/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/id_ID/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/is_IS/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/it_IT/help.xml +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/km_KH/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ko_KR/help.xml +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/mk_MK/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/nb_NO/help.xml +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/nl_NL/help.xml +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pl_PL/help.xml +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pt_PT/help.xml +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ru_RU/help.xml +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/sv_SE/help.xml +%%HORDIR%%/locale/th_TH/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/uk_UA/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/uk_UA/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/zh_CN/help.xml +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/zh_TW/help.xml +%%HORDIR%%/login.php +%%HORDIR%%/mailbox.php +%%HORDIR%%/message.php +%%HORDIR%%/pgp.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_OM.po +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/bs_BA.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fa_IR.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gl_ES.po +%%HORDIR%%/po/he_IL.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/id_ID.po +%%HORDIR%%/po/imp.pot +%%HORDIR%%/po/is_IS.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/km_KH.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mk_MK.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/th_TH.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/uk_UA.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/recompose.php +%%HORDIR%%/redirect.php +%%HORDIR%%/saveimage.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/Imp.reg +%%HORDIR%%/scripts/custom_login.php +%%HORDIR%%/search.php +%%HORDIR%%/smime.php +%%HORDIR%%/spelling.php +%%HORDIR%%/stationery.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/acl/acl.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/compose/attachments.inc +%%HORDIR%%/templates/compose/attachments.js +%%HORDIR%%/templates/compose/compose.inc +%%HORDIR%%/templates/compose/compose.js +%%HORDIR%%/templates/compose/compose_expand.js +%%HORDIR%%/templates/compose/encrypt_list.inc +%%HORDIR%%/templates/compose/expand.inc +%%HORDIR%%/templates/compose/recompose.inc +%%HORDIR%%/templates/compose/redirect.inc +%%HORDIR%%/templates/compose/spelling.inc +%%HORDIR%%/templates/compose/spelling.js +%%HORDIR%%/templates/compose/success.inc +%%HORDIR%%/templates/contacts/contacts.inc +%%HORDIR%%/templates/fetchmail/account_select.inc +%%HORDIR%%/templates/fetchmail/driver_select.inc +%%HORDIR%%/templates/fetchmail/fetchmail.inc +%%HORDIR%%/templates/fetchmail/manage.inc +%%HORDIR%%/templates/fetchmail/top.inc +%%HORDIR%%/templates/filters/notactive.inc +%%HORDIR%%/templates/filters/prefs.inc +%%HORDIR%%/templates/folders/actions.inc +%%HORDIR%%/templates/folders/folders.html +%%HORDIR%%/templates/folders/folders_confirm.html +%%HORDIR%%/templates/folders/foot.inc +%%HORDIR%%/templates/folders/head.inc +%%HORDIR%%/templates/folders/import.inc +%%HORDIR%%/templates/javascript/addressesBlocks.js +%%HORDIR%%/templates/javascript/folders.js +%%HORDIR%%/templates/javascript/popup.js +%%HORDIR%%/templates/login/login.inc +%%HORDIR%%/templates/mailbox/actions.inc +%%HORDIR%%/templates/mailbox/actions_deleted.inc +%%HORDIR%%/templates/mailbox/alert.inc +%%HORDIR%%/templates/mailbox/empty_mailbox.inc +%%HORDIR%%/templates/mailbox/footer.inc +%%HORDIR%%/templates/mailbox/header.inc +%%HORDIR%%/templates/mailbox/javascript.inc +%%HORDIR%%/templates/mailbox/legend.inc +%%HORDIR%%/templates/mailbox/mailbox.html +%%HORDIR%%/templates/mailbox/message_footers.inc +%%HORDIR%%/templates/mailbox/message_headers.inc +%%HORDIR%%/templates/mailbox/navbar.inc +%%HORDIR%%/templates/mailbox/searchfolder.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/message/headers.inc +%%HORDIR%%/templates/message/javascript.inc +%%HORDIR%%/templates/message/message.inc +%%HORDIR%%/templates/message/navbar_actions.inc +%%HORDIR%%/templates/message/navbar_navigate.inc +%%HORDIR%%/templates/message/navbar_top.inc +%%HORDIR%%/templates/pgp/import_key.inc +%%HORDIR%%/templates/pgp/notactive.inc +%%HORDIR%%/templates/pgp/passphrase.inc +%%HORDIR%%/templates/pgp/pgp.inc +%%HORDIR%%/templates/prefs/defaultsearchselect.inc +%%HORDIR%%/templates/prefs/encryptselect.inc +%%HORDIR%%/templates/prefs/folderselect.inc +%%HORDIR%%/templates/prefs/initialpageselect.inc +%%HORDIR%%/templates/prefs/sentmailselect.inc +%%HORDIR%%/templates/prefs/sourceselect.inc +%%HORDIR%%/templates/prefs/spamselect.inc +%%HORDIR%%/templates/prefs/trashselect.inc +%%HORDIR%%/templates/quota/quota.inc +%%HORDIR%%/templates/saveimage/saveimage.inc +%%HORDIR%%/templates/search/fields.inc +%%HORDIR%%/templates/search/header.inc +%%HORDIR%%/templates/search/javascript.inc +%%HORDIR%%/templates/search/main.inc +%%HORDIR%%/templates/smime/import_key.inc +%%HORDIR%%/templates/smime/notactive.inc +%%HORDIR%%/templates/smime/passphrase.inc +%%HORDIR%%/templates/smime/smime.inc +%%HORDIR%%/templates/stationery/prefs.inc +%%HORDIR%%/templates/thread/thread.html +%%HORDIR%%/test.php +%%HORDIR%%/themes/azur/screen.css +%%HORDIR%%/themes/bluemoon/screen.css +%%HORDIR%%/themes/bluewhite/screen.css +%%HORDIR%%/themes/brown/screen.css +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/cherry/screen.css +%%HORDIR%%/themes/cornflower/screen.css +%%HORDIR%%/themes/gennevilliers/screen.css +%%HORDIR%%/themes/graphics/addressbook_add.png +%%HORDIR%%/themes/graphics/addressbook_browse.png +%%HORDIR%%/themes/graphics/apple.png +%%HORDIR%%/themes/graphics/attachment.png +%%HORDIR%%/themes/graphics/audio/theetone.wav +%%HORDIR%%/themes/graphics/compose.png +%%HORDIR%%/themes/graphics/empty_spam.png +%%HORDIR%%/themes/graphics/empty_trash.png +%%HORDIR%%/themes/graphics/encrypted.png +%%HORDIR%%/themes/graphics/expand.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/fetchmail.png +%%HORDIR%%/themes/graphics/filters.png +%%HORDIR%%/themes/graphics/folders/drafts.png +%%HORDIR%%/themes/graphics/folders/folder.png +%%HORDIR%%/themes/graphics/folders/folder_open.png +%%HORDIR%%/themes/graphics/folders/inbox.png +%%HORDIR%%/themes/graphics/folders/sent.png +%%HORDIR%%/themes/graphics/folders/trash.png +%%HORDIR%%/themes/graphics/imp.png +%%HORDIR%%/themes/graphics/mail_answered.png +%%HORDIR%%/themes/graphics/mail_deleted.png +%%HORDIR%%/themes/graphics/mail_draft.png +%%HORDIR%%/themes/graphics/mail_flagged.png +%%HORDIR%%/themes/graphics/mail_forwarded.png +%%HORDIR%%/themes/graphics/mail_personal.png +%%HORDIR%%/themes/graphics/mail_priority_high.png +%%HORDIR%%/themes/graphics/mail_priority_low.png +%%HORDIR%%/themes/graphics/mail_unseen.png +%%HORDIR%%/themes/graphics/manage_attachments.png +%%HORDIR%%/themes/graphics/mime/binary.png +%%HORDIR%%/themes/graphics/mime/compressed.png +%%HORDIR%%/themes/graphics/mime/encryption.png +%%HORDIR%%/themes/graphics/mime/html.png +%%HORDIR%%/themes/graphics/mime/image.png +%%HORDIR%%/themes/graphics/mime/itip.png +%%HORDIR%%/themes/graphics/mime/mail.png +%%HORDIR%%/themes/graphics/mime/text.png +%%HORDIR%%/themes/graphics/newmail.png +%%HORDIR%%/themes/graphics/shared.png +%%HORDIR%%/themes/graphics/signed.png +%%HORDIR%%/themes/graphics/spacer_red.png +%%HORDIR%%/themes/graphics/spellcheck.png +%%HORDIR%%/themes/green/screen.css +%%HORDIR%%/themes/grey/screen.css +%%HORDIR%%/themes/lavander/screen.css +%%HORDIR%%/themes/luc/screen.css +%%HORDIR%%/themes/lucblue/screen.css +%%HORDIR%%/themes/postnuke/screen.css +%%HORDIR%%/themes/rtl.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/themes/simplex/screen.css +%%HORDIR%%/themes/sun/screen.css +%%HORDIR%%/thread.php +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Auth +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Crypt +@dirrm %%HORDIR%%/lib/Fetchmail +@dirrm %%HORDIR%%/lib/IMAP +@dirrm %%HORDIR%%/lib/Identity +@dirrm %%HORDIR%%/lib/MIME/Viewer +@dirrm %%HORDIR%%/lib/MIME +@dirrm %%HORDIR%%/lib/Maintenance/Task +@dirrm %%HORDIR%%/lib/Maintenance +@dirrm %%HORDIR%%/lib/Notification/Listener +@dirrm %%HORDIR%%/lib/Notification +@dirrm %%HORDIR%%/lib/Quota +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_OM/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_OM +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/bs_BA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bs_BA +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fa_IR +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/gl_ES +@dirrm %%HORDIR%%/locale/he_IL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/he_IL +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDIR%%/locale/id_ID +@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%HORDIR%%/locale/is_IS +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/km_KH/LC_MESSAGES +@dirrm %%HORDIR%%/locale/km_KH +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/mk_MK +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/th_TH/LC_MESSAGES +@dirrm %%HORDIR%%/locale/th_TH +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/uk_UA +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/acl +@dirrm %%HORDIR%%/templates/compose +@dirrm %%HORDIR%%/templates/contacts +@dirrm %%HORDIR%%/templates/fetchmail +@dirrm %%HORDIR%%/templates/filters +@dirrm %%HORDIR%%/templates/folders +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/login +@dirrm %%HORDIR%%/templates/mailbox +@dirrm %%HORDIR%%/templates/message +@dirrm %%HORDIR%%/templates/pgp +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/quota +@dirrm %%HORDIR%%/templates/saveimage +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/smime +@dirrm %%HORDIR%%/templates/stationery +@dirrm %%HORDIR%%/templates/thread +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/azur +@dirrm %%HORDIR%%/themes/bluemoon +@dirrm %%HORDIR%%/themes/bluewhite +@dirrm %%HORDIR%%/themes/brown +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/cherry +@dirrm %%HORDIR%%/themes/cornflower +@dirrm %%HORDIR%%/themes/gennevilliers +@dirrm %%HORDIR%%/themes/graphics/audio +@dirrm %%HORDIR%%/themes/graphics/folders +@dirrm %%HORDIR%%/themes/graphics/mime +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/green +@dirrm %%HORDIR%%/themes/grey +@dirrm %%HORDIR%%/themes/lavander +@dirrm %%HORDIR%%/themes/luc +@dirrm %%HORDIR%%/themes/lucblue +@dirrm %%HORDIR%%/themes/postnuke +@dirrm %%HORDIR%%/themes/simplex +@dirrm %%HORDIR%%/themes/sun +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/horde4-ingo/Makefile b/mail/horde4-ingo/Makefile index eb94e51a0363..a17b4d34104f 100644 --- a/mail/horde4-ingo/Makefile +++ b/mail/horde4-ingo/Makefile @@ -7,10 +7,8 @@ PORTNAME= ingo PORTVERSION= 1.1.3 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Horde's email-filter management application @@ -22,63 +20,14 @@ COMMENT= Horde's email-filter management application # #----------------------------------------------------------------------- -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes -USE_PHP= imap -USE_GETTEXT= yes - -PLIST_SUB= INGODIR=${LINGODIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= INGODIR=${INGODIR} - -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO -CONFFILE= backends.php fields.php prefs.php -SUB_DIRS= config lib locale po scripts templates themes js - -LHORDEDIR?= www/horde -LINGODIR= ${LHORDEDIR}/ingo -PEARDIR?= ${LOCALBASE}/share/pear - -INGODIR= ${PREFIX}/${LINGODIR} -CONFDIR= ${INGODIR}/config - -.include <bsd.port.pre.mk> - .if defined(WITH_SIEVE) || exists(${LOCALBASE}/cyrus/bin/timsieved) RUN_DEPENDS+= ${PEARDIR}/Net/Sieve.php:${PORTSDIR}/net/pear-Net_Sieve .endif -post-patch: - @${FIND} ${WRKSRC} -name "*.orig" -delete - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -do-install: - @${INSTALL} -d ${INGODIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${INGODIR}/ - @${CP} -p ${WRKSRC}/*.php ${INGODIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${INGODIR}/ - @${CHMOD} -R o-rwx ${CONFDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${INGODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${CONFDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} +USE_PHP= imap +USE_HORDE= base pkg-message +USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/horde4-ingo/files/pkg-deinstall.in b/mail/horde4-ingo/files/pkg-deinstall.in deleted file mode 100644 index 9d8d08de9224..000000000000 --- a/mail/horde4-ingo/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Ingo config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%INGODIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/horde4-ingo/files/pkg-install.in b/mail/horde4-ingo/files/pkg-install.in deleted file mode 100644 index 3a7bcda4b76a..000000000000 --- a/mail/horde4-ingo/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%INGODIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/horde4-ingo/files/pkg-message.in b/mail/horde4-ingo/files/pkg-message.in deleted file mode 100644 index 0a1a920d3516..000000000000 --- a/mail/horde4-ingo/files/pkg-message.in +++ /dev/null @@ -1,10 +0,0 @@ -************************************************************************ -Ingo has been installed in %%INGODIR%% with your blank -configuration files. - -Horde must be configured; if not, see `pkg_info -D -x horde'. - -Finally, you must login to Horde as a Horde Administrator to finish the -configuration. - -************************************************************************ diff --git a/mail/horde4-ingo/pkg-plist b/mail/horde4-ingo/pkg-plist index e54f8e1a2cf8..5e6d04751680 100644 --- a/mail/horde4-ingo/pkg-plist +++ b/mail/horde4-ingo/pkg-plist @@ -1,195 +1,196 @@ -%%INGODIR%%/blacklist.php -%%INGODIR%%/config/.htaccess -%%INGODIR%%/config/backends.php.dist -%%INGODIR%%/config/conf.xml -%%INGODIR%%/config/fields.php.dist -%%INGODIR%%/config/prefs.php.dist -%%INGODIR%%/filters.php -%%INGODIR%%/forward.php -%%INGODIR%%/index.php -%%INGODIR%%/js/stripe.js -%%INGODIR%%/lib/Block/overview.php -%%INGODIR%%/lib/Driver.php -%%INGODIR%%/lib/Driver/ldap.php -%%INGODIR%%/lib/Driver/null.php -%%INGODIR%%/lib/Driver/timsieved.php -%%INGODIR%%/lib/Driver/vfs.php -%%INGODIR%%/lib/IMAP/Search.php -%%INGODIR%%/lib/Ingo.php -%%INGODIR%%/lib/Script.php -%%INGODIR%%/lib/Script/imap.php -%%INGODIR%%/lib/Script/maildrop.php -%%INGODIR%%/lib/Script/procmail.php -%%INGODIR%%/lib/Script/sieve.php -%%INGODIR%%/lib/Session.php -%%INGODIR%%/lib/Storage.php -%%INGODIR%%/lib/Storage/prefs.php -%%INGODIR%%/lib/api.php -%%INGODIR%%/lib/base.php -%%INGODIR%%/lib/version.php -%%INGODIR%%/locale/ca_ES/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/ca_ES/help.xml -%%INGODIR%%/locale/cs_CZ/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/da_DK/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/de_DE/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/de_DE/help.xml -%%INGODIR%%/locale/en_US/help.xml -%%INGODIR%%/locale/el_GR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/es_ES/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/es_ES/help.xml -%%INGODIR%%/locale/et_EE/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/fi_FI/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/fi_FI/help.xml -%%INGODIR%%/locale/fr_FR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/fr_FR/help.xml -%%INGODIR%%/locale/hu_HU/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/it_IT/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/ko_KR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/lt_LT/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/lv_LV/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/lv_LV/help.xml -%%INGODIR%%/locale/nb_NO/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/nl_NL/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/pl_PL/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/pt_BR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/pt_PT/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/ro_RO/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/sl_SI/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/sv_SE/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/tr_TR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/zh_TW/LC_MESSAGES/ingo.mo -%%INGODIR%%/po/README -%%INGODIR%%/po/ca_ES.po -%%INGODIR%%/po/cs_CZ.po -%%INGODIR%%/po/da_DK.po -%%INGODIR%%/po/de_DE.po -%%INGODIR%%/po/el_GR.po -%%INGODIR%%/po/es_ES.po -%%INGODIR%%/po/et_EE.po -%%INGODIR%%/po/fi_FI.po -%%INGODIR%%/po/fr_FR.po -%%INGODIR%%/po/hu_HU.po -%%INGODIR%%/po/ingo.pot -%%INGODIR%%/po/it_IT.po -%%INGODIR%%/po/ko_KR.po -%%INGODIR%%/po/lt_LT.po -%%INGODIR%%/po/lv_LV.po -%%INGODIR%%/po/nb_NO.po -%%INGODIR%%/po/nl_NL.po -%%INGODIR%%/po/pl_PL.po -%%INGODIR%%/po/pt_BR.po -%%INGODIR%%/po/pt_PT.po -%%INGODIR%%/po/ro_RO.po -%%INGODIR%%/po/sl_SI.po -%%INGODIR%%/po/sv_SE.po -%%INGODIR%%/po/tr_TR.po -%%INGODIR%%/po/zh_TW.po -%%INGODIR%%/rule.php -%%INGODIR%%/script.php -%%INGODIR%%/scripts/.htaccess -%%INGODIR%%/scripts/convert_imp_filters.php -%%INGODIR%%/templates/blacklist/blacklist.inc -%%INGODIR%%/templates/common-header.inc -%%INGODIR%%/templates/filters/filter-none.inc -%%INGODIR%%/templates/filters/filter.html -%%INGODIR%%/templates/filters/footer.inc -%%INGODIR%%/templates/filters/header.inc -%%INGODIR%%/templates/filters/settings.inc -%%INGODIR%%/templates/forward/forward.inc -%%INGODIR%%/templates/javascript/new_folder.js -%%INGODIR%%/templates/menu.inc -%%INGODIR%%/templates/rule/filter.inc -%%INGODIR%%/templates/rule/footer.inc -%%INGODIR%%/templates/rule/header.inc -%%INGODIR%%/templates/script/activate.inc -%%INGODIR%%/templates/script/footer.inc -%%INGODIR%%/templates/script/header.inc -%%INGODIR%%/templates/script/script.inc -%%INGODIR%%/templates/vacation/vacation.inc -%%INGODIR%%/templates/whitelist/whitelist.inc -%%INGODIR%%/test.php -%%INGODIR%%/themes/graphics/blacklist.png -%%INGODIR%%/themes/graphics/copy.png -%%INGODIR%%/themes/graphics/disable.png -%%INGODIR%%/themes/graphics/enable.png -%%INGODIR%%/themes/graphics/favicon.ico -%%INGODIR%%/themes/graphics/forward.png -%%INGODIR%%/themes/graphics/ingo.png -%%INGODIR%%/themes/graphics/script.png -%%INGODIR%%/themes/graphics/vacation.png -%%INGODIR%%/themes/graphics/whitelist.png -%%INGODIR%%/themes/screen.css -%%INGODIR%%/vacation.php -%%INGODIR%%/whitelist.php -@dirrm %%INGODIR%%/themes/graphics -@dirrm %%INGODIR%%/themes -@dirrm %%INGODIR%%/templates/whitelist -@dirrm %%INGODIR%%/templates/vacation -@dirrm %%INGODIR%%/templates/script -@dirrm %%INGODIR%%/templates/rule -@dirrm %%INGODIR%%/templates/javascript -@dirrm %%INGODIR%%/templates/forward -@dirrm %%INGODIR%%/templates/filters -@dirrm %%INGODIR%%/templates/blacklist -@dirrm %%INGODIR%%/templates -@dirrm %%INGODIR%%/scripts -@dirrm %%INGODIR%%/po -@dirrm %%INGODIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%INGODIR%%/locale/zh_TW -@dirrm %%INGODIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/tr_TR -@dirrm %%INGODIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%INGODIR%%/locale/sv_SE -@dirrm %%INGODIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%INGODIR%%/locale/sl_SI -@dirrm %%INGODIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%INGODIR%%/locale/ro_RO -@dirrm %%INGODIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%INGODIR%%/locale/pt_PT -@dirrm %%INGODIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/pt_BR -@dirrm %%INGODIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%INGODIR%%/locale/pl_PL -@dirrm %%INGODIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%INGODIR%%/locale/nl_NL -@dirrm %%INGODIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%INGODIR%%/locale/nb_NO -@dirrm %%INGODIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%INGODIR%%/locale/lv_LV -@dirrm %%INGODIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%INGODIR%%/locale/lt_LT -@dirrm %%INGODIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/ko_KR -@dirrm %%INGODIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%INGODIR%%/locale/it_IT -@dirrm %%INGODIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%INGODIR%%/locale/hu_HU -@dirrm %%INGODIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/fr_FR -@dirrm %%INGODIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%INGODIR%%/locale/fi_FI -@dirrm %%INGODIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%INGODIR%%/locale/et_EE -@dirrm %%INGODIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%INGODIR%%/locale/es_ES -@dirrm %%INGODIR%%/locale/en_US -@dirrm %%INGODIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/el_GR -@dirrm %%INGODIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%INGODIR%%/locale/de_DE -@dirrm %%INGODIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%INGODIR%%/locale/da_DK -@dirrm %%INGODIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%INGODIR%%/locale/cs_CZ -@dirrm %%INGODIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%INGODIR%%/locale/ca_ES -@dirrm %%INGODIR%%/locale -@dirrm %%INGODIR%%/js -@dirrm %%INGODIR%%/lib/Storage -@dirrm %%INGODIR%%/lib/Script -@dirrm %%INGODIR%%/lib/IMAP -@dirrm %%INGODIR%%/lib/Driver -@dirrm %%INGODIR%%/lib/Block -@dirrm %%INGODIR%%/lib -@dirrmtry %%INGODIR%%/config -@dirrmtry %%INGODIR%% +%%HORDIR%%/blacklist.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/backends.php.dist +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/fields.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/filters.php +%%HORDIR%%/forward.php +%%HORDIR%%/index.php +%%HORDIR%%/js/stripe.js +%%HORDIR%%/lib/Block/overview.php +%%HORDIR%%/lib/Driver/ldap.php +%%HORDIR%%/lib/Driver/null.php +%%HORDIR%%/lib/Driver/timsieved.php +%%HORDIR%%/lib/Driver/vfs.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/IMAP/Search.php +%%HORDIR%%/lib/Ingo.php +%%HORDIR%%/lib/Script/imap.php +%%HORDIR%%/lib/Script/maildrop.php +%%HORDIR%%/lib/Script/procmail.php +%%HORDIR%%/lib/Script/sieve.php +%%HORDIR%%/lib/Script.php +%%HORDIR%%/lib/Session.php +%%HORDIR%%/lib/Storage/prefs.php +%%HORDIR%%/lib/Storage.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/ingo.mo +%%HORDIR%%/po/README +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/ingo.pot +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/rule.php +%%HORDIR%%/script.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/convert_imp_filters.php +%%HORDIR%%/templates/blacklist/blacklist.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/filters/filter-none.inc +%%HORDIR%%/templates/filters/filter.html +%%HORDIR%%/templates/filters/footer.inc +%%HORDIR%%/templates/filters/header.inc +%%HORDIR%%/templates/filters/settings.inc +%%HORDIR%%/templates/forward/forward.inc +%%HORDIR%%/templates/javascript/new_folder.js +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/rule/filter.inc +%%HORDIR%%/templates/rule/footer.inc +%%HORDIR%%/templates/rule/header.inc +%%HORDIR%%/templates/script/activate.inc +%%HORDIR%%/templates/script/footer.inc +%%HORDIR%%/templates/script/header.inc +%%HORDIR%%/templates/script/script.inc +%%HORDIR%%/templates/vacation/vacation.inc +%%HORDIR%%/templates/whitelist/whitelist.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/blacklist.png +%%HORDIR%%/themes/graphics/copy.png +%%HORDIR%%/themes/graphics/disable.png +%%HORDIR%%/themes/graphics/enable.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/forward.png +%%HORDIR%%/themes/graphics/ingo.png +%%HORDIR%%/themes/graphics/script.png +%%HORDIR%%/themes/graphics/vacation.png +%%HORDIR%%/themes/graphics/whitelist.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/vacation.php +%%HORDIR%%/whitelist.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/IMAP +@dirrm %%HORDIR%%/lib/Script +@dirrm %%HORDIR%%/lib/Storage +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/blacklist +@dirrm %%HORDIR%%/templates/filters +@dirrm %%HORDIR%%/templates/forward +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/rule +@dirrm %%HORDIR%%/templates/script +@dirrm %%HORDIR%%/templates/vacation +@dirrm %%HORDIR%%/templates/whitelist +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/horde4-turba/Makefile b/mail/horde4-turba/Makefile index 6cddc5222df0..d1a0a7d8accd 100644 --- a/mail/horde4-turba/Makefile +++ b/mail/horde4-turba/Makefile @@ -7,69 +7,21 @@ PORTNAME= turba PORTVERSION= 2.1.4 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= The Horde contact management application -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - +USE_HORDE= base USE_PHP= ldap -NO_BUILD= yes USE_GETTEXT= yes -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL LDAP \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= attributes.php menu.php mime_drivers.php prefs.php sources.php -SUB_DIRS= config lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LTURBADIR?= ${LHORDEDIR}/turba - -PLIST_SUB= TURBADIR=${LTURBADIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= TURBADIR=${TURBADIR} CONFDIR=${CONFDIR} - -TURBADIR= ${PREFIX}/${LTURBADIR} -CONFDIR= ${TURBADIR}/config +PORTDOCS= README CHANGES CREDITS INSTALL LDAP RELEASE_NOTES TODO UPGRADING -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @${RM} ${WRKSRC}/config/sources.php.dist.orig +pre-patch: @${REINPLACE_CMD} -e "s:/usr/bin/ldapadd:${LOCALBASE}/bin/ldapadd:" \ ${WRKSRC}/scripts/ldap/addou.pl -do-install: - @${INSTALL} -d ${TURBADIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${TURBADIR}/ - @${CP} -p ${WRKSRC}/*.php ${TURBADIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${TURBADIR}/ - @${CHMOD} -R o-rwx ${TURBADIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${TURBADIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${TURBADIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/horde4-turba/files/pkg-deinstall.in b/mail/horde4-turba/files/pkg-deinstall.in deleted file mode 100644 index fced5020f1b0..000000000000 --- a/mail/horde4-turba/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Turba config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%TURBADIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/horde4-turba/files/pkg-install.in b/mail/horde4-turba/files/pkg-install.in deleted file mode 100644 index e0611782bf84..000000000000 --- a/mail/horde4-turba/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%TURBADIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/horde4-turba/files/pkg-message.in b/mail/horde4-turba/files/pkg-message.in index c59f450b8cf5..fac46bfb9f28 100644 --- a/mail/horde4-turba/files/pkg-message.in +++ b/mail/horde4-turba/files/pkg-message.in @@ -1,11 +1,11 @@ ************************************************************************ -Turba has been installed in %%TURBADIR%% with your blank +Turba has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde'. Then, you might have to tune the configuration files located in -%%CONFDIR%%/, specially the file sources.php. +%%HORCFG%%/, specially the file sources.php. Warning: if you don't use some source, deactivate it, or you could ******** experience bad response times! @@ -15,7 +15,7 @@ Then, you must login to Horde as a Horde Administrator to finish the configuration. You have to create a table in your database; please see -%%TURBADIR%%/scripts/. +%%HORDIR%%/scripts/. You might create a LDAP schema: please see the doc LDAP. ************************************************************************ diff --git a/mail/horde4-turba/pkg-plist b/mail/horde4-turba/pkg-plist index fe2bc9fa07da..0ae7fe8003b0 100644 --- a/mail/horde4-turba/pkg-plist +++ b/mail/horde4-turba/pkg-plist @@ -1,274 +1,275 @@ -%%TURBADIR%%/add.php -%%TURBADIR%%/addressbooks.php -%%TURBADIR%%/browse.php -%%TURBADIR%%/config/.htaccess -%%TURBADIR%%/config/attributes.php.dist -%%TURBADIR%%/config/conf.xml -%%TURBADIR%%/config/menu.php.dist -%%TURBADIR%%/config/mime_drivers.php.dist -%%TURBADIR%%/config/prefs.php.dist -%%TURBADIR%%/config/sources.php.dist -%%TURBADIR%%/data.php -%%TURBADIR%%/delete.php -%%TURBADIR%%/display.php -%%TURBADIR%%/edit.php -%%TURBADIR%%/index.php -%%TURBADIR%%/lib/.htaccess -%%TURBADIR%%/lib/Block/minisearch.php -%%TURBADIR%%/lib/Block/tree_menu.php -%%TURBADIR%%/lib/Driver.php -%%TURBADIR%%/lib/Driver/imsp.php -%%TURBADIR%%/lib/Driver/kolab.php -%%TURBADIR%%/lib/Driver/ldap.php -%%TURBADIR%%/lib/Driver/null.php -%%TURBADIR%%/lib/Driver/prefs.php -%%TURBADIR%%/lib/Driver/sql.php -%%TURBADIR%%/lib/Group.php -%%TURBADIR%%/lib/List.php -%%TURBADIR%%/lib/ListView.php -%%TURBADIR%%/lib/Object.php -%%TURBADIR%%/lib/Object/Group.php -%%TURBADIR%%/lib/ObjectView.php -%%TURBADIR%%/lib/Renderer.php -%%TURBADIR%%/lib/tests/tovcard.phpt -%%TURBADIR%%/lib/Turba.php -%%TURBADIR%%/lib/api.php -%%TURBADIR%%/lib/base.php -%%TURBADIR%%/lib/prefs.php -%%TURBADIR%%/lib/version.php -%%TURBADIR%%/locale/.htaccess -%%TURBADIR%%/locale/ar_SY/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/bg_BG/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ca_ES/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ca_ES/help.xml -%%TURBADIR%%/locale/cs_CZ/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/da_DK/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/de_DE/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/de_DE/help.xml -%%TURBADIR%%/locale/el_GR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/en_US/help.xml -%%TURBADIR%%/locale/es_ES/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/es_ES/help.xml -%%TURBADIR%%/locale/et_EE/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fa_IR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fa_IR/help.xml -%%TURBADIR%%/locale/fi_FI/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fi_FI/help.xml -%%TURBADIR%%/locale/fr_FR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fr_FR/help.xml -%%TURBADIR%%/locale/gl_ES/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/hu_HU/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/is_IS/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/it_IT/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ja_JP/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ko_KR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/lt_LT/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/lv_LV/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/mk_MK/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/nb_NO/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/nl_NL/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/nn_NO/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pl_PL/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pt_BR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pt_BR/help.xml -%%TURBADIR%%/locale/pt_PT/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pt_PT/help.xml -%%TURBADIR%%/locale/ro_RO/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ru_RU/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/sk_SK/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/sk_SK/help.xml -%%TURBADIR%%/locale/sl_SI/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/sv_SE/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/tr_TR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/tr_TR/help.xml -%%TURBADIR%%/locale/uk_UA/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/zh_CN/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/zh_TW/LC_MESSAGES/turba.mo -%%TURBADIR%%/minisearch.php -%%TURBADIR%%/po/.htaccess -%%TURBADIR%%/po/README -%%TURBADIR%%/po/ar_SY.po -%%TURBADIR%%/po/bg_BG.po -%%TURBADIR%%/po/ca_ES.po -%%TURBADIR%%/po/cs_CZ.po -%%TURBADIR%%/po/da_DK.po -%%TURBADIR%%/po/de_DE.po -%%TURBADIR%%/po/el_GR.po -%%TURBADIR%%/po/es_ES.po -%%TURBADIR%%/po/et_EE.po -%%TURBADIR%%/po/fa_IR.po -%%TURBADIR%%/po/fi_FI.po -%%TURBADIR%%/po/fr_FR.po -%%TURBADIR%%/po/gl_ES.po -%%TURBADIR%%/po/hu_HU.po -%%TURBADIR%%/po/is_IS.po -%%TURBADIR%%/po/it_IT.po -%%TURBADIR%%/po/ja_JP.po -%%TURBADIR%%/po/ko_KR.po -%%TURBADIR%%/po/lt_LT.po -%%TURBADIR%%/po/lv_LV.po -%%TURBADIR%%/po/mk_MK.po -%%TURBADIR%%/po/nb_NO.po -%%TURBADIR%%/po/nl_NL.po -%%TURBADIR%%/po/nn_NO.po -%%TURBADIR%%/po/pl_PL.po -%%TURBADIR%%/po/pt_BR.po -%%TURBADIR%%/po/pt_PT.po -%%TURBADIR%%/po/ro_RO.po -%%TURBADIR%%/po/ru_RU.po -%%TURBADIR%%/po/sk_SK.po -%%TURBADIR%%/po/sl_SI.po -%%TURBADIR%%/po/sv_SE.po -%%TURBADIR%%/po/tr_TR.po -%%TURBADIR%%/po/turba.pot -%%TURBADIR%%/po/uk_UA.po -%%TURBADIR%%/po/zh_CN.po -%%TURBADIR%%/po/zh_TW.po -%%TURBADIR%%/scripts/.htaccess -%%TURBADIR%%/scripts/Turba.reg -%%TURBADIR%%/scripts/import_vcards.php -%%TURBADIR%%/scripts/ldap/addou -%%TURBADIR%%/scripts/ldap/addou.pl -%%TURBADIR%%/scripts/ldap/core.schema.patch -%%TURBADIR%%/scripts/ldap/rfc2739.schema -%%TURBADIR%%/scripts/sql/turba_objects.mssql.sql -%%TURBADIR%%/scripts/sql/turba_objects.mysql.sql -%%TURBADIR%%/scripts/sql/turba_objects.oci8.sql -%%TURBADIR%%/scripts/sql/turba_objects.pgsql.sql -%%TURBADIR%%/scripts/sql/turba_objects.sql -%%TURBADIR%%/scripts/sql/turba.xml -%%TURBADIR%%/scripts/sql/turba_weddingguests.sql -%%TURBADIR%%/scripts/upgrades/create_default_histories.php -%%TURBADIR%%/scripts/upgrades/1.2_to_2.0.oci8.sql -%%TURBADIR%%/scripts/upgrades/1.1_to_1.2.sql -%%TURBADIR%%/scripts/upgrades/1.2_to_2.0.sql -%%TURBADIR%%/scripts/upgrades/public_to_horde_share.php -%%TURBADIR%%/search.php -%%TURBADIR%%/templates/.htaccess -%%TURBADIR%%/templates/addressbooks.inc -%%TURBADIR%%/templates/block/minisearch.inc -%%TURBADIR%%/templates/browse/actions.inc -%%TURBADIR%%/templates/browse/column_footers.inc -%%TURBADIR%%/templates/browse/column_headers.inc -%%TURBADIR%%/templates/browse/contactrow.inc -%%TURBADIR%%/templates/browse/footer.inc -%%TURBADIR%%/templates/browse/footerAlpha.inc -%%TURBADIR%%/templates/browse/header.inc -%%TURBADIR%%/templates/browse/javascript.inc -%%TURBADIR%%/templates/browse/row.inc -%%TURBADIR%%/templates/browse/search.inc -%%TURBADIR%%/templates/browse/search_criteria.inc -%%TURBADIR%%/templates/common-header.inc -%%TURBADIR%%/templates/data/export.inc -%%TURBADIR%%/templates/data/import.inc -%%TURBADIR%%/templates/menu.inc -%%TURBADIR%%/templates/prefs/addressbookselect.inc -%%TURBADIR%%/templates/prefs/columnselect.inc -%%TURBADIR%%/templates/prefs/imsp_opt.inc -%%TURBADIR%%/test.php -%%TURBADIR%%/themes/graphics/contact.png -%%TURBADIR%%/themes/graphics/favicon.ico -%%TURBADIR%%/themes/graphics/group.png -%%TURBADIR%%/themes/graphics/menu/browse.png -%%TURBADIR%%/themes/graphics/menu/new.png -%%TURBADIR%%/themes/graphics/new.png -%%TURBADIR%%/themes/graphics/turba.png -%%TURBADIR%%/themes/ideas/screen.css -%%TURBADIR%%/themes/screen.css -%%TURBADIR%%/vcard.php -%%TURBADIR%%/view.php -@dirrm %%TURBADIR%%/themes/ideas -@dirrm %%TURBADIR%%/themes/graphics/menu -@dirrm %%TURBADIR%%/themes/graphics -@dirrm %%TURBADIR%%/themes -@dirrm %%TURBADIR%%/templates/prefs -@dirrm %%TURBADIR%%/templates/data -@dirrm %%TURBADIR%%/templates/browse -@dirrm %%TURBADIR%%/templates/block -@dirrm %%TURBADIR%%/templates -@dirrm %%TURBADIR%%/scripts/upgrades -@dirrm %%TURBADIR%%/scripts/sql -@dirrm %%TURBADIR%%/scripts/ldap -@dirrm %%TURBADIR%%/scripts -@dirrm %%TURBADIR%%/po -@dirrm %%TURBADIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/zh_TW -@dirrm %%TURBADIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/zh_CN -@dirrm %%TURBADIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/uk_UA -@dirrm %%TURBADIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/tr_TR -@dirrm %%TURBADIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/sv_SE -@dirrm %%TURBADIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/sl_SI -@dirrm %%TURBADIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/sk_SK -@dirrm %%TURBADIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ru_RU -@dirrm %%TURBADIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ro_RO -@dirrm %%TURBADIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/pt_PT -@dirrm %%TURBADIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/pt_BR -@dirrm %%TURBADIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/pl_PL -@dirrm %%TURBADIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/nn_NO -@dirrm %%TURBADIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/nl_NL -@dirrm %%TURBADIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/nb_NO -@dirrm %%TURBADIR%%/locale/mk_MK/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/mk_MK -@dirrm %%TURBADIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/lv_LV -@dirrm %%TURBADIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/lt_LT -@dirrm %%TURBADIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ko_KR -@dirrm %%TURBADIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ja_JP -@dirrm %%TURBADIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/it_IT -@dirrm %%TURBADIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/is_IS -@dirrm %%TURBADIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/hu_HU -@dirrm %%TURBADIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/gl_ES -@dirrm %%TURBADIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/fr_FR -@dirrm %%TURBADIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/fi_FI -@dirrm %%TURBADIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/fa_IR -@dirrm %%TURBADIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/et_EE -@dirrm %%TURBADIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/es_ES -@dirrm %%TURBADIR%%/locale/en_US -@dirrm %%TURBADIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/el_GR -@dirrm %%TURBADIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/de_DE -@dirrm %%TURBADIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/da_DK -@dirrm %%TURBADIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/cs_CZ -@dirrm %%TURBADIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ca_ES -@dirrm %%TURBADIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/bg_BG -@dirrm %%TURBADIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ar_SY -@dirrm %%TURBADIR%%/locale -@dirrm %%TURBADIR%%/lib/tests -@dirrm %%TURBADIR%%/lib/Object -@dirrm %%TURBADIR%%/lib/Driver -@dirrm %%TURBADIR%%/lib/Block -@dirrm %%TURBADIR%%/lib -@dirrmtry %%TURBADIR%%/config -@dirrmtry %%TURBADIR%% +%%HORDIR%%/add.php +%%HORDIR%%/addressbooks.php +%%HORDIR%%/browse.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/attributes.php.dist +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/sources.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/delete.php +%%HORDIR%%/display.php +%%HORDIR%%/edit.php +%%HORDIR%%/index.php +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Block/minisearch.php +%%HORDIR%%/lib/Block/tree_menu.php +%%HORDIR%%/lib/Driver/imsp.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/ldap.php +%%HORDIR%%/lib/Driver/null.php +%%HORDIR%%/lib/Driver/prefs.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Group.php +%%HORDIR%%/lib/List.php +%%HORDIR%%/lib/ListView.php +%%HORDIR%%/lib/Object/Group.php +%%HORDIR%%/lib/Object.php +%%HORDIR%%/lib/ObjectView.php +%%HORDIR%%/lib/Renderer.php +%%HORDIR%%/lib/Turba.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/tests/tovcard.phpt +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fa_IR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fa_IR/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/gl_ES/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/is_IS/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/mk_MK/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pt_PT/help.xml +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/uk_UA/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/turba.mo +%%HORDIR%%/minisearch.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fa_IR.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gl_ES.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/is_IS.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mk_MK.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/turba.pot +%%HORDIR%%/po/uk_UA.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/Turba.reg +%%HORDIR%%/scripts/import_vcards.php +%%HORDIR%%/scripts/ldap/addou +%%HORDIR%%/scripts/ldap/addou.pl +%%HORDIR%%/scripts/ldap/core.schema.patch +%%HORDIR%%/scripts/ldap/rfc2739.schema +%%HORDIR%%/scripts/sql/turba.xml +%%HORDIR%%/scripts/sql/turba_objects.mssql.sql +%%HORDIR%%/scripts/sql/turba_objects.mysql.sql +%%HORDIR%%/scripts/sql/turba_objects.oci8.sql +%%HORDIR%%/scripts/sql/turba_objects.pgsql.sql +%%HORDIR%%/scripts/sql/turba_objects.sql +%%HORDIR%%/scripts/sql/turba_weddingguests.sql +%%HORDIR%%/scripts/upgrades/1.1_to_1.2.sql +%%HORDIR%%/scripts/upgrades/1.2_to_2.0.oci8.sql +%%HORDIR%%/scripts/upgrades/1.2_to_2.0.sql +%%HORDIR%%/scripts/upgrades/create_default_histories.php +%%HORDIR%%/scripts/upgrades/public_to_horde_share.php +%%HORDIR%%/search.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/addressbooks.inc +%%HORDIR%%/templates/block/minisearch.inc +%%HORDIR%%/templates/browse/actions.inc +%%HORDIR%%/templates/browse/column_footers.inc +%%HORDIR%%/templates/browse/column_headers.inc +%%HORDIR%%/templates/browse/contactrow.inc +%%HORDIR%%/templates/browse/footer.inc +%%HORDIR%%/templates/browse/footerAlpha.inc +%%HORDIR%%/templates/browse/header.inc +%%HORDIR%%/templates/browse/javascript.inc +%%HORDIR%%/templates/browse/row.inc +%%HORDIR%%/templates/browse/search.inc +%%HORDIR%%/templates/browse/search_criteria.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/prefs/addressbookselect.inc +%%HORDIR%%/templates/prefs/columnselect.inc +%%HORDIR%%/templates/prefs/imsp_opt.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/contact.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/group.png +%%HORDIR%%/themes/graphics/menu/browse.png +%%HORDIR%%/themes/graphics/menu/new.png +%%HORDIR%%/themes/graphics/new.png +%%HORDIR%%/themes/graphics/turba.png +%%HORDIR%%/themes/ideas/screen.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/vcard.php +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/Object +@dirrm %%HORDIR%%/lib/tests +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fa_IR +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/gl_ES +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%HORDIR%%/locale/is_IS +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/mk_MK +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/uk_UA +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/ldap +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/block +@dirrm %%HORDIR%%/templates/browse +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics/menu +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/ideas +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/imp/Makefile b/mail/imp/Makefile index 48e7a1ebb674..7c12481824c1 100644 --- a/mail/imp/Makefile +++ b/mail/imp/Makefile @@ -7,10 +7,8 @@ PORTNAME= imp PORTVERSION= 4.1.4 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Webmail system for IMAP/POP3 mailboxes @@ -39,15 +37,11 @@ COMMENT= Webmail system for IMAP/POP3 mailboxes RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL -CONFLICTS= imp-3.* - USE_PHP= imap . if !defined(WITHOUT_LDAP) USE_PHP+= ldap . endif -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - .if !defined(WITHOUT_SMIME) USE_PHP+= openssl .endif @@ -66,44 +60,13 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell RUN_DEPENDS+= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request .endif -NO_BUILD= yes +CONFLICTS= imp-3.* +USE_HORDE= base USE_GETTEXT= yes -REINPLACE_ARGS= -i.beforeIMP - PORTDOCS= README CHANGES CREDITS INSTALL \ RELEASE_NOTES TODO UPGRADING -CONFFILE= filter.txt header.php menu.php mime_drivers.php motd.php \ - prefs.php servers.php trailer.txt -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LIMPDIR= ${LHORDEDIR}/imp -PEARDIR?= ${LOCALBASE}/share/pear - -PLIST_SUB= IMPDIR=${LIMPDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= IMPDIR=${IMPDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} - -IMPDIR= ${PREFIX}/${LIMPDIR} -CONFDIR= ${IMPDIR}/config - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h - -PATCH2RM= prefs.php.dist.orig servers.php.dist.orig conf.xml.orig \ - conf.xml.beforeIMP servers.php.dist.beforeIMP - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ pre-configure: - @${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml .if !defined(WITHOUT_ASPELL) @${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/aspell:" \ ${WRKSRC}/config/conf.xml @@ -136,11 +99,6 @@ pre-configure: . endif .endif -.for fc in ${PATCH2RM} - @${RM} ${WRKSRC}/config/${fc} -.endfor - @${RM} ${WRKSRC}/lib/MIME/Headers.php.beforeIMP - pre-install: .if !defined(BATCH) && !defined(WITHOUT_SSL) @if ! ${GREP} -q -e 'CCLIENT_SSLENABLED "yes"' ${PORTREV_H}; then \ @@ -151,27 +109,5 @@ pre-install: fi .endif -do-install: - @${INSTALL} -d ${IMPDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${IMPDIR}/ - @${CP} -p ${WRKSRC}/*.php ${IMPDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IMPDIR}/ - @${CHMOD} -R o-rwx ${IMPDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${IMPDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${IMPDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/imp/files/pkg-deinstall.in b/mail/imp/files/pkg-deinstall.in deleted file mode 100644 index e4787a72dfe4..000000000000 --- a/mail/imp/files/pkg-deinstall.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%IMPDIR%%/config/*php %%IMPDIR%%/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/imp/files/pkg-install.in b/mail/imp/files/pkg-install.in deleted file mode 100644 index 7a19b9e2b9de..000000000000 --- a/mail/imp/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%IMPDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/imp/files/pkg-message.in b/mail/imp/files/pkg-message.in index 0d82a9a5d916..9a3de8c83b0c 100644 --- a/mail/imp/files/pkg-message.in +++ b/mail/imp/files/pkg-message.in @@ -1,12 +1,13 @@ ************************************************************************ -IMP has been installed in %%IMPDIR%% with your blank +IMP has been installed in %%HORDIR%%/ with your blank configuration files. Horde must be configured and the tables created; if not, see -`pkg_info -D -x horde'. +`pkg_info -Dx horde-base'. Then, you have to tune the configuration files located in -%%CONFDIR%%/, specially the file servers.php to define your mailserver. +%%HORCFG%%/, especially the file servers.php +to define your mailserver. Then, you must login to Horde as a Horde Administrator to finish the configuration. Please read %%DOCSDIR%%/INSTALL. diff --git a/mail/imp/pkg-plist b/mail/imp/pkg-plist index 7aeb4b50a7c6..37bc7af5025a 100644 --- a/mail/imp/pkg-plist +++ b/mail/imp/pkg-plist @@ -1,498 +1,499 @@ -%%IMPDIR%%/acl.php -%%IMPDIR%%/attachment.php -%%IMPDIR%%/compose.php -%%IMPDIR%%/config/.htaccess -%%IMPDIR%%/config/conf.xml -%%IMPDIR%%/config/filter.txt.dist -%%IMPDIR%%/config/header.php.dist -%%IMPDIR%%/config/menu.php.dist -%%IMPDIR%%/config/mime_drivers.php.dist -%%IMPDIR%%/config/motd.php.dist -%%IMPDIR%%/config/prefs.php.dist -%%IMPDIR%%/config/servers.php.dist -%%IMPDIR%%/config/trailer.txt.dist -%%IMPDIR%%/contacts.php -%%IMPDIR%%/expand.php -%%IMPDIR%%/fetchmail.php -%%IMPDIR%%/fetchmailprefs.php -%%IMPDIR%%/filterprefs.php -%%IMPDIR%%/folders.php -%%IMPDIR%%/index.php -%%IMPDIR%%/js/ieEscGuard.js -%%IMPDIR%%/lib/.htaccess -%%IMPDIR%%/lib/Auth/imp.php -%%IMPDIR%%/lib/Block/summary.php -%%IMPDIR%%/lib/Block/tree_folders.php -%%IMPDIR%%/lib/Compose.php -%%IMPDIR%%/lib/Crypt/PGP.php -%%IMPDIR%%/lib/Crypt/SMIME.php -%%IMPDIR%%/lib/Fetchmail.php -%%IMPDIR%%/lib/Fetchmail/imap.php -%%IMPDIR%%/lib/Filter.php -%%IMPDIR%%/lib/Folder.php -%%IMPDIR%%/lib/IMAP.php -%%IMPDIR%%/lib/IMAP/Client.php -%%IMPDIR%%/lib/IMAP/Search.php -%%IMPDIR%%/lib/IMAP/Sort.php -%%IMPDIR%%/lib/IMAP/Thread.php -%%IMPDIR%%/lib/IMAP/Tree.php -%%IMPDIR%%/lib/IMP.php -%%IMPDIR%%/lib/Identity/imp.php -%%IMPDIR%%/lib/MIME/Contents.php -%%IMPDIR%%/lib/MIME/Headers.php -%%IMPDIR%%/lib/MIME/Viewer/alternative.php -%%IMPDIR%%/lib/MIME/Viewer/appledouble.php -%%IMPDIR%%/lib/MIME/Viewer/enriched.php -%%IMPDIR%%/lib/MIME/Viewer/html.php -%%IMPDIR%%/lib/MIME/Viewer/images.php -%%IMPDIR%%/lib/MIME/Viewer/itip.php -%%IMPDIR%%/lib/MIME/Viewer/multipart.php -%%IMPDIR%%/lib/MIME/Viewer/notification.php -%%IMPDIR%%/lib/MIME/Viewer/partial.php -%%IMPDIR%%/lib/MIME/Viewer/pgp.php -%%IMPDIR%%/lib/MIME/Viewer/pkcs7.php -%%IMPDIR%%/lib/MIME/Viewer/plain.php -%%IMPDIR%%/lib/MIME/Viewer/related.php -%%IMPDIR%%/lib/MIME/Viewer/rfc822.php -%%IMPDIR%%/lib/MIME/Viewer/status.php -%%IMPDIR%%/lib/MIME/Viewer/tnef.php -%%IMPDIR%%/lib/MIME/Viewer/zip.php -%%IMPDIR%%/lib/Mailbox.php -%%IMPDIR%%/lib/Maillog.php -%%IMPDIR%%/lib/Maintenance/Task/delete_attachments_monthly.php -%%IMPDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php -%%IMPDIR%%/lib/Maintenance/Task/fetchmail_login.php -%%IMPDIR%%/lib/Maintenance/Task/purge_trash.php -%%IMPDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php -%%IMPDIR%%/lib/Maintenance/Task/tos_agreement.php -%%IMPDIR%%/lib/Maintenance/imp.php -%%IMPDIR%%/lib/Message.php -%%IMPDIR%%/lib/Notification/Listener/status.php -%%IMPDIR%%/lib/Quota.php -%%IMPDIR%%/lib/Quota/command.php -%%IMPDIR%%/lib/Quota/courier.php -%%IMPDIR%%/lib/Quota/cyrus.php -%%IMPDIR%%/lib/Quota/logfile.php -%%IMPDIR%%/lib/Quota/mdaemon.php -%%IMPDIR%%/lib/Quota/mercury32.php -%%IMPDIR%%/lib/Search.php -%%IMPDIR%%/lib/Session.php -%%IMPDIR%%/lib/Spam.php -%%IMPDIR%%/lib/api.php -%%IMPDIR%%/lib/base.php -%%IMPDIR%%/lib/prefs.php -%%IMPDIR%%/lib/version.php -%%IMPDIR%%/locale/.htaccess -%%IMPDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ar_SY/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/bs_BA/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ca_ES/help.xml -%%IMPDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/cs_CZ/help.xml -%%IMPDIR%%/locale/da_DK/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/da_DK/help.xml -%%IMPDIR%%/locale/de_DE/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/de_DE/help.xml -%%IMPDIR%%/locale/el_GR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/el_GR/help.xml -%%IMPDIR%%/locale/en_US/help.xml -%%IMPDIR%%/locale/es_ES/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/es_ES/help.xml -%%IMPDIR%%/locale/et_EE/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/et_EE/help.xml -%%IMPDIR%%/locale/fa_IR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/fa_IR/help.xml -%%IMPDIR%%/locale/fi_FI/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/fi_FI/help.xml -%%IMPDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/fr_FR/help.xml -%%IMPDIR%%/locale/gl_ES/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/he_IL/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/hu_HU/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/hu_HU/help.xml -%%IMPDIR%%/locale/id_ID/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/is_IS/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/it_IT/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/it_IT/help.xml -%%IMPDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/km_KH/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ko_KR/help.xml -%%IMPDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/mk_MK/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/nb_NO/help.xml -%%IMPDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/nl_NL/help.xml -%%IMPDIR%%/locale/nn_NO/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pl_PL/help.xml -%%IMPDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pt_BR/help.xml -%%IMPDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/pt_PT/help.xml -%%IMPDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/ru_RU/help.xml -%%IMPDIR%%/locale/sk_SK/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/sk_SK/help.xml -%%IMPDIR%%/locale/sl_SI/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/sv_SE/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/sv_SE/help.xml -%%IMPDIR%%/locale/th_TH/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/tr_TR/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/tr_TR/help.xml -%%IMPDIR%%/locale/uk_UA/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/uk_UA/help.xml -%%IMPDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/zh_CN/help.xml -%%IMPDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo -%%IMPDIR%%/locale/zh_TW/help.xml -%%IMPDIR%%/login.php -%%IMPDIR%%/mailbox.php -%%IMPDIR%%/message.php -%%IMPDIR%%/pgp.php -%%IMPDIR%%/po/.htaccess -%%IMPDIR%%/po/README -%%IMPDIR%%/po/ar_OM.po -%%IMPDIR%%/po/ar_SY.po -%%IMPDIR%%/po/bg_BG.po -%%IMPDIR%%/po/bs_BA.po -%%IMPDIR%%/po/ca_ES.po -%%IMPDIR%%/po/cs_CZ.po -%%IMPDIR%%/po/da_DK.po -%%IMPDIR%%/po/de_DE.po -%%IMPDIR%%/po/el_GR.po -%%IMPDIR%%/po/es_ES.po -%%IMPDIR%%/po/et_EE.po -%%IMPDIR%%/po/fa_IR.po -%%IMPDIR%%/po/fi_FI.po -%%IMPDIR%%/po/fr_FR.po -%%IMPDIR%%/po/gl_ES.po -%%IMPDIR%%/po/he_IL.po -%%IMPDIR%%/po/hu_HU.po -%%IMPDIR%%/po/id_ID.po -%%IMPDIR%%/po/imp.pot -%%IMPDIR%%/po/is_IS.po -%%IMPDIR%%/po/it_IT.po -%%IMPDIR%%/po/ja_JP.po -%%IMPDIR%%/po/km_KH.po -%%IMPDIR%%/po/ko_KR.po -%%IMPDIR%%/po/lt_LT.po -%%IMPDIR%%/po/lv_LV.po -%%IMPDIR%%/po/mk_MK.po -%%IMPDIR%%/po/nb_NO.po -%%IMPDIR%%/po/nl_NL.po -%%IMPDIR%%/po/nn_NO.po -%%IMPDIR%%/po/pl_PL.po -%%IMPDIR%%/po/pt_BR.po -%%IMPDIR%%/po/pt_PT.po -%%IMPDIR%%/po/ro_RO.po -%%IMPDIR%%/po/ru_RU.po -%%IMPDIR%%/po/sk_SK.po -%%IMPDIR%%/po/sl_SI.po -%%IMPDIR%%/po/sv_SE.po -%%IMPDIR%%/po/th_TH.po -%%IMPDIR%%/po/tr_TR.po -%%IMPDIR%%/po/uk_UA.po -%%IMPDIR%%/po/zh_CN.po -%%IMPDIR%%/po/zh_TW.po -%%IMPDIR%%/recompose.php -%%IMPDIR%%/redirect.php -%%IMPDIR%%/saveimage.php -%%IMPDIR%%/scripts/.htaccess -%%IMPDIR%%/scripts/Imp.reg -%%IMPDIR%%/scripts/custom_login.php -%%IMPDIR%%/search.php -%%IMPDIR%%/smime.php -%%IMPDIR%%/spelling.php -%%IMPDIR%%/stationery.php -%%IMPDIR%%/templates/.htaccess -%%IMPDIR%%/templates/acl/acl.inc -%%IMPDIR%%/templates/common-header.inc -%%IMPDIR%%/templates/compose/attachments.inc -%%IMPDIR%%/templates/compose/attachments.js -%%IMPDIR%%/templates/compose/compose.inc -%%IMPDIR%%/templates/compose/compose.js -%%IMPDIR%%/templates/compose/compose_expand.js -%%IMPDIR%%/templates/compose/encrypt_list.inc -%%IMPDIR%%/templates/compose/expand.inc -%%IMPDIR%%/templates/compose/recompose.inc -%%IMPDIR%%/templates/compose/redirect.inc -%%IMPDIR%%/templates/compose/spelling.inc -%%IMPDIR%%/templates/compose/spelling.js -%%IMPDIR%%/templates/compose/success.inc -%%IMPDIR%%/templates/contacts/contacts.inc -%%IMPDIR%%/templates/fetchmail/account_select.inc -%%IMPDIR%%/templates/fetchmail/driver_select.inc -%%IMPDIR%%/templates/fetchmail/fetchmail.inc -%%IMPDIR%%/templates/fetchmail/manage.inc -%%IMPDIR%%/templates/fetchmail/top.inc -%%IMPDIR%%/templates/filters/notactive.inc -%%IMPDIR%%/templates/filters/prefs.inc -%%IMPDIR%%/templates/folders/actions.inc -%%IMPDIR%%/templates/folders/folders.html -%%IMPDIR%%/templates/folders/folders_confirm.html -%%IMPDIR%%/templates/folders/foot.inc -%%IMPDIR%%/templates/folders/head.inc -%%IMPDIR%%/templates/folders/import.inc -%%IMPDIR%%/templates/javascript/addressesBlocks.js -%%IMPDIR%%/templates/javascript/folders.js -%%IMPDIR%%/templates/javascript/popup.js -%%IMPDIR%%/templates/login/login.inc -%%IMPDIR%%/templates/mailbox/actions.inc -%%IMPDIR%%/templates/mailbox/actions_deleted.inc -%%IMPDIR%%/templates/mailbox/alert.inc -%%IMPDIR%%/templates/mailbox/empty_mailbox.inc -%%IMPDIR%%/templates/mailbox/footer.inc -%%IMPDIR%%/templates/mailbox/header.inc -%%IMPDIR%%/templates/mailbox/javascript.inc -%%IMPDIR%%/templates/mailbox/legend.inc -%%IMPDIR%%/templates/mailbox/mailbox.html -%%IMPDIR%%/templates/mailbox/message_footers.inc -%%IMPDIR%%/templates/mailbox/message_headers.inc -%%IMPDIR%%/templates/mailbox/navbar.inc -%%IMPDIR%%/templates/mailbox/searchfolder.inc -%%IMPDIR%%/templates/menu.inc -%%IMPDIR%%/templates/message/headers.inc -%%IMPDIR%%/templates/message/javascript.inc -%%IMPDIR%%/templates/message/message.inc -%%IMPDIR%%/templates/message/navbar_actions.inc -%%IMPDIR%%/templates/message/navbar_navigate.inc -%%IMPDIR%%/templates/message/navbar_top.inc -%%IMPDIR%%/templates/pgp/import_key.inc -%%IMPDIR%%/templates/pgp/notactive.inc -%%IMPDIR%%/templates/pgp/passphrase.inc -%%IMPDIR%%/templates/pgp/pgp.inc -%%IMPDIR%%/templates/prefs/defaultsearchselect.inc -%%IMPDIR%%/templates/prefs/encryptselect.inc -%%IMPDIR%%/templates/prefs/folderselect.inc -%%IMPDIR%%/templates/prefs/initialpageselect.inc -%%IMPDIR%%/templates/prefs/sentmailselect.inc -%%IMPDIR%%/templates/prefs/sourceselect.inc -%%IMPDIR%%/templates/prefs/spamselect.inc -%%IMPDIR%%/templates/prefs/trashselect.inc -%%IMPDIR%%/templates/quota/quota.inc -%%IMPDIR%%/templates/saveimage/saveimage.inc -%%IMPDIR%%/templates/search/fields.inc -%%IMPDIR%%/templates/search/header.inc -%%IMPDIR%%/templates/search/javascript.inc -%%IMPDIR%%/templates/search/main.inc -%%IMPDIR%%/templates/smime/import_key.inc -%%IMPDIR%%/templates/smime/notactive.inc -%%IMPDIR%%/templates/smime/passphrase.inc -%%IMPDIR%%/templates/smime/smime.inc -%%IMPDIR%%/templates/stationery/prefs.inc -%%IMPDIR%%/templates/thread/thread.html -%%IMPDIR%%/test.php -%%IMPDIR%%/themes/azur/screen.css -%%IMPDIR%%/themes/bluemoon/screen.css -%%IMPDIR%%/themes/bluewhite/screen.css -%%IMPDIR%%/themes/brown/screen.css -%%IMPDIR%%/themes/burntorange/screen.css -%%IMPDIR%%/themes/cherry/screen.css -%%IMPDIR%%/themes/cornflower/screen.css -%%IMPDIR%%/themes/gennevilliers/screen.css -%%IMPDIR%%/themes/graphics/addressbook_add.png -%%IMPDIR%%/themes/graphics/addressbook_browse.png -%%IMPDIR%%/themes/graphics/apple.png -%%IMPDIR%%/themes/graphics/attachment.png -%%IMPDIR%%/themes/graphics/audio/theetone.wav -%%IMPDIR%%/themes/graphics/compose.png -%%IMPDIR%%/themes/graphics/empty_spam.png -%%IMPDIR%%/themes/graphics/empty_trash.png -%%IMPDIR%%/themes/graphics/encrypted.png -%%IMPDIR%%/themes/graphics/expand.png -%%IMPDIR%%/themes/graphics/favicon.ico -%%IMPDIR%%/themes/graphics/fetchmail.png -%%IMPDIR%%/themes/graphics/filters.png -%%IMPDIR%%/themes/graphics/folders/drafts.png -%%IMPDIR%%/themes/graphics/folders/folder.png -%%IMPDIR%%/themes/graphics/folders/folder_open.png -%%IMPDIR%%/themes/graphics/folders/inbox.png -%%IMPDIR%%/themes/graphics/folders/sent.png -%%IMPDIR%%/themes/graphics/folders/trash.png -%%IMPDIR%%/themes/graphics/imp.png -%%IMPDIR%%/themes/graphics/mail_answered.png -%%IMPDIR%%/themes/graphics/mail_deleted.png -%%IMPDIR%%/themes/graphics/mail_draft.png -%%IMPDIR%%/themes/graphics/mail_flagged.png -%%IMPDIR%%/themes/graphics/mail_forwarded.png -%%IMPDIR%%/themes/graphics/mail_personal.png -%%IMPDIR%%/themes/graphics/mail_priority_high.png -%%IMPDIR%%/themes/graphics/mail_priority_low.png -%%IMPDIR%%/themes/graphics/mail_unseen.png -%%IMPDIR%%/themes/graphics/manage_attachments.png -%%IMPDIR%%/themes/graphics/mime/binary.png -%%IMPDIR%%/themes/graphics/mime/compressed.png -%%IMPDIR%%/themes/graphics/mime/encryption.png -%%IMPDIR%%/themes/graphics/mime/html.png -%%IMPDIR%%/themes/graphics/mime/image.png -%%IMPDIR%%/themes/graphics/mime/itip.png -%%IMPDIR%%/themes/graphics/mime/mail.png -%%IMPDIR%%/themes/graphics/mime/text.png -%%IMPDIR%%/themes/graphics/newmail.png -%%IMPDIR%%/themes/graphics/shared.png -%%IMPDIR%%/themes/graphics/signed.png -%%IMPDIR%%/themes/graphics/spacer_red.png -%%IMPDIR%%/themes/graphics/spellcheck.png -%%IMPDIR%%/themes/green/screen.css -%%IMPDIR%%/themes/grey/screen.css -%%IMPDIR%%/themes/lavander/screen.css -%%IMPDIR%%/themes/luc/screen.css -%%IMPDIR%%/themes/lucblue/screen.css -%%IMPDIR%%/themes/postnuke/screen.css -%%IMPDIR%%/themes/rtl.css -%%IMPDIR%%/themes/screen.css -%%IMPDIR%%/themes/simplex/screen.css -%%IMPDIR%%/themes/sun/screen.css -%%IMPDIR%%/thread.php -%%IMPDIR%%/view.php -@dirrm %%IMPDIR%%/themes/sun -@dirrm %%IMPDIR%%/themes/simplex -@dirrm %%IMPDIR%%/themes/postnuke -@dirrm %%IMPDIR%%/themes/lucblue -@dirrm %%IMPDIR%%/themes/luc -@dirrm %%IMPDIR%%/themes/lavander -@dirrm %%IMPDIR%%/themes/graphics/mime -@dirrm %%IMPDIR%%/themes/graphics/folders -@dirrm %%IMPDIR%%/themes/graphics/audio -@dirrm %%IMPDIR%%/themes/graphics -@dirrm %%IMPDIR%%/themes/grey -@dirrm %%IMPDIR%%/themes/green -@dirrm %%IMPDIR%%/themes/gennevilliers -@dirrm %%IMPDIR%%/themes/cornflower -@dirrm %%IMPDIR%%/themes/cherry -@dirrm %%IMPDIR%%/themes/burntorange -@dirrm %%IMPDIR%%/themes/brown -@dirrm %%IMPDIR%%/themes/bluewhite -@dirrm %%IMPDIR%%/themes/bluemoon -@dirrm %%IMPDIR%%/themes/azur -@dirrm %%IMPDIR%%/themes -@dirrm %%IMPDIR%%/templates/thread -@dirrm %%IMPDIR%%/templates/stationery -@dirrm %%IMPDIR%%/templates/smime -@dirrm %%IMPDIR%%/templates/search -@dirrm %%IMPDIR%%/templates/saveimage -@dirrm %%IMPDIR%%/templates/quota -@dirrm %%IMPDIR%%/templates/prefs -@dirrm %%IMPDIR%%/templates/pgp -@dirrm %%IMPDIR%%/templates/message -@dirrm %%IMPDIR%%/templates/mailbox -@dirrm %%IMPDIR%%/templates/login -@dirrm %%IMPDIR%%/templates/javascript -@dirrm %%IMPDIR%%/templates/folders -@dirrm %%IMPDIR%%/templates/filters -@dirrm %%IMPDIR%%/templates/fetchmail -@dirrm %%IMPDIR%%/templates/contacts -@dirrm %%IMPDIR%%/templates/compose -@dirrm %%IMPDIR%%/templates/acl -@dirrm %%IMPDIR%%/templates -@dirrm %%IMPDIR%%/scripts -@dirrm %%IMPDIR%%/po -@dirrm %%IMPDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/zh_TW -@dirrm %%IMPDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/zh_CN -@dirrm %%IMPDIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/uk_UA -@dirrm %%IMPDIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/tr_TR -@dirrm %%IMPDIR%%/locale/th_TH/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/th_TH -@dirrm %%IMPDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/sv_SE -@dirrm %%IMPDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/sl_SI -@dirrm %%IMPDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/sk_SK -@dirrm %%IMPDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ru_RU -@dirrm %%IMPDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ro_RO -@dirrm %%IMPDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/pt_PT -@dirrm %%IMPDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/pt_BR -@dirrm %%IMPDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/pl_PL -@dirrm %%IMPDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/nn_NO -@dirrm %%IMPDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/nl_NL -@dirrm %%IMPDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/nb_NO -@dirrm %%IMPDIR%%/locale/mk_MK/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/mk_MK -@dirrm %%IMPDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/lv_LV -@dirrm %%IMPDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/lt_LT -@dirrm %%IMPDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ko_KR -@dirrm %%IMPDIR%%/locale/km_KH/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/km_KH -@dirrm %%IMPDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ja_JP -@dirrm %%IMPDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/it_IT -@dirrm %%IMPDIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/is_IS -@dirrm %%IMPDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/id_ID -@dirrm %%IMPDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/hu_HU -@dirrm %%IMPDIR%%/locale/he_IL/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/he_IL -@dirrm %%IMPDIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/gl_ES -@dirrm %%IMPDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/fr_FR -@dirrm %%IMPDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/fi_FI -@dirrm %%IMPDIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/fa_IR -@dirrm %%IMPDIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/et_EE -@dirrm %%IMPDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/es_ES -@dirrm %%IMPDIR%%/locale/en_US -@dirrm %%IMPDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/el_GR -@dirrm %%IMPDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/de_DE -@dirrm %%IMPDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/da_DK -@dirrm %%IMPDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/cs_CZ -@dirrm %%IMPDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ca_ES -@dirrm %%IMPDIR%%/locale/bs_BA/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/bs_BA -@dirrm %%IMPDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/bg_BG -@dirrm %%IMPDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ar_SY -@dirrm %%IMPDIR%%/locale/ar_OM/LC_MESSAGES -@dirrm %%IMPDIR%%/locale/ar_OM -@dirrm %%IMPDIR%%/locale -@dirrm %%IMPDIR%%/lib/Quota -@dirrm %%IMPDIR%%/lib/Notification/Listener -@dirrm %%IMPDIR%%/lib/Notification -@dirrm %%IMPDIR%%/lib/Maintenance/Task -@dirrm %%IMPDIR%%/lib/Maintenance -@dirrm %%IMPDIR%%/lib/MIME/Viewer -@dirrm %%IMPDIR%%/lib/MIME -@dirrm %%IMPDIR%%/lib/Identity -@dirrm %%IMPDIR%%/lib/IMAP -@dirrm %%IMPDIR%%/lib/Fetchmail -@dirrm %%IMPDIR%%/lib/Crypt -@dirrm %%IMPDIR%%/lib/Block -@dirrm %%IMPDIR%%/lib/Auth -@dirrm %%IMPDIR%%/lib -@dirrm %%IMPDIR%%/js -@dirrmtry %%IMPDIR%%/config -@dirrmtry %%IMPDIR%% +%%HORDIR%%/acl.php +%%HORDIR%%/attachment.php +%%HORDIR%%/compose.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/filter.txt.dist +%%HORDIR%%/config/header.php.dist +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/motd.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/servers.php.dist +%%HORDIR%%/config/trailer.txt.dist +%%HORDIR%%/contacts.php +%%HORDIR%%/expand.php +%%HORDIR%%/fetchmail.php +%%HORDIR%%/fetchmailprefs.php +%%HORDIR%%/filterprefs.php +%%HORDIR%%/folders.php +%%HORDIR%%/index.php +%%HORDIR%%/js/ieEscGuard.js +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Auth/imp.php +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Block/tree_folders.php +%%HORDIR%%/lib/Compose.php +%%HORDIR%%/lib/Crypt/PGP.php +%%HORDIR%%/lib/Crypt/SMIME.php +%%HORDIR%%/lib/Fetchmail/imap.php +%%HORDIR%%/lib/Fetchmail.php +%%HORDIR%%/lib/Filter.php +%%HORDIR%%/lib/Folder.php +%%HORDIR%%/lib/IMAP/Client.php +%%HORDIR%%/lib/IMAP/Search.php +%%HORDIR%%/lib/IMAP/Sort.php +%%HORDIR%%/lib/IMAP/Thread.php +%%HORDIR%%/lib/IMAP/Tree.php +%%HORDIR%%/lib/IMAP.php +%%HORDIR%%/lib/IMP.php +%%HORDIR%%/lib/Identity/imp.php +%%HORDIR%%/lib/MIME/Contents.php +%%HORDIR%%/lib/MIME/Headers.php +%%HORDIR%%/lib/MIME/Viewer/alternative.php +%%HORDIR%%/lib/MIME/Viewer/appledouble.php +%%HORDIR%%/lib/MIME/Viewer/enriched.php +%%HORDIR%%/lib/MIME/Viewer/html.php +%%HORDIR%%/lib/MIME/Viewer/images.php +%%HORDIR%%/lib/MIME/Viewer/itip.php +%%HORDIR%%/lib/MIME/Viewer/multipart.php +%%HORDIR%%/lib/MIME/Viewer/notification.php +%%HORDIR%%/lib/MIME/Viewer/partial.php +%%HORDIR%%/lib/MIME/Viewer/pgp.php +%%HORDIR%%/lib/MIME/Viewer/pkcs7.php +%%HORDIR%%/lib/MIME/Viewer/plain.php +%%HORDIR%%/lib/MIME/Viewer/related.php +%%HORDIR%%/lib/MIME/Viewer/rfc822.php +%%HORDIR%%/lib/MIME/Viewer/status.php +%%HORDIR%%/lib/MIME/Viewer/tnef.php +%%HORDIR%%/lib/MIME/Viewer/zip.php +%%HORDIR%%/lib/Mailbox.php +%%HORDIR%%/lib/Maillog.php +%%HORDIR%%/lib/Maintenance/Task/delete_attachments_monthly.php +%%HORDIR%%/lib/Maintenance/Task/delete_sentmail_monthly.php +%%HORDIR%%/lib/Maintenance/Task/fetchmail_login.php +%%HORDIR%%/lib/Maintenance/Task/purge_trash.php +%%HORDIR%%/lib/Maintenance/Task/rename_sentmail_monthly.php +%%HORDIR%%/lib/Maintenance/Task/tos_agreement.php +%%HORDIR%%/lib/Maintenance/imp.php +%%HORDIR%%/lib/Message.php +%%HORDIR%%/lib/Notification/Listener/status.php +%%HORDIR%%/lib/Quota/command.php +%%HORDIR%%/lib/Quota/courier.php +%%HORDIR%%/lib/Quota/cyrus.php +%%HORDIR%%/lib/Quota/logfile.php +%%HORDIR%%/lib/Quota/mdaemon.php +%%HORDIR%%/lib/Quota/mercury32.php +%%HORDIR%%/lib/Quota.php +%%HORDIR%%/lib/Search.php +%%HORDIR%%/lib/Session.php +%%HORDIR%%/lib/Spam.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/ar_OM/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/bs_BA/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/cs_CZ/help.xml +%%HORDIR%%/locale/da_DK/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/da_DK/help.xml +%%HORDIR%%/locale/de_DE/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/el_GR/help.xml +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/et_EE/help.xml +%%HORDIR%%/locale/fa_IR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/fa_IR/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/gl_ES/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/he_IL/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/id_ID/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/is_IS/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/it_IT/help.xml +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/km_KH/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ko_KR/help.xml +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/mk_MK/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/nb_NO/help.xml +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/nl_NL/help.xml +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pl_PL/help.xml +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/pt_PT/help.xml +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/ru_RU/help.xml +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/sv_SE/help.xml +%%HORDIR%%/locale/th_TH/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/uk_UA/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/uk_UA/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/zh_CN/help.xml +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/imp.mo +%%HORDIR%%/locale/zh_TW/help.xml +%%HORDIR%%/login.php +%%HORDIR%%/mailbox.php +%%HORDIR%%/message.php +%%HORDIR%%/pgp.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_OM.po +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/bs_BA.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fa_IR.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gl_ES.po +%%HORDIR%%/po/he_IL.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/id_ID.po +%%HORDIR%%/po/imp.pot +%%HORDIR%%/po/is_IS.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/km_KH.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mk_MK.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/th_TH.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/uk_UA.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/recompose.php +%%HORDIR%%/redirect.php +%%HORDIR%%/saveimage.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/Imp.reg +%%HORDIR%%/scripts/custom_login.php +%%HORDIR%%/search.php +%%HORDIR%%/smime.php +%%HORDIR%%/spelling.php +%%HORDIR%%/stationery.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/acl/acl.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/compose/attachments.inc +%%HORDIR%%/templates/compose/attachments.js +%%HORDIR%%/templates/compose/compose.inc +%%HORDIR%%/templates/compose/compose.js +%%HORDIR%%/templates/compose/compose_expand.js +%%HORDIR%%/templates/compose/encrypt_list.inc +%%HORDIR%%/templates/compose/expand.inc +%%HORDIR%%/templates/compose/recompose.inc +%%HORDIR%%/templates/compose/redirect.inc +%%HORDIR%%/templates/compose/spelling.inc +%%HORDIR%%/templates/compose/spelling.js +%%HORDIR%%/templates/compose/success.inc +%%HORDIR%%/templates/contacts/contacts.inc +%%HORDIR%%/templates/fetchmail/account_select.inc +%%HORDIR%%/templates/fetchmail/driver_select.inc +%%HORDIR%%/templates/fetchmail/fetchmail.inc +%%HORDIR%%/templates/fetchmail/manage.inc +%%HORDIR%%/templates/fetchmail/top.inc +%%HORDIR%%/templates/filters/notactive.inc +%%HORDIR%%/templates/filters/prefs.inc +%%HORDIR%%/templates/folders/actions.inc +%%HORDIR%%/templates/folders/folders.html +%%HORDIR%%/templates/folders/folders_confirm.html +%%HORDIR%%/templates/folders/foot.inc +%%HORDIR%%/templates/folders/head.inc +%%HORDIR%%/templates/folders/import.inc +%%HORDIR%%/templates/javascript/addressesBlocks.js +%%HORDIR%%/templates/javascript/folders.js +%%HORDIR%%/templates/javascript/popup.js +%%HORDIR%%/templates/login/login.inc +%%HORDIR%%/templates/mailbox/actions.inc +%%HORDIR%%/templates/mailbox/actions_deleted.inc +%%HORDIR%%/templates/mailbox/alert.inc +%%HORDIR%%/templates/mailbox/empty_mailbox.inc +%%HORDIR%%/templates/mailbox/footer.inc +%%HORDIR%%/templates/mailbox/header.inc +%%HORDIR%%/templates/mailbox/javascript.inc +%%HORDIR%%/templates/mailbox/legend.inc +%%HORDIR%%/templates/mailbox/mailbox.html +%%HORDIR%%/templates/mailbox/message_footers.inc +%%HORDIR%%/templates/mailbox/message_headers.inc +%%HORDIR%%/templates/mailbox/navbar.inc +%%HORDIR%%/templates/mailbox/searchfolder.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/message/headers.inc +%%HORDIR%%/templates/message/javascript.inc +%%HORDIR%%/templates/message/message.inc +%%HORDIR%%/templates/message/navbar_actions.inc +%%HORDIR%%/templates/message/navbar_navigate.inc +%%HORDIR%%/templates/message/navbar_top.inc +%%HORDIR%%/templates/pgp/import_key.inc +%%HORDIR%%/templates/pgp/notactive.inc +%%HORDIR%%/templates/pgp/passphrase.inc +%%HORDIR%%/templates/pgp/pgp.inc +%%HORDIR%%/templates/prefs/defaultsearchselect.inc +%%HORDIR%%/templates/prefs/encryptselect.inc +%%HORDIR%%/templates/prefs/folderselect.inc +%%HORDIR%%/templates/prefs/initialpageselect.inc +%%HORDIR%%/templates/prefs/sentmailselect.inc +%%HORDIR%%/templates/prefs/sourceselect.inc +%%HORDIR%%/templates/prefs/spamselect.inc +%%HORDIR%%/templates/prefs/trashselect.inc +%%HORDIR%%/templates/quota/quota.inc +%%HORDIR%%/templates/saveimage/saveimage.inc +%%HORDIR%%/templates/search/fields.inc +%%HORDIR%%/templates/search/header.inc +%%HORDIR%%/templates/search/javascript.inc +%%HORDIR%%/templates/search/main.inc +%%HORDIR%%/templates/smime/import_key.inc +%%HORDIR%%/templates/smime/notactive.inc +%%HORDIR%%/templates/smime/passphrase.inc +%%HORDIR%%/templates/smime/smime.inc +%%HORDIR%%/templates/stationery/prefs.inc +%%HORDIR%%/templates/thread/thread.html +%%HORDIR%%/test.php +%%HORDIR%%/themes/azur/screen.css +%%HORDIR%%/themes/bluemoon/screen.css +%%HORDIR%%/themes/bluewhite/screen.css +%%HORDIR%%/themes/brown/screen.css +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/cherry/screen.css +%%HORDIR%%/themes/cornflower/screen.css +%%HORDIR%%/themes/gennevilliers/screen.css +%%HORDIR%%/themes/graphics/addressbook_add.png +%%HORDIR%%/themes/graphics/addressbook_browse.png +%%HORDIR%%/themes/graphics/apple.png +%%HORDIR%%/themes/graphics/attachment.png +%%HORDIR%%/themes/graphics/audio/theetone.wav +%%HORDIR%%/themes/graphics/compose.png +%%HORDIR%%/themes/graphics/empty_spam.png +%%HORDIR%%/themes/graphics/empty_trash.png +%%HORDIR%%/themes/graphics/encrypted.png +%%HORDIR%%/themes/graphics/expand.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/fetchmail.png +%%HORDIR%%/themes/graphics/filters.png +%%HORDIR%%/themes/graphics/folders/drafts.png +%%HORDIR%%/themes/graphics/folders/folder.png +%%HORDIR%%/themes/graphics/folders/folder_open.png +%%HORDIR%%/themes/graphics/folders/inbox.png +%%HORDIR%%/themes/graphics/folders/sent.png +%%HORDIR%%/themes/graphics/folders/trash.png +%%HORDIR%%/themes/graphics/imp.png +%%HORDIR%%/themes/graphics/mail_answered.png +%%HORDIR%%/themes/graphics/mail_deleted.png +%%HORDIR%%/themes/graphics/mail_draft.png +%%HORDIR%%/themes/graphics/mail_flagged.png +%%HORDIR%%/themes/graphics/mail_forwarded.png +%%HORDIR%%/themes/graphics/mail_personal.png +%%HORDIR%%/themes/graphics/mail_priority_high.png +%%HORDIR%%/themes/graphics/mail_priority_low.png +%%HORDIR%%/themes/graphics/mail_unseen.png +%%HORDIR%%/themes/graphics/manage_attachments.png +%%HORDIR%%/themes/graphics/mime/binary.png +%%HORDIR%%/themes/graphics/mime/compressed.png +%%HORDIR%%/themes/graphics/mime/encryption.png +%%HORDIR%%/themes/graphics/mime/html.png +%%HORDIR%%/themes/graphics/mime/image.png +%%HORDIR%%/themes/graphics/mime/itip.png +%%HORDIR%%/themes/graphics/mime/mail.png +%%HORDIR%%/themes/graphics/mime/text.png +%%HORDIR%%/themes/graphics/newmail.png +%%HORDIR%%/themes/graphics/shared.png +%%HORDIR%%/themes/graphics/signed.png +%%HORDIR%%/themes/graphics/spacer_red.png +%%HORDIR%%/themes/graphics/spellcheck.png +%%HORDIR%%/themes/green/screen.css +%%HORDIR%%/themes/grey/screen.css +%%HORDIR%%/themes/lavander/screen.css +%%HORDIR%%/themes/luc/screen.css +%%HORDIR%%/themes/lucblue/screen.css +%%HORDIR%%/themes/postnuke/screen.css +%%HORDIR%%/themes/rtl.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/themes/simplex/screen.css +%%HORDIR%%/themes/sun/screen.css +%%HORDIR%%/thread.php +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Auth +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Crypt +@dirrm %%HORDIR%%/lib/Fetchmail +@dirrm %%HORDIR%%/lib/IMAP +@dirrm %%HORDIR%%/lib/Identity +@dirrm %%HORDIR%%/lib/MIME/Viewer +@dirrm %%HORDIR%%/lib/MIME +@dirrm %%HORDIR%%/lib/Maintenance/Task +@dirrm %%HORDIR%%/lib/Maintenance +@dirrm %%HORDIR%%/lib/Notification/Listener +@dirrm %%HORDIR%%/lib/Notification +@dirrm %%HORDIR%%/lib/Quota +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_OM/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_OM +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/bs_BA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bs_BA +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fa_IR +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/gl_ES +@dirrm %%HORDIR%%/locale/he_IL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/he_IL +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDIR%%/locale/id_ID +@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%HORDIR%%/locale/is_IS +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/km_KH/LC_MESSAGES +@dirrm %%HORDIR%%/locale/km_KH +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/mk_MK +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/th_TH/LC_MESSAGES +@dirrm %%HORDIR%%/locale/th_TH +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/uk_UA +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/acl +@dirrm %%HORDIR%%/templates/compose +@dirrm %%HORDIR%%/templates/contacts +@dirrm %%HORDIR%%/templates/fetchmail +@dirrm %%HORDIR%%/templates/filters +@dirrm %%HORDIR%%/templates/folders +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/login +@dirrm %%HORDIR%%/templates/mailbox +@dirrm %%HORDIR%%/templates/message +@dirrm %%HORDIR%%/templates/pgp +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/quota +@dirrm %%HORDIR%%/templates/saveimage +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/smime +@dirrm %%HORDIR%%/templates/stationery +@dirrm %%HORDIR%%/templates/thread +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/azur +@dirrm %%HORDIR%%/themes/bluemoon +@dirrm %%HORDIR%%/themes/bluewhite +@dirrm %%HORDIR%%/themes/brown +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/cherry +@dirrm %%HORDIR%%/themes/cornflower +@dirrm %%HORDIR%%/themes/gennevilliers +@dirrm %%HORDIR%%/themes/graphics/audio +@dirrm %%HORDIR%%/themes/graphics/folders +@dirrm %%HORDIR%%/themes/graphics/mime +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/green +@dirrm %%HORDIR%%/themes/grey +@dirrm %%HORDIR%%/themes/lavander +@dirrm %%HORDIR%%/themes/luc +@dirrm %%HORDIR%%/themes/lucblue +@dirrm %%HORDIR%%/themes/postnuke +@dirrm %%HORDIR%%/themes/simplex +@dirrm %%HORDIR%%/themes/sun +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/ingo/Makefile b/mail/ingo/Makefile index eb94e51a0363..a17b4d34104f 100644 --- a/mail/ingo/Makefile +++ b/mail/ingo/Makefile @@ -7,10 +7,8 @@ PORTNAME= ingo PORTVERSION= 1.1.3 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Horde's email-filter management application @@ -22,63 +20,14 @@ COMMENT= Horde's email-filter management application # #----------------------------------------------------------------------- -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes -USE_PHP= imap -USE_GETTEXT= yes - -PLIST_SUB= INGODIR=${LINGODIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= INGODIR=${INGODIR} - -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO -CONFFILE= backends.php fields.php prefs.php -SUB_DIRS= config lib locale po scripts templates themes js - -LHORDEDIR?= www/horde -LINGODIR= ${LHORDEDIR}/ingo -PEARDIR?= ${LOCALBASE}/share/pear - -INGODIR= ${PREFIX}/${LINGODIR} -CONFDIR= ${INGODIR}/config - -.include <bsd.port.pre.mk> - .if defined(WITH_SIEVE) || exists(${LOCALBASE}/cyrus/bin/timsieved) RUN_DEPENDS+= ${PEARDIR}/Net/Sieve.php:${PORTSDIR}/net/pear-Net_Sieve .endif -post-patch: - @${FIND} ${WRKSRC} -name "*.orig" -delete - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -do-install: - @${INSTALL} -d ${INGODIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${INGODIR}/ - @${CP} -p ${WRKSRC}/*.php ${INGODIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${INGODIR}/ - @${CHMOD} -R o-rwx ${CONFDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${INGODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${CONFDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} +USE_PHP= imap +USE_HORDE= base pkg-message +USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/ingo/files/pkg-deinstall.in b/mail/ingo/files/pkg-deinstall.in deleted file mode 100644 index 9d8d08de9224..000000000000 --- a/mail/ingo/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Ingo config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%INGODIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/ingo/files/pkg-install.in b/mail/ingo/files/pkg-install.in deleted file mode 100644 index 3a7bcda4b76a..000000000000 --- a/mail/ingo/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%INGODIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/ingo/files/pkg-message.in b/mail/ingo/files/pkg-message.in deleted file mode 100644 index 0a1a920d3516..000000000000 --- a/mail/ingo/files/pkg-message.in +++ /dev/null @@ -1,10 +0,0 @@ -************************************************************************ -Ingo has been installed in %%INGODIR%% with your blank -configuration files. - -Horde must be configured; if not, see `pkg_info -D -x horde'. - -Finally, you must login to Horde as a Horde Administrator to finish the -configuration. - -************************************************************************ diff --git a/mail/ingo/pkg-plist b/mail/ingo/pkg-plist index e54f8e1a2cf8..5e6d04751680 100644 --- a/mail/ingo/pkg-plist +++ b/mail/ingo/pkg-plist @@ -1,195 +1,196 @@ -%%INGODIR%%/blacklist.php -%%INGODIR%%/config/.htaccess -%%INGODIR%%/config/backends.php.dist -%%INGODIR%%/config/conf.xml -%%INGODIR%%/config/fields.php.dist -%%INGODIR%%/config/prefs.php.dist -%%INGODIR%%/filters.php -%%INGODIR%%/forward.php -%%INGODIR%%/index.php -%%INGODIR%%/js/stripe.js -%%INGODIR%%/lib/Block/overview.php -%%INGODIR%%/lib/Driver.php -%%INGODIR%%/lib/Driver/ldap.php -%%INGODIR%%/lib/Driver/null.php -%%INGODIR%%/lib/Driver/timsieved.php -%%INGODIR%%/lib/Driver/vfs.php -%%INGODIR%%/lib/IMAP/Search.php -%%INGODIR%%/lib/Ingo.php -%%INGODIR%%/lib/Script.php -%%INGODIR%%/lib/Script/imap.php -%%INGODIR%%/lib/Script/maildrop.php -%%INGODIR%%/lib/Script/procmail.php -%%INGODIR%%/lib/Script/sieve.php -%%INGODIR%%/lib/Session.php -%%INGODIR%%/lib/Storage.php -%%INGODIR%%/lib/Storage/prefs.php -%%INGODIR%%/lib/api.php -%%INGODIR%%/lib/base.php -%%INGODIR%%/lib/version.php -%%INGODIR%%/locale/ca_ES/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/ca_ES/help.xml -%%INGODIR%%/locale/cs_CZ/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/da_DK/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/de_DE/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/de_DE/help.xml -%%INGODIR%%/locale/en_US/help.xml -%%INGODIR%%/locale/el_GR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/es_ES/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/es_ES/help.xml -%%INGODIR%%/locale/et_EE/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/fi_FI/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/fi_FI/help.xml -%%INGODIR%%/locale/fr_FR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/fr_FR/help.xml -%%INGODIR%%/locale/hu_HU/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/it_IT/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/ko_KR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/lt_LT/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/lv_LV/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/lv_LV/help.xml -%%INGODIR%%/locale/nb_NO/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/nl_NL/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/pl_PL/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/pt_BR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/pt_PT/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/ro_RO/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/sl_SI/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/sv_SE/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/tr_TR/LC_MESSAGES/ingo.mo -%%INGODIR%%/locale/zh_TW/LC_MESSAGES/ingo.mo -%%INGODIR%%/po/README -%%INGODIR%%/po/ca_ES.po -%%INGODIR%%/po/cs_CZ.po -%%INGODIR%%/po/da_DK.po -%%INGODIR%%/po/de_DE.po -%%INGODIR%%/po/el_GR.po -%%INGODIR%%/po/es_ES.po -%%INGODIR%%/po/et_EE.po -%%INGODIR%%/po/fi_FI.po -%%INGODIR%%/po/fr_FR.po -%%INGODIR%%/po/hu_HU.po -%%INGODIR%%/po/ingo.pot -%%INGODIR%%/po/it_IT.po -%%INGODIR%%/po/ko_KR.po -%%INGODIR%%/po/lt_LT.po -%%INGODIR%%/po/lv_LV.po -%%INGODIR%%/po/nb_NO.po -%%INGODIR%%/po/nl_NL.po -%%INGODIR%%/po/pl_PL.po -%%INGODIR%%/po/pt_BR.po -%%INGODIR%%/po/pt_PT.po -%%INGODIR%%/po/ro_RO.po -%%INGODIR%%/po/sl_SI.po -%%INGODIR%%/po/sv_SE.po -%%INGODIR%%/po/tr_TR.po -%%INGODIR%%/po/zh_TW.po -%%INGODIR%%/rule.php -%%INGODIR%%/script.php -%%INGODIR%%/scripts/.htaccess -%%INGODIR%%/scripts/convert_imp_filters.php -%%INGODIR%%/templates/blacklist/blacklist.inc -%%INGODIR%%/templates/common-header.inc -%%INGODIR%%/templates/filters/filter-none.inc -%%INGODIR%%/templates/filters/filter.html -%%INGODIR%%/templates/filters/footer.inc -%%INGODIR%%/templates/filters/header.inc -%%INGODIR%%/templates/filters/settings.inc -%%INGODIR%%/templates/forward/forward.inc -%%INGODIR%%/templates/javascript/new_folder.js -%%INGODIR%%/templates/menu.inc -%%INGODIR%%/templates/rule/filter.inc -%%INGODIR%%/templates/rule/footer.inc -%%INGODIR%%/templates/rule/header.inc -%%INGODIR%%/templates/script/activate.inc -%%INGODIR%%/templates/script/footer.inc -%%INGODIR%%/templates/script/header.inc -%%INGODIR%%/templates/script/script.inc -%%INGODIR%%/templates/vacation/vacation.inc -%%INGODIR%%/templates/whitelist/whitelist.inc -%%INGODIR%%/test.php -%%INGODIR%%/themes/graphics/blacklist.png -%%INGODIR%%/themes/graphics/copy.png -%%INGODIR%%/themes/graphics/disable.png -%%INGODIR%%/themes/graphics/enable.png -%%INGODIR%%/themes/graphics/favicon.ico -%%INGODIR%%/themes/graphics/forward.png -%%INGODIR%%/themes/graphics/ingo.png -%%INGODIR%%/themes/graphics/script.png -%%INGODIR%%/themes/graphics/vacation.png -%%INGODIR%%/themes/graphics/whitelist.png -%%INGODIR%%/themes/screen.css -%%INGODIR%%/vacation.php -%%INGODIR%%/whitelist.php -@dirrm %%INGODIR%%/themes/graphics -@dirrm %%INGODIR%%/themes -@dirrm %%INGODIR%%/templates/whitelist -@dirrm %%INGODIR%%/templates/vacation -@dirrm %%INGODIR%%/templates/script -@dirrm %%INGODIR%%/templates/rule -@dirrm %%INGODIR%%/templates/javascript -@dirrm %%INGODIR%%/templates/forward -@dirrm %%INGODIR%%/templates/filters -@dirrm %%INGODIR%%/templates/blacklist -@dirrm %%INGODIR%%/templates -@dirrm %%INGODIR%%/scripts -@dirrm %%INGODIR%%/po -@dirrm %%INGODIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%INGODIR%%/locale/zh_TW -@dirrm %%INGODIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/tr_TR -@dirrm %%INGODIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%INGODIR%%/locale/sv_SE -@dirrm %%INGODIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%INGODIR%%/locale/sl_SI -@dirrm %%INGODIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%INGODIR%%/locale/ro_RO -@dirrm %%INGODIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%INGODIR%%/locale/pt_PT -@dirrm %%INGODIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/pt_BR -@dirrm %%INGODIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%INGODIR%%/locale/pl_PL -@dirrm %%INGODIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%INGODIR%%/locale/nl_NL -@dirrm %%INGODIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%INGODIR%%/locale/nb_NO -@dirrm %%INGODIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%INGODIR%%/locale/lv_LV -@dirrm %%INGODIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%INGODIR%%/locale/lt_LT -@dirrm %%INGODIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/ko_KR -@dirrm %%INGODIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%INGODIR%%/locale/it_IT -@dirrm %%INGODIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%INGODIR%%/locale/hu_HU -@dirrm %%INGODIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/fr_FR -@dirrm %%INGODIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%INGODIR%%/locale/fi_FI -@dirrm %%INGODIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%INGODIR%%/locale/et_EE -@dirrm %%INGODIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%INGODIR%%/locale/es_ES -@dirrm %%INGODIR%%/locale/en_US -@dirrm %%INGODIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%INGODIR%%/locale/el_GR -@dirrm %%INGODIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%INGODIR%%/locale/de_DE -@dirrm %%INGODIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%INGODIR%%/locale/da_DK -@dirrm %%INGODIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%INGODIR%%/locale/cs_CZ -@dirrm %%INGODIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%INGODIR%%/locale/ca_ES -@dirrm %%INGODIR%%/locale -@dirrm %%INGODIR%%/js -@dirrm %%INGODIR%%/lib/Storage -@dirrm %%INGODIR%%/lib/Script -@dirrm %%INGODIR%%/lib/IMAP -@dirrm %%INGODIR%%/lib/Driver -@dirrm %%INGODIR%%/lib/Block -@dirrm %%INGODIR%%/lib -@dirrmtry %%INGODIR%%/config -@dirrmtry %%INGODIR%% +%%HORDIR%%/blacklist.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/backends.php.dist +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/fields.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/filters.php +%%HORDIR%%/forward.php +%%HORDIR%%/index.php +%%HORDIR%%/js/stripe.js +%%HORDIR%%/lib/Block/overview.php +%%HORDIR%%/lib/Driver/ldap.php +%%HORDIR%%/lib/Driver/null.php +%%HORDIR%%/lib/Driver/timsieved.php +%%HORDIR%%/lib/Driver/vfs.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/IMAP/Search.php +%%HORDIR%%/lib/Ingo.php +%%HORDIR%%/lib/Script/imap.php +%%HORDIR%%/lib/Script/maildrop.php +%%HORDIR%%/lib/Script/procmail.php +%%HORDIR%%/lib/Script/sieve.php +%%HORDIR%%/lib/Script.php +%%HORDIR%%/lib/Session.php +%%HORDIR%%/lib/Storage/prefs.php +%%HORDIR%%/lib/Storage.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/ingo.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/ingo.mo +%%HORDIR%%/po/README +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/ingo.pot +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/rule.php +%%HORDIR%%/script.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/convert_imp_filters.php +%%HORDIR%%/templates/blacklist/blacklist.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/filters/filter-none.inc +%%HORDIR%%/templates/filters/filter.html +%%HORDIR%%/templates/filters/footer.inc +%%HORDIR%%/templates/filters/header.inc +%%HORDIR%%/templates/filters/settings.inc +%%HORDIR%%/templates/forward/forward.inc +%%HORDIR%%/templates/javascript/new_folder.js +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/rule/filter.inc +%%HORDIR%%/templates/rule/footer.inc +%%HORDIR%%/templates/rule/header.inc +%%HORDIR%%/templates/script/activate.inc +%%HORDIR%%/templates/script/footer.inc +%%HORDIR%%/templates/script/header.inc +%%HORDIR%%/templates/script/script.inc +%%HORDIR%%/templates/vacation/vacation.inc +%%HORDIR%%/templates/whitelist/whitelist.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/blacklist.png +%%HORDIR%%/themes/graphics/copy.png +%%HORDIR%%/themes/graphics/disable.png +%%HORDIR%%/themes/graphics/enable.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/forward.png +%%HORDIR%%/themes/graphics/ingo.png +%%HORDIR%%/themes/graphics/script.png +%%HORDIR%%/themes/graphics/vacation.png +%%HORDIR%%/themes/graphics/whitelist.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/vacation.php +%%HORDIR%%/whitelist.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/IMAP +@dirrm %%HORDIR%%/lib/Script +@dirrm %%HORDIR%%/lib/Storage +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/blacklist +@dirrm %%HORDIR%%/templates/filters +@dirrm %%HORDIR%%/templates/forward +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/rule +@dirrm %%HORDIR%%/templates/script +@dirrm %%HORDIR%%/templates/vacation +@dirrm %%HORDIR%%/templates/whitelist +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/mimp/Makefile b/mail/mimp/Makefile index 017f37710359..c8abd67b2b31 100644 --- a/mail/mimp/Makefile +++ b/mail/mimp/Makefile @@ -7,9 +7,7 @@ PORTNAME= mimp PORTVERSION= 1.0.1 -DISTVERSIONPREFIX= h3- CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= Mobile webmail system @@ -28,21 +26,6 @@ COMMENT= Mobile webmail system # - WITHOUT_SSL if you have not installed c-client WITH_SSL; # # - WITH_VALID_CERT if you own a valid SSL certificate; -# -# - WITH_IMAPSERVER if you want to depend on an IMAP server; -# -# or you can select to work with one of these servers: -# -# - WITH_CYRUS-IMAPD MIMP will work with cyrus-imapd; -# -# - WITH_IMAP-UW MIMP will work with imap-uw; -# -# - WITH_DOVECOT MIMP will work with dovecot; -# -# - WITH_COURIER-IMAP MIMP will work with courier-imap. -# -# These choices are mutually exclusive, and imap-uw is the default. -# #----------------------------------------------------------------------- RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL @@ -51,74 +34,18 @@ USE_PHP= imap . if !defined(WITHOUT_LDAP) USE_PHP+= ldap . endif - -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - .if !defined(WITHOUT_SMIME) USE_PHP+= openssl .endif - .if !defined(NOCRYPT) RUN_DEPENDS+= ${LOCALBASE}/bin/gpgv:${PORTSDIR}/security/gnupg1 .endif -NO_BUILD= yes -USE_APACHE= 1.3+ # needed to test APACHE_VERSION +USE_HORDE= base USE_GETTEXT= yes -REINPLACE_ARGS= -i.beforeMIMP - PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES -CONFFILE= filter.txt header.php menu.php mime_drivers.php motd.php \ - prefs.php servers.php trailer.txt conf.xml .htaccess -SUB_DIRS= config lib locale po templates themes - -LHORDEDIR?= www/horde -LMIMPDIR= ${LHORDEDIR}/mimp -PEARDIR?= ${LOCALBASE}/share/pear - -PLIST_SUB= MIMPDIR=${LMIMPDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= MIMPDIR=${MIMPDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} - -MIMPDIR= ${PREFIX}/${LMIMPDIR} -CONFDIR= ${MIMPDIR}/config - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h - -PATCH2RM= prefs.php.dist.orig servers.php.dist.orig - -.include <bsd.port.pre.mk> - -.if defined(WITH_IMAPSERVER) -. if defined(WITH_IMAP-UW) || exists(${LOCALBASE}/libexec/imapd) -RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw -. elif defined(WITH_CYRUS-IMAPD) || exists(${LOCALBASE}/cyrus/bin/master) -RUN_DEPENDS+= ${LOCALBASE}/cyrus/bin/master:${PORTSDIR}/mail/cyrus-imapd23 -. elif defined(WITH_COURIER-IMAP) || exists(${LOCALBASE}/bin/deliverquota) -RUN_DEPENDS+= ${LOCALBASE}/bin/deliverquota:${PORTSDIR}/mail/courier-imap -. elif defined(WITH_DOVECOT) || exists(${LOCALBASE}/libexec/dovecot/imap) -RUN_DEPENDS+= ${LOCALBASE}/libexec/dovecot/imap:${PORTSDIR}/mail/dovecot -. else -RUN_DEPENDS+= ${LOCALBASE}/libexec/imapd:${PORTSDIR}/mail/imap-uw -. endif -.endif - -.if ${APACHE_VERSION} >= 20 -HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes/ -.else -HORDE_INC= ${LOCALBASE}/etc/horde/ -.endif - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ pre-configure: - @${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml .if !defined(NOCRYPT) @${REINPLACE_CMD} -e "s:%%GPG%%:${LOCALBASE}/bin/gpg:" \ ${WRKSRC}/config/conf.xml @@ -142,8 +69,6 @@ pre-configure: ${WRKSRC}/config/servers.php.dist . endif .endif - @${SED} -e "s:/home/httpd/html/horde/mimp:${MIMPDIR}:" \ - ${FILESDIR}/httpd.conf.mimp > ${WRKDIR}/httpd-mimp.conf pre-install: .if !defined(BATCH) && !defined(WITHOUT_SSL) @@ -154,28 +79,6 @@ pre-install: ${FALSE} ; \ fi .endif -.for fc in ${PATCH2RM} - @${RM} ${WRKSRC}/config/${fc} -.endfor - -do-install: - @${INSTALL} -d ${MIMPDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${MIMPDIR}/ - @${CP} -p ${WRKSRC}/*.php ${MIMPDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${INSTALL_DATA} ${WRKDIR}/httpd-mimp.conf ${HORDE_INC}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${MIMPDIR}/ - @${CHMOD} -R o-rwx ${CONFDIR}/ -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/mimp/files/httpd.conf.mimp b/mail/mimp/files/httpd.conf.mimp deleted file mode 100644 index 0a6aadc8a2cc..000000000000 --- a/mail/mimp/files/httpd.conf.mimp +++ /dev/null @@ -1,31 +0,0 @@ -# This is included in Apache's httpd.conf for MIMP -# -# For security, don't serve pages from the MIMP configuration and -# library directories. -# -<Directory "/home/httpd/html/horde/mimp/config"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/lib"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/locale"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/po"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/scripts"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/mimp/templates"> - order deny,allow - deny from all -</Directory> -# End of MIMP configuration ================ - diff --git a/mail/mimp/files/pkg-deinstall.in b/mail/mimp/files/pkg-deinstall.in deleted file mode 100644 index 7f721dba2f9a..000000000000 --- a/mail/mimp/files/pkg-deinstall.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: -# - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%MIMPDIR%%/config/*php %%MIMPDIR%%/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/mimp/files/pkg-install.in b/mail/mimp/files/pkg-install.in deleted file mode 100644 index 6268cfb52df6..000000000000 --- a/mail/mimp/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%MIMPDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/mimp/files/pkg-message.in b/mail/mimp/files/pkg-message.in index 0710c978e6d5..20c7c869de8d 100644 --- a/mail/mimp/files/pkg-message.in +++ b/mail/mimp/files/pkg-message.in @@ -1,12 +1,12 @@ ************************************************************************ -MIMP has been installed in %%MIMPDIR%% with your blank +MIMP has been installed in %%HORDIR%% with your blank configuration files. Horde must be configured and the tables created; if not, see -`pkg_info -D -x horde'. +`pkg_info -Dx horde-base'. Then, you might have to tune the configuration files located in -%%CONFDIR%%/, specially the file servers.php. +%%HORCFG%%/, specially the file servers.php. Then, you must login to Horde as a Horde Administrator to finish the configuration. Please read %%DOCSDIR%%/INSTALL. diff --git a/mail/mimp/pkg-plist b/mail/mimp/pkg-plist index 9009f3448350..55d92b55df58 100644 --- a/mail/mimp/pkg-plist +++ b/mail/mimp/pkg-plist @@ -1,120 +1,117 @@ -%%MIMPDIR%%/compose.php -%%MIMPDIR%%/config/.htaccess -%%MIMPDIR%%/config/conf.xml -%%MIMPDIR%%/config/filter.txt.dist -%%MIMPDIR%%/config/header.php.dist -%%MIMPDIR%%/config/menu.php.dist -%%MIMPDIR%%/config/mime_drivers.php.dist -%%MIMPDIR%%/config/motd.php.dist -%%MIMPDIR%%/config/prefs.php.dist -%%MIMPDIR%%/config/servers.php.dist -%%MIMPDIR%%/config/trailer.txt.dist -%%MIMPDIR%%/config/conf.xml.beforeMIMP -%%MIMPDIR%%/config/servers.php.dist.beforeMIMP -%%MIMPDIR%%/folders.php -%%MIMPDIR%%/index.php -%%MIMPDIR%%/lib/Auth/mimp.php -%%MIMPDIR%%/lib/base.php -%%MIMPDIR%%/lib/Compose.php -%%MIMPDIR%%/lib/Folder.php -%%MIMPDIR%%/lib/IMAP.php -%%MIMPDIR%%/lib/IMAP/Client.php -%%MIMPDIR%%/lib/IMAP/Sort.php -%%MIMPDIR%%/lib/IMAP/Tree.php -%%MIMPDIR%%/lib/Identity/mimp.php -%%MIMPDIR%%/lib/MIME/Contents.php -%%MIMPDIR%%/lib/MIME/Headers.php -%%MIMPDIR%%/lib/MIME/Viewer/alternative.php -%%MIMPDIR%%/lib/MIME/Viewer/html.php -%%MIMPDIR%%/lib/MIME/Viewer/multipart.php -%%MIMPDIR%%/lib/MIME/Viewer/plain.php -%%MIMPDIR%%/lib/MIME/Viewer/related.php -%%MIMPDIR%%/lib/MIME/Headers.php.beforeMIMP -%%MIMPDIR%%/lib/Mailbox.php -%%MIMPDIR%%/lib/Message.php -%%MIMPDIR%%/lib/MIMP.php -%%MIMPDIR%%/lib/Session.php -%%MIMPDIR%%/lib/api.php -%%MIMPDIR%%/lib/prefs.php -%%MIMPDIR%%/lib/version.php -%%MIMPDIR%%/locale/ca_ES/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/de_DE/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/es_ES/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/fi_FI/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/fr_FR/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/hu_HU/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/it_IT/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/lt_LT/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/nl_NL/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/pt_PT/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/locale/ro_RO/LC_MESSAGES/mimp.mo -%%MIMPDIR%%/login.php -%%MIMPDIR%%/mailbox.php -%%MIMPDIR%%/message.php -%%MIMPDIR%%/po/README -%%MIMPDIR%%/po/mimp.pot -%%MIMPDIR%%/po/ca_ES.po -%%MIMPDIR%%/po/de_DE.po -%%MIMPDIR%%/po/es_ES.po -%%MIMPDIR%%/po/fi_FI.po -%%MIMPDIR%%/po/fr_FR.po -%%MIMPDIR%%/po/hu_HU.po -%%MIMPDIR%%/po/it_IT.po -%%MIMPDIR%%/po/lt_LT.po -%%MIMPDIR%%/po/nl_NL.po -%%MIMPDIR%%/po/pt_PT.po -%%MIMPDIR%%/po/ro_RO.po -%%MIMPDIR%%/redirect.php -%%MIMPDIR%%/templates/common-header.inc -%%MIMPDIR%%/templates/compose/compose.inc -%%MIMPDIR%%/templates/compose/redirect.inc -%%MIMPDIR%%/templates/index/notconfigured.inc -%%MIMPDIR%%/templates/login/login.inc -%%MIMPDIR%%/templates/mailbox/mailbox.inc -%%MIMPDIR%%/templates/prefs/sentmailselect.inc -%%MIMPDIR%%/test.php -%%MIMPDIR%%/themes/graphics/favicon.ico -%%MIMPDIR%%/themes/graphics/mimp.png -%%MIMPDIR%%/themes/graphics/horde-power2.png -%%MIMPDIR%%/themes/graphics/horde-power2.wbmp -%%HORDE_INC%%httpd-mimp.conf -@dirrm %%MIMPDIR%%/themes/graphics -@dirrm %%MIMPDIR%%/themes -@dirrm %%MIMPDIR%%/templates/prefs -@dirrm %%MIMPDIR%%/templates/mailbox -@dirrm %%MIMPDIR%%/templates/login -@dirrm %%MIMPDIR%%/templates/index -@dirrm %%MIMPDIR%%/templates/compose -@dirrm %%MIMPDIR%%/templates -@dirrm %%MIMPDIR%%/po -@dirrm %%MIMPDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/ro_RO -@dirrm %%MIMPDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/pt_PT -@dirrm %%MIMPDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/nl_NL -@dirrm %%MIMPDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/lt_LT -@dirrm %%MIMPDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/it_IT -@dirrm %%MIMPDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/hu_HU -@dirrm %%MIMPDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/fr_FR -@dirrm %%MIMPDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/fi_FI -@dirrm %%MIMPDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/es_ES -@dirrm %%MIMPDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/de_DE -@dirrm %%MIMPDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%MIMPDIR%%/locale/ca_ES -@dirrm %%MIMPDIR%%/locale -@dirrm %%MIMPDIR%%/lib/MIME/Viewer -@dirrm %%MIMPDIR%%/lib/MIME -@dirrm %%MIMPDIR%%/lib/Identity -@dirrm %%MIMPDIR%%/lib/IMAP -@dirrm %%MIMPDIR%%/lib/Auth -@dirrm %%MIMPDIR%%/lib -@dirrmtry %%MIMPDIR%%/config -@dirrmtry %%MIMPDIR%% +%%HORDIR%%/compose.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/filter.txt.dist +%%HORDIR%%/config/header.php.dist +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/motd.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/servers.php.dist +%%HORDIR%%/config/trailer.txt.dist +%%HORDIR%%/folders.php +%%HORDIR%%/index.php +%%HORDIR%%/lib/Auth/mimp.php +%%HORDIR%%/lib/Compose.php +%%HORDIR%%/lib/Folder.php +%%HORDIR%%/lib/IMAP/Client.php +%%HORDIR%%/lib/IMAP/Sort.php +%%HORDIR%%/lib/IMAP/Tree.php +%%HORDIR%%/lib/IMAP.php +%%HORDIR%%/lib/Identity/mimp.php +%%HORDIR%%/lib/MIME/Contents.php +%%HORDIR%%/lib/MIME/Headers.php +%%HORDIR%%/lib/MIME/Viewer/alternative.php +%%HORDIR%%/lib/MIME/Viewer/html.php +%%HORDIR%%/lib/MIME/Viewer/multipart.php +%%HORDIR%%/lib/MIME/Viewer/plain.php +%%HORDIR%%/lib/MIME/Viewer/related.php +%%HORDIR%%/lib/MIMP.php +%%HORDIR%%/lib/Mailbox.php +%%HORDIR%%/lib/Message.php +%%HORDIR%%/lib/Session.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/es_ES/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/mimp.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/mimp.mo +%%HORDIR%%/login.php +%%HORDIR%%/mailbox.php +%%HORDIR%%/message.php +%%HORDIR%%/po/README +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/mimp.pot +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/redirect.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/compose/compose.inc +%%HORDIR%%/templates/compose/redirect.inc +%%HORDIR%%/templates/index/notconfigured.inc +%%HORDIR%%/templates/login/login.inc +%%HORDIR%%/templates/mailbox/mailbox.inc +%%HORDIR%%/templates/prefs/sentmailselect.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/horde-power2.png +%%HORDIR%%/themes/graphics/horde-power2.wbmp +%%HORDIR%%/themes/graphics/mimp.png +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/lib/Auth +@dirrm %%HORDIR%%/lib/IMAP +@dirrm %%HORDIR%%/lib/Identity +@dirrm %%HORDIR%%/lib/MIME/Viewer +@dirrm %%HORDIR%%/lib/MIME +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/templates/compose +@dirrm %%HORDIR%%/templates/index +@dirrm %%HORDIR%%/templates/login +@dirrm %%HORDIR%%/templates/mailbox +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/mail/turba/Makefile b/mail/turba/Makefile index 6cddc5222df0..d1a0a7d8accd 100644 --- a/mail/turba/Makefile +++ b/mail/turba/Makefile @@ -7,69 +7,21 @@ PORTNAME= turba PORTVERSION= 2.1.4 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= HORDE MAINTAINER= beech@alaskaparadise.com COMMENT= The Horde contact management application -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - +USE_HORDE= base USE_PHP= ldap -NO_BUILD= yes USE_GETTEXT= yes -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL LDAP \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= attributes.php menu.php mime_drivers.php prefs.php sources.php -SUB_DIRS= config lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LTURBADIR?= ${LHORDEDIR}/turba - -PLIST_SUB= TURBADIR=${LTURBADIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= TURBADIR=${TURBADIR} CONFDIR=${CONFDIR} - -TURBADIR= ${PREFIX}/${LTURBADIR} -CONFDIR= ${TURBADIR}/config +PORTDOCS= README CHANGES CREDITS INSTALL LDAP RELEASE_NOTES TODO UPGRADING -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @${RM} ${WRKSRC}/config/sources.php.dist.orig +pre-patch: @${REINPLACE_CMD} -e "s:/usr/bin/ldapadd:${LOCALBASE}/bin/ldapadd:" \ ${WRKSRC}/scripts/ldap/addou.pl -do-install: - @${INSTALL} -d ${TURBADIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${TURBADIR}/ - @${CP} -p ${WRKSRC}/*.php ${TURBADIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${TURBADIR}/ - @${CHMOD} -R o-rwx ${TURBADIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${TURBADIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${TURBADIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/mail/turba/files/pkg-deinstall.in b/mail/turba/files/pkg-deinstall.in deleted file mode 100644 index fced5020f1b0..000000000000 --- a/mail/turba/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Turba config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%TURBADIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/mail/turba/files/pkg-install.in b/mail/turba/files/pkg-install.in deleted file mode 100644 index e0611782bf84..000000000000 --- a/mail/turba/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%TURBADIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/mail/turba/files/pkg-message.in b/mail/turba/files/pkg-message.in index c59f450b8cf5..fac46bfb9f28 100644 --- a/mail/turba/files/pkg-message.in +++ b/mail/turba/files/pkg-message.in @@ -1,11 +1,11 @@ ************************************************************************ -Turba has been installed in %%TURBADIR%% with your blank +Turba has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde'. Then, you might have to tune the configuration files located in -%%CONFDIR%%/, specially the file sources.php. +%%HORCFG%%/, specially the file sources.php. Warning: if you don't use some source, deactivate it, or you could ******** experience bad response times! @@ -15,7 +15,7 @@ Then, you must login to Horde as a Horde Administrator to finish the configuration. You have to create a table in your database; please see -%%TURBADIR%%/scripts/. +%%HORDIR%%/scripts/. You might create a LDAP schema: please see the doc LDAP. ************************************************************************ diff --git a/mail/turba/pkg-plist b/mail/turba/pkg-plist index fe2bc9fa07da..0ae7fe8003b0 100644 --- a/mail/turba/pkg-plist +++ b/mail/turba/pkg-plist @@ -1,274 +1,275 @@ -%%TURBADIR%%/add.php -%%TURBADIR%%/addressbooks.php -%%TURBADIR%%/browse.php -%%TURBADIR%%/config/.htaccess -%%TURBADIR%%/config/attributes.php.dist -%%TURBADIR%%/config/conf.xml -%%TURBADIR%%/config/menu.php.dist -%%TURBADIR%%/config/mime_drivers.php.dist -%%TURBADIR%%/config/prefs.php.dist -%%TURBADIR%%/config/sources.php.dist -%%TURBADIR%%/data.php -%%TURBADIR%%/delete.php -%%TURBADIR%%/display.php -%%TURBADIR%%/edit.php -%%TURBADIR%%/index.php -%%TURBADIR%%/lib/.htaccess -%%TURBADIR%%/lib/Block/minisearch.php -%%TURBADIR%%/lib/Block/tree_menu.php -%%TURBADIR%%/lib/Driver.php -%%TURBADIR%%/lib/Driver/imsp.php -%%TURBADIR%%/lib/Driver/kolab.php -%%TURBADIR%%/lib/Driver/ldap.php -%%TURBADIR%%/lib/Driver/null.php -%%TURBADIR%%/lib/Driver/prefs.php -%%TURBADIR%%/lib/Driver/sql.php -%%TURBADIR%%/lib/Group.php -%%TURBADIR%%/lib/List.php -%%TURBADIR%%/lib/ListView.php -%%TURBADIR%%/lib/Object.php -%%TURBADIR%%/lib/Object/Group.php -%%TURBADIR%%/lib/ObjectView.php -%%TURBADIR%%/lib/Renderer.php -%%TURBADIR%%/lib/tests/tovcard.phpt -%%TURBADIR%%/lib/Turba.php -%%TURBADIR%%/lib/api.php -%%TURBADIR%%/lib/base.php -%%TURBADIR%%/lib/prefs.php -%%TURBADIR%%/lib/version.php -%%TURBADIR%%/locale/.htaccess -%%TURBADIR%%/locale/ar_SY/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/bg_BG/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ca_ES/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ca_ES/help.xml -%%TURBADIR%%/locale/cs_CZ/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/da_DK/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/de_DE/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/de_DE/help.xml -%%TURBADIR%%/locale/el_GR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/en_US/help.xml -%%TURBADIR%%/locale/es_ES/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/es_ES/help.xml -%%TURBADIR%%/locale/et_EE/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fa_IR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fa_IR/help.xml -%%TURBADIR%%/locale/fi_FI/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fi_FI/help.xml -%%TURBADIR%%/locale/fr_FR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/fr_FR/help.xml -%%TURBADIR%%/locale/gl_ES/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/hu_HU/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/is_IS/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/it_IT/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ja_JP/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ko_KR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/lt_LT/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/lv_LV/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/mk_MK/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/nb_NO/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/nl_NL/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/nn_NO/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pl_PL/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pt_BR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pt_BR/help.xml -%%TURBADIR%%/locale/pt_PT/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/pt_PT/help.xml -%%TURBADIR%%/locale/ro_RO/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/ru_RU/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/sk_SK/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/sk_SK/help.xml -%%TURBADIR%%/locale/sl_SI/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/sv_SE/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/tr_TR/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/tr_TR/help.xml -%%TURBADIR%%/locale/uk_UA/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/zh_CN/LC_MESSAGES/turba.mo -%%TURBADIR%%/locale/zh_TW/LC_MESSAGES/turba.mo -%%TURBADIR%%/minisearch.php -%%TURBADIR%%/po/.htaccess -%%TURBADIR%%/po/README -%%TURBADIR%%/po/ar_SY.po -%%TURBADIR%%/po/bg_BG.po -%%TURBADIR%%/po/ca_ES.po -%%TURBADIR%%/po/cs_CZ.po -%%TURBADIR%%/po/da_DK.po -%%TURBADIR%%/po/de_DE.po -%%TURBADIR%%/po/el_GR.po -%%TURBADIR%%/po/es_ES.po -%%TURBADIR%%/po/et_EE.po -%%TURBADIR%%/po/fa_IR.po -%%TURBADIR%%/po/fi_FI.po -%%TURBADIR%%/po/fr_FR.po -%%TURBADIR%%/po/gl_ES.po -%%TURBADIR%%/po/hu_HU.po -%%TURBADIR%%/po/is_IS.po -%%TURBADIR%%/po/it_IT.po -%%TURBADIR%%/po/ja_JP.po -%%TURBADIR%%/po/ko_KR.po -%%TURBADIR%%/po/lt_LT.po -%%TURBADIR%%/po/lv_LV.po -%%TURBADIR%%/po/mk_MK.po -%%TURBADIR%%/po/nb_NO.po -%%TURBADIR%%/po/nl_NL.po -%%TURBADIR%%/po/nn_NO.po -%%TURBADIR%%/po/pl_PL.po -%%TURBADIR%%/po/pt_BR.po -%%TURBADIR%%/po/pt_PT.po -%%TURBADIR%%/po/ro_RO.po -%%TURBADIR%%/po/ru_RU.po -%%TURBADIR%%/po/sk_SK.po -%%TURBADIR%%/po/sl_SI.po -%%TURBADIR%%/po/sv_SE.po -%%TURBADIR%%/po/tr_TR.po -%%TURBADIR%%/po/turba.pot -%%TURBADIR%%/po/uk_UA.po -%%TURBADIR%%/po/zh_CN.po -%%TURBADIR%%/po/zh_TW.po -%%TURBADIR%%/scripts/.htaccess -%%TURBADIR%%/scripts/Turba.reg -%%TURBADIR%%/scripts/import_vcards.php -%%TURBADIR%%/scripts/ldap/addou -%%TURBADIR%%/scripts/ldap/addou.pl -%%TURBADIR%%/scripts/ldap/core.schema.patch -%%TURBADIR%%/scripts/ldap/rfc2739.schema -%%TURBADIR%%/scripts/sql/turba_objects.mssql.sql -%%TURBADIR%%/scripts/sql/turba_objects.mysql.sql -%%TURBADIR%%/scripts/sql/turba_objects.oci8.sql -%%TURBADIR%%/scripts/sql/turba_objects.pgsql.sql -%%TURBADIR%%/scripts/sql/turba_objects.sql -%%TURBADIR%%/scripts/sql/turba.xml -%%TURBADIR%%/scripts/sql/turba_weddingguests.sql -%%TURBADIR%%/scripts/upgrades/create_default_histories.php -%%TURBADIR%%/scripts/upgrades/1.2_to_2.0.oci8.sql -%%TURBADIR%%/scripts/upgrades/1.1_to_1.2.sql -%%TURBADIR%%/scripts/upgrades/1.2_to_2.0.sql -%%TURBADIR%%/scripts/upgrades/public_to_horde_share.php -%%TURBADIR%%/search.php -%%TURBADIR%%/templates/.htaccess -%%TURBADIR%%/templates/addressbooks.inc -%%TURBADIR%%/templates/block/minisearch.inc -%%TURBADIR%%/templates/browse/actions.inc -%%TURBADIR%%/templates/browse/column_footers.inc -%%TURBADIR%%/templates/browse/column_headers.inc -%%TURBADIR%%/templates/browse/contactrow.inc -%%TURBADIR%%/templates/browse/footer.inc -%%TURBADIR%%/templates/browse/footerAlpha.inc -%%TURBADIR%%/templates/browse/header.inc -%%TURBADIR%%/templates/browse/javascript.inc -%%TURBADIR%%/templates/browse/row.inc -%%TURBADIR%%/templates/browse/search.inc -%%TURBADIR%%/templates/browse/search_criteria.inc -%%TURBADIR%%/templates/common-header.inc -%%TURBADIR%%/templates/data/export.inc -%%TURBADIR%%/templates/data/import.inc -%%TURBADIR%%/templates/menu.inc -%%TURBADIR%%/templates/prefs/addressbookselect.inc -%%TURBADIR%%/templates/prefs/columnselect.inc -%%TURBADIR%%/templates/prefs/imsp_opt.inc -%%TURBADIR%%/test.php -%%TURBADIR%%/themes/graphics/contact.png -%%TURBADIR%%/themes/graphics/favicon.ico -%%TURBADIR%%/themes/graphics/group.png -%%TURBADIR%%/themes/graphics/menu/browse.png -%%TURBADIR%%/themes/graphics/menu/new.png -%%TURBADIR%%/themes/graphics/new.png -%%TURBADIR%%/themes/graphics/turba.png -%%TURBADIR%%/themes/ideas/screen.css -%%TURBADIR%%/themes/screen.css -%%TURBADIR%%/vcard.php -%%TURBADIR%%/view.php -@dirrm %%TURBADIR%%/themes/ideas -@dirrm %%TURBADIR%%/themes/graphics/menu -@dirrm %%TURBADIR%%/themes/graphics -@dirrm %%TURBADIR%%/themes -@dirrm %%TURBADIR%%/templates/prefs -@dirrm %%TURBADIR%%/templates/data -@dirrm %%TURBADIR%%/templates/browse -@dirrm %%TURBADIR%%/templates/block -@dirrm %%TURBADIR%%/templates -@dirrm %%TURBADIR%%/scripts/upgrades -@dirrm %%TURBADIR%%/scripts/sql -@dirrm %%TURBADIR%%/scripts/ldap -@dirrm %%TURBADIR%%/scripts -@dirrm %%TURBADIR%%/po -@dirrm %%TURBADIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/zh_TW -@dirrm %%TURBADIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/zh_CN -@dirrm %%TURBADIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/uk_UA -@dirrm %%TURBADIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/tr_TR -@dirrm %%TURBADIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/sv_SE -@dirrm %%TURBADIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/sl_SI -@dirrm %%TURBADIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/sk_SK -@dirrm %%TURBADIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ru_RU -@dirrm %%TURBADIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ro_RO -@dirrm %%TURBADIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/pt_PT -@dirrm %%TURBADIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/pt_BR -@dirrm %%TURBADIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/pl_PL -@dirrm %%TURBADIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/nn_NO -@dirrm %%TURBADIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/nl_NL -@dirrm %%TURBADIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/nb_NO -@dirrm %%TURBADIR%%/locale/mk_MK/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/mk_MK -@dirrm %%TURBADIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/lv_LV -@dirrm %%TURBADIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/lt_LT -@dirrm %%TURBADIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ko_KR -@dirrm %%TURBADIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ja_JP -@dirrm %%TURBADIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/it_IT -@dirrm %%TURBADIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/is_IS -@dirrm %%TURBADIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/hu_HU -@dirrm %%TURBADIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/gl_ES -@dirrm %%TURBADIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/fr_FR -@dirrm %%TURBADIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/fi_FI -@dirrm %%TURBADIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/fa_IR -@dirrm %%TURBADIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/et_EE -@dirrm %%TURBADIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/es_ES -@dirrm %%TURBADIR%%/locale/en_US -@dirrm %%TURBADIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/el_GR -@dirrm %%TURBADIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/de_DE -@dirrm %%TURBADIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/da_DK -@dirrm %%TURBADIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/cs_CZ -@dirrm %%TURBADIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ca_ES -@dirrm %%TURBADIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/bg_BG -@dirrm %%TURBADIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%TURBADIR%%/locale/ar_SY -@dirrm %%TURBADIR%%/locale -@dirrm %%TURBADIR%%/lib/tests -@dirrm %%TURBADIR%%/lib/Object -@dirrm %%TURBADIR%%/lib/Driver -@dirrm %%TURBADIR%%/lib/Block -@dirrm %%TURBADIR%%/lib -@dirrmtry %%TURBADIR%%/config -@dirrmtry %%TURBADIR%% +%%HORDIR%%/add.php +%%HORDIR%%/addressbooks.php +%%HORDIR%%/browse.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/attributes.php.dist +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/menu.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/sources.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/delete.php +%%HORDIR%%/display.php +%%HORDIR%%/edit.php +%%HORDIR%%/index.php +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Block/minisearch.php +%%HORDIR%%/lib/Block/tree_menu.php +%%HORDIR%%/lib/Driver/imsp.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/ldap.php +%%HORDIR%%/lib/Driver/null.php +%%HORDIR%%/lib/Driver/prefs.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Group.php +%%HORDIR%%/lib/List.php +%%HORDIR%%/lib/ListView.php +%%HORDIR%%/lib/Object/Group.php +%%HORDIR%%/lib/Object.php +%%HORDIR%%/lib/ObjectView.php +%%HORDIR%%/lib/Renderer.php +%%HORDIR%%/lib/Turba.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/tests/tovcard.phpt +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/de_DE/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fa_IR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fa_IR/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/gl_ES/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/is_IS/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/mk_MK/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/pt_PT/help.xml +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/uk_UA/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/turba.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/turba.mo +%%HORDIR%%/minisearch.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fa_IR.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gl_ES.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/is_IS.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mk_MK.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/turba.pot +%%HORDIR%%/po/uk_UA.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/Turba.reg +%%HORDIR%%/scripts/import_vcards.php +%%HORDIR%%/scripts/ldap/addou +%%HORDIR%%/scripts/ldap/addou.pl +%%HORDIR%%/scripts/ldap/core.schema.patch +%%HORDIR%%/scripts/ldap/rfc2739.schema +%%HORDIR%%/scripts/sql/turba.xml +%%HORDIR%%/scripts/sql/turba_objects.mssql.sql +%%HORDIR%%/scripts/sql/turba_objects.mysql.sql +%%HORDIR%%/scripts/sql/turba_objects.oci8.sql +%%HORDIR%%/scripts/sql/turba_objects.pgsql.sql +%%HORDIR%%/scripts/sql/turba_objects.sql +%%HORDIR%%/scripts/sql/turba_weddingguests.sql +%%HORDIR%%/scripts/upgrades/1.1_to_1.2.sql +%%HORDIR%%/scripts/upgrades/1.2_to_2.0.oci8.sql +%%HORDIR%%/scripts/upgrades/1.2_to_2.0.sql +%%HORDIR%%/scripts/upgrades/create_default_histories.php +%%HORDIR%%/scripts/upgrades/public_to_horde_share.php +%%HORDIR%%/search.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/addressbooks.inc +%%HORDIR%%/templates/block/minisearch.inc +%%HORDIR%%/templates/browse/actions.inc +%%HORDIR%%/templates/browse/column_footers.inc +%%HORDIR%%/templates/browse/column_headers.inc +%%HORDIR%%/templates/browse/contactrow.inc +%%HORDIR%%/templates/browse/footer.inc +%%HORDIR%%/templates/browse/footerAlpha.inc +%%HORDIR%%/templates/browse/header.inc +%%HORDIR%%/templates/browse/javascript.inc +%%HORDIR%%/templates/browse/row.inc +%%HORDIR%%/templates/browse/search.inc +%%HORDIR%%/templates/browse/search_criteria.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/prefs/addressbookselect.inc +%%HORDIR%%/templates/prefs/columnselect.inc +%%HORDIR%%/templates/prefs/imsp_opt.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/contact.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/group.png +%%HORDIR%%/themes/graphics/menu/browse.png +%%HORDIR%%/themes/graphics/menu/new.png +%%HORDIR%%/themes/graphics/new.png +%%HORDIR%%/themes/graphics/turba.png +%%HORDIR%%/themes/ideas/screen.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/vcard.php +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib/Object +@dirrm %%HORDIR%%/lib/tests +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fa_IR +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/gl_ES +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%HORDIR%%/locale/is_IS +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/mk_MK +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/uk_UA +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/ldap +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/block +@dirrm %%HORDIR%%/templates/browse +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics/menu +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/ideas +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/net-mgmt/horde-nic/Makefile b/net-mgmt/horde-nic/Makefile index daef49645ce8..33dc5d8e49f4 100644 --- a/net-mgmt/horde-nic/Makefile +++ b/net-mgmt/horde-nic/Makefile @@ -6,6 +6,7 @@ # PORTNAME= nic +DISTVERSIONPREFIX= DISTVERSION= 0.1.beta20070316 CATEGORIES= net-mgmt MASTER_SITES= CENKES http://freebsd.alaskaparadise.com/source/ @@ -14,69 +15,9 @@ PKGNAMEPREFIX= horde- MAINTAINER= beech@alaskaparadise.com COMMENT= Very basic network service monitor -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes -USE_APACHE= 1.3+ # needed to test APACHE_VERSION +USE_HORDE= base pkg-message USE_GETTEXT= yes -REINPLACE_ARGS= -i "" - PORTDOCS= CHANGES CREDITS INSTALL TODO README -CONFFILE= conf.xml .htaccess -SUB_DIRS= config lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LNICDIR= ${LHORDEDIR}/nic -PEARDIR?= ${LOCALBASE}/share/pear - -PLIST_SUB= NICDIR=${LNICDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= NICDIR=${NICDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} - -NICDIR= ${PREFIX}/${LNICDIR} -CONFDIR= ${NICDIR}/config - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h - -.include <bsd.port.pre.mk> - -.if ${APACHE_VERSION} >= 20 -HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes/ -.else -HORDE_INC= ${LOCALBASE}/etc/horde/ -.endif - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml - @${SED} -e "s:/home/httpd/html/horde/nic:${NICDIR}:" \ - ${FILESDIR}/httpd.conf.nic > ${WRKDIR}/httpd-nic.conf - -do-install: - @${INSTALL} -d ${NICDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${NICDIR}/ - @${CP} -p ${WRKSRC}/*.php ${NICDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${INSTALL_DATA} ${WRKDIR}/httpd-nic.conf ${HORDE_INC}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${NICDIR}/ - @${CHMOD} -R o-rwx ${CONFDIR}/ -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/net-mgmt/horde-nic/files/httpd.conf.nic b/net-mgmt/horde-nic/files/httpd.conf.nic deleted file mode 100644 index 29a493425a83..000000000000 --- a/net-mgmt/horde-nic/files/httpd.conf.nic +++ /dev/null @@ -1,31 +0,0 @@ -# This is included in Apache's httpd.conf for nic -# -# For security, don't serve pages from the nic configuration and -# library directories. -# -<Directory "/home/httpd/html/horde/nic/config"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/nic/lib"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/nic/locale"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/nic/po"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/nic/scripts"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/nic/templates"> - order deny,allow - deny from all -</Directory> -# End of nic configuration ================ - diff --git a/net-mgmt/horde-nic/files/pkg-deinstall.in b/net-mgmt/horde-nic/files/pkg-deinstall.in deleted file mode 100644 index 1ec68c56a52f..000000000000 --- a/net-mgmt/horde-nic/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup trean config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%NICDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/net-mgmt/horde-nic/files/pkg-install.in b/net-mgmt/horde-nic/files/pkg-install.in deleted file mode 100644 index d75112eb3810..000000000000 --- a/net-mgmt/horde-nic/files/pkg-install.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%NICDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/net-mgmt/horde-nic/files/pkg-message.in b/net-mgmt/horde-nic/files/pkg-message.in deleted file mode 100644 index 8fb0fff164d7..000000000000 --- a/net-mgmt/horde-nic/files/pkg-message.in +++ /dev/null @@ -1,11 +0,0 @@ -************************************************************************ -NIC has been installed in %%NICDIR%% with your blank -configuration files. - -Nic must be configured; if not, see `pkg_info -D -x horde'. - -Finally, you must login to Horde as a Horde Administrator to finish the -configuration. - -To protect your configuration files, you have to restart Apache. -************************************************************************ diff --git a/net-mgmt/horde-nic/pkg-plist b/net-mgmt/horde-nic/pkg-plist index 55fc1d21e768..6972df183113 100644 --- a/net-mgmt/horde-nic/pkg-plist +++ b/net-mgmt/horde-nic/pkg-plist @@ -1,86 +1,86 @@ -%%NICDIR%%/config/.cvsignore -%%NICDIR%%/config/conf.xml -%%NICDIR%%/config/devices.php.dist -%%NICDIR%%/config/prefs.php.dist -%%NICDIR%%/graph.php -%%NICDIR%%/index.php -%%NICDIR%%/lib/Device.php -%%NICDIR%%/lib/Device/SNMP.php -%%NICDIR%%/lib/Device/SNMPCustom.php -%%NICDIR%%/lib/Device/apache.php -%%NICDIR%%/lib/Device/dns.php -%%NICDIR%%/lib/Device/imap.php -%%NICDIR%%/lib/Device/jetdirect.php -%%NICDIR%%/lib/Device/mysql.php -%%NICDIR%%/lib/Device/pop3.php -%%NICDIR%%/lib/Device/smtp.php -%%NICDIR%%/lib/Device/squid.php -%%NICDIR%%/lib/Device/win2k.php -%%NICDIR%%/lib/Device/www.php -%%NICDIR%%/lib/Device/www_secure.php -%%NICDIR%%/lib/Device/xi1510.php -%%NICDIR%%/lib/Nic.php -%%NICDIR%%/lib/Status.php -%%NICDIR%%/lib/Status/sql.php -%%NICDIR%%/lib/Storage.php -%%NICDIR%%/lib/Storage/rrd.php -%%NICDIR%%/lib/Storage/sql.php -%%NICDIR%%/lib/base.php -%%NICDIR%%/lib/version.php -%%NICDIR%%/locale/de_DE/LC_MESSAGES/nic.mo -%%NICDIR%%/locale/en_US/help.xml -%%NICDIR%%/locale/es_ES/LC_MESSAGES/nic.mo -%%NICDIR%%/locale/fi_FI/LC_MESSAGES/nic.mo -%%NICDIR%%/po/de_DE.po -%%NICDIR%%/po/es_ES.po -%%NICDIR%%/po/fi_FI.po -%%NICDIR%%/po/nic.pot -%%NICDIR%%/rrdgraph.php -%%NICDIR%%/rrdviews.php -%%NICDIR%%/scripts/.htaccess -%%NICDIR%%/scripts/createRRDFiles.php -%%NICDIR%%/scripts/sql/nic.sql -%%NICDIR%%/scripts/statusMonitor.php -%%NICDIR%%/status.php -%%NICDIR%%/subsystem.php -%%NICDIR%%/templates/common-header.inc -%%NICDIR%%/templates/device/footer.inc -%%NICDIR%%/templates/device/header.inc -%%NICDIR%%/templates/device/row-graph.inc -%%NICDIR%%/templates/device/row.inc -%%NICDIR%%/templates/device/rrd-graph.inc -%%NICDIR%%/templates/menu.inc -%%NICDIR%%/templates/status/header.inc -%%NICDIR%%/templates/status/list-footer.inc -%%NICDIR%%/templates/status/list-header.inc -%%NICDIR%%/templates/status/list-row.inc -%%NICDIR%%/templates/subsystem/footer.inc -%%NICDIR%%/templates/subsystem/subsystem.inc -%%NICDIR%%/test.php -%%NICDIR%%/themes/graphics/favicon.ico -%%NICDIR%%//themes/graphics/nic.png -%%NICDIR%%/themes/screen.css -%%HORDE_INC%%httpd-nic.conf -@dirrm %%NICDIR%%/themes/graphics -@dirrm %%NICDIR%%/themes -@dirrm %%NICDIR%%/templates/subsystem -@dirrm %%NICDIR%%/templates/status -@dirrm %%NICDIR%%/templates/device -@dirrm %%NICDIR%%/templates -@dirrm %%NICDIR%%/scripts/sql -@dirrm %%NICDIR%%/scripts -@dirrm %%NICDIR%%/po -@dirrm %%NICDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%NICDIR%%/locale/fi_FI -@dirrm %%NICDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%NICDIR%%/locale/es_ES -@dirrm %%NICDIR%%/locale/en_US -@dirrm %%NICDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%NICDIR%%/locale/de_DE -@dirrm %%NICDIR%%/locale -@dirrm %%NICDIR%%/lib/Storage -@dirrm %%NICDIR%%/lib/Status -@dirrm %%NICDIR%%/lib/Device -@dirrm %%NICDIR%%/lib -@dirrm %%NICDIR%%/config -@dirrm %%NICDIR%% +%%HORDIR%%/config/.cvsignore +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/devices.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/graph.php +%%HORDIR%%/index.php +%%HORDIR%%/lib/Device/SNMP.php +%%HORDIR%%/lib/Device/SNMPCustom.php +%%HORDIR%%/lib/Device/apache.php +%%HORDIR%%/lib/Device/dns.php +%%HORDIR%%/lib/Device/imap.php +%%HORDIR%%/lib/Device/jetdirect.php +%%HORDIR%%/lib/Device/mysql.php +%%HORDIR%%/lib/Device/pop3.php +%%HORDIR%%/lib/Device/smtp.php +%%HORDIR%%/lib/Device/squid.php +%%HORDIR%%/lib/Device/win2k.php +%%HORDIR%%/lib/Device/www.php +%%HORDIR%%/lib/Device/www_secure.php +%%HORDIR%%/lib/Device/xi1510.php +%%HORDIR%%/lib/Device.php +%%HORDIR%%/lib/Nic.php +%%HORDIR%%/lib/Status/sql.php +%%HORDIR%%/lib/Status.php +%%HORDIR%%/lib/Storage/rrd.php +%%HORDIR%%/lib/Storage/sql.php +%%HORDIR%%/lib/Storage.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/de_DE/LC_MESSAGES/nic.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/nic.mo +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/nic.mo +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/nic.pot +%%HORDIR%%/rrdgraph.php +%%HORDIR%%/rrdviews.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/createRRDFiles.php +%%HORDIR%%/scripts/sql/nic.sql +%%HORDIR%%/scripts/statusMonitor.php +%%HORDIR%%/status.php +%%HORDIR%%/subsystem.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/device/footer.inc +%%HORDIR%%/templates/device/header.inc +%%HORDIR%%/templates/device/row-graph.inc +%%HORDIR%%/templates/device/row.inc +%%HORDIR%%/templates/device/rrd-graph.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/status/header.inc +%%HORDIR%%/templates/status/list-footer.inc +%%HORDIR%%/templates/status/list-header.inc +%%HORDIR%%/templates/status/list-row.inc +%%HORDIR%%/templates/subsystem/footer.inc +%%HORDIR%%/templates/subsystem/subsystem.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/nic.png +%%HORDIR%%/themes/screen.css +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/lib/Device +@dirrm %%HORDIR%%/lib/Status +@dirrm %%HORDIR%%/lib/Storage +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/device +@dirrm %%HORDIR%%/templates/status +@dirrm %%HORDIR%%/templates/subsystem +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/www/horde-ansel/Makefile b/www/horde-ansel/Makefile index 2ffbae8bdaeb..4c6645d9877e 100644 --- a/www/horde-ansel/Makefile +++ b/www/horde-ansel/Makefile @@ -7,6 +7,7 @@ PORTNAME= ansel PORTVERSION= 0.1.b20070319 +DISTVERSIONPREFIX= CATEGORIES= www MASTER_SITES= CENKES http://freebsd.alaskaparadise.com/source/ PKGNAMEPREFIX= horde- @@ -14,69 +15,9 @@ PKGNAMEPREFIX= horde- MAINTAINER= beech@alaskaparadise.com COMMENT= Image gallery -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes -USE_APACHE= 1.3+ # needed to test APACHE_VERSION +USE_HORDE= base pkg-message USE_GETTEXT= yes -REINPLACE_ARGS= -i "" - PORTDOCS= CHANGES CREDITS TODO README -CONFFILE= conf.xml -SUB_DIRS= config gallery img js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LANSDIR= ${LHORDEDIR}/ansel -PEARDIR?= ${LOCALBASE}/share/pear - -PLIST_SUB= ANSDIR=${LANSDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= ANSDIR=${ANSDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} - -ANSDIR= ${PREFIX}/${LANSDIR} -CONFDIR= ${ANSDIR}/config - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h - -.include <bsd.port.pre.mk> - -.if ${APACHE_VERSION} >= 20 -HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes/ -.else -HORDE_INC= ${LOCALBASE}/etc/horde/ -.endif - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml - @${SED} -e "s:/home/httpd/html/horde/ansel:${ANSDIR}:" \ - ${FILESDIR}/httpd.conf.ansel > ${WRKDIR}/httpd-ansel.conf - -do-install: - @${INSTALL} -d ${ANSDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${ANSDIR}/ - @${CP} -p ${WRKSRC}/*.php ${ANSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${INSTALL_DATA} ${WRKDIR}/httpd-ansel.conf ${HORDE_INC}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${ANSDIR}/ - @${CHMOD} -R o-rwx ${CONFDIR}/ -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/www/horde-ansel/files/httpd.conf.ansel b/www/horde-ansel/files/httpd.conf.ansel deleted file mode 100644 index 3fe09b370849..000000000000 --- a/www/horde-ansel/files/httpd.conf.ansel +++ /dev/null @@ -1,31 +0,0 @@ -# This is included in Apache's httpd.conf for ansel -# -# For security, don't serve pages from the ansel configuration and -# library directories. -# -<Directory "/home/httpd/html/horde/ansel/config"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/ansel/lib"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/ansel/locale"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/ansel/po"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/ansel/scripts"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/ansel/templates"> - order deny,allow - deny from all -</Directory> -# End of ansel configuration ================ - diff --git a/www/horde-ansel/files/pkg-deinstall.in b/www/horde-ansel/files/pkg-deinstall.in deleted file mode 100644 index 85a5073df124..000000000000 --- a/www/horde-ansel/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup ansel config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%ANSDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/www/horde-ansel/files/pkg-install.in b/www/horde-ansel/files/pkg-install.in deleted file mode 100644 index 1a51120f18b0..000000000000 --- a/www/horde-ansel/files/pkg-install.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%ANSDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/www/horde-ansel/files/pkg-message.in b/www/horde-ansel/files/pkg-message.in deleted file mode 100644 index df64a65b3087..000000000000 --- a/www/horde-ansel/files/pkg-message.in +++ /dev/null @@ -1,11 +0,0 @@ -************************************************************************ -ANSEL has been installed in %%ANSDIR%% with your blank -configuration files. - -Ansel must be configured; if not, see `pkg_info -D -x horde'. - -Finally, you must login to Horde as a Horde Administrator to finish the -configuration. - -To protect your configuration files, you have to restart Apache. -************************************************************************ diff --git a/www/horde-ansel/pkg-plist b/www/horde-ansel/pkg-plist index 8c821e671236..3d7912c0ac1d 100644 --- a/www/horde-ansel/pkg-plist +++ b/www/horde-ansel/pkg-plist @@ -1,170 +1,170 @@ -%%ANSDIR%%/config/.cvsignore -%%ANSDIR%%/config/conf.xml -%%ANSDIR%%/config/prefs.php.dist -%%ANSDIR%%/gallery.php -%%ANSDIR%%/gallery/captions.php -%%ANSDIR%%/gallery/delete.php -%%ANSDIR%%/gallery/index.php -%%ANSDIR%%/gallery/sort.php -%%ANSDIR%%/group.php -%%ANSDIR%%/image.php -%%ANSDIR%%/img/download.php -%%ANSDIR%%/img/ecard.php -%%ANSDIR%%/img/full.php -%%ANSDIR%%/img/index.php -%%ANSDIR%%/img/mini.php -%%ANSDIR%%/img/screen.php -%%ANSDIR%%/img/thumb.php -%%ANSDIR%%/img/upload.php -%%ANSDIR%%/index.php -%%ANSDIR%%/js/controls.js -%%ANSDIR%%/js/dragdrop.js -%%ANSDIR%%/js/effects.js -%%ANSDIR%%/js/scriptaculous.js -%%ANSDIR%%/js/slideshow.js -%%ANSDIR%%/js/src/controls.js -%%ANSDIR%%/js/src/dragdrop.js -%%ANSDIR%%/js/src/effects.js -%%ANSDIR%%/js/src/scriptaculous.js -%%ANSDIR%%/js/src/slideshow.js -%%ANSDIR%%/lib/Ansel.php -%%ANSDIR%%/lib/Block/gallery.php -%%ANSDIR%%/lib/Block/random_gallery.php -%%ANSDIR%%/lib/Block/random_photo.php -%%ANSDIR%%/lib/Exif.php -%%ANSDIR%%/lib/Exif/canon.php -%%ANSDIR%%/lib/Exif/fujifilm.php -%%ANSDIR%%/lib/Exif/gps.php -%%ANSDIR%%/lib/Exif/nikon.php -%%ANSDIR%%/lib/Exif/olympus.php -%%ANSDIR%%/lib/Exif/sanyo.php -%%ANSDIR%%/lib/Forms/Ecard.php -%%ANSDIR%%/lib/Forms/Upload.php -%%ANSDIR%%/lib/Views/Abstract.php -%%ANSDIR%%/lib/Views/Gallery.php -%%ANSDIR%%/lib/Views/Image.php -%%ANSDIR%%/lib/XPPublisher.php -%%ANSDIR%%/lib/api.php -%%ANSDIR%%/lib/base.php -%%ANSDIR%%/lib/version.php -%%ANSDIR%%/list.php -%%ANSDIR%%/locale/de_DE/LC_MESSAGES/ansel.mo -%%ANSDIR%%/locale/en_US/help.xml -%%ANSDIR%%/locale/es_ES/LC_MESSAGES/ansel.mo -%%ANSDIR%%/locale/fi_FI/LC_MESSAGES/ansel.mo -%%ANSDIR%%/locale/fi_FI/help.xml -%%ANSDIR%%/locale/it_IT/LC_MESSAGES/ansel.mo -%%ANSDIR%%/locale/lt_LT/LC_MESSAGES/ansel.mo -%%ANSDIR%%/locale/sl_SI/LC_MESSAGES/ansel.mo -%%ANSDIR%%/locale/sv_SE/LC_MESSAGES/ansel.mo -%%ANSDIR%%/locale/zh_TW/LC_MESSAGES/ansel.mo -%%ANSDIR%%/perms.php -%%ANSDIR%%/po/.cvsignore -%%ANSDIR%%/po/README -%%ANSDIR%%/po/ansel.pot -%%ANSDIR%%/po/de_DE.po -%%ANSDIR%%/po/es_ES.po -%%ANSDIR%%/po/fi_FI.po -%%ANSDIR%%/po/it_IT.po -%%ANSDIR%%/po/lt_LT.po -%%ANSDIR%%/po/sl_SI.po -%%ANSDIR%%/po/sv_SE.po -%%ANSDIR%%/po/zh_TW.po -%%ANSDIR%%/scripts/.htaccess -%%ANSDIR%%/scripts/ansel.php -%%ANSDIR%%/scripts/garbage_collection.php -%%ANSDIR%%/scripts/recursive_import.php -%%ANSDIR%%/scripts/sql/ansel.sql -%%ANSDIR%%/scripts/upgrades/2006-11-27_cleanup.php -%%ANSDIR%%/scripts/upgrades/2006-11-27_datatree_to_sql_renames.php -%%ANSDIR%%/scripts/upgrades/2006-11-27_fix_default_images.php -%%ANSDIR%%/scripts/upgrades/2006-11-27_sql_images.php -%%ANSDIR%%/templates/captions/captions.inc -%%ANSDIR%%/templates/common-header.inc -%%ANSDIR%%/templates/gallery/delete_confirmation.inc -%%ANSDIR%%/templates/gallery/gallery.inc -%%ANSDIR%%/templates/group/category.inc -%%ANSDIR%%/templates/group/footer.inc -%%ANSDIR%%/templates/group/header.inc -%%ANSDIR%%/templates/group/owner.inc -%%ANSDIR%%/templates/group/pager.inc -%%ANSDIR%%/templates/image/edit_image.inc -%%ANSDIR%%/templates/image/preview_image.inc -%%ANSDIR%%/templates/list/filler.inc -%%ANSDIR%%/templates/list/footer.inc -%%ANSDIR%%/templates/list/gallery_footers.inc -%%ANSDIR%%/templates/list/gallery_headers.inc -%%ANSDIR%%/templates/list/gallery_summaries.inc -%%ANSDIR%%/templates/list/header.inc -%%ANSDIR%%/templates/list/images.inc -%%ANSDIR%%/templates/list/pager.inc -%%ANSDIR%%/templates/menu.inc -%%ANSDIR%%/templates/view/gallery.inc -%%ANSDIR%%/templates/view/image.inc -%%ANSDIR%%/templates/view/subgallery_header.inc -%%ANSDIR%%/templates/xppublish/javascript.inc -%%ANSDIR%%/templates/xppublish/list.inc -%%ANSDIR%%/templates/xppublish/login.inc -%%ANSDIR%%/templates/xppublish/new.inc -%%ANSDIR%%/test.php -%%ANSDIR%%/themes/graphics/add.png -%%ANSDIR%%/themes/graphics/ansel.png -%%ANSDIR%%/themes/graphics/favicon.ico -%%ANSDIR%%/themes/graphics/mini-error.png -%%ANSDIR%%/themes/graphics/mygalleries.png -%%ANSDIR%%/themes/graphics/mypics.png -%%ANSDIR%%/themes/graphics/resize.png -%%ANSDIR%%/themes/graphics/screen-error.png -%%ANSDIR%%/themes/graphics/slideshow_next.png -%%ANSDIR%%/themes/graphics/slideshow_pause.png -%%ANSDIR%%/themes/graphics/slideshow_play.png -%%ANSDIR%%/themes/graphics/slideshow_prev.png -%%ANSDIR%%/themes/graphics/text.png -%%ANSDIR%%/themes/graphics/thumb-error.png -%%ANSDIR%%/themes/screen.css -%%ANSDIR%%/view.php -%%ANSDIR%%/xppublish.php -%%HORDE_INC%%httpd-ansel.conf -@dirrm %%ANSDIR%%/themes/graphics -@dirrm %%ANSDIR%%/themes -@dirrm %%ANSDIR%%/templates/xppublish -@dirrm %%ANSDIR%%/templates/view -@dirrm %%ANSDIR%%/templates/list -@dirrm %%ANSDIR%%/templates/image -@dirrm %%ANSDIR%%/templates/group -@dirrm %%ANSDIR%%/templates/gallery -@dirrm %%ANSDIR%%/templates/captions -@dirrm %%ANSDIR%%/templates -@dirrm %%ANSDIR%%/scripts/upgrades -@dirrm %%ANSDIR%%/scripts/sql -@dirrm %%ANSDIR%%/scripts -@dirrm %%ANSDIR%%/po -@dirrm %%ANSDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%ANSDIR%%/locale/zh_TW -@dirrm %%ANSDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%ANSDIR%%/locale/sv_SE -@dirrm %%ANSDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%ANSDIR%%/locale/sl_SI -@dirrm %%ANSDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%ANSDIR%%/locale/lt_LT -@dirrm %%ANSDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%ANSDIR%%/locale/it_IT -@dirrm %%ANSDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%ANSDIR%%/locale/fi_FI -@dirrm %%ANSDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%ANSDIR%%/locale/es_ES -@dirrm %%ANSDIR%%/locale/en_US -@dirrm %%ANSDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%ANSDIR%%/locale/de_DE -@dirrm %%ANSDIR%%/locale -@dirrm %%ANSDIR%%/lib/Views -@dirrm %%ANSDIR%%/lib/Forms -@dirrm %%ANSDIR%%/lib/Exif -@dirrm %%ANSDIR%%/lib/Block -@dirrm %%ANSDIR%%/lib -@dirrm %%ANSDIR%%/js/src -@dirrm %%ANSDIR%%/js -@dirrm %%ANSDIR%%/img -@dirrm %%ANSDIR%%/gallery -@dirrm %%ANSDIR%%/config -@dirrm %%ANSDIR%% +%%HORDIR%%/config/.cvsignore +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/gallery/captions.php +%%HORDIR%%/gallery/delete.php +%%HORDIR%%/gallery/index.php +%%HORDIR%%/gallery/sort.php +%%HORDIR%%/gallery.php +%%HORDIR%%/group.php +%%HORDIR%%/image.php +%%HORDIR%%/img/download.php +%%HORDIR%%/img/ecard.php +%%HORDIR%%/img/full.php +%%HORDIR%%/img/index.php +%%HORDIR%%/img/mini.php +%%HORDIR%%/img/screen.php +%%HORDIR%%/img/thumb.php +%%HORDIR%%/img/upload.php +%%HORDIR%%/index.php +%%HORDIR%%/js/controls.js +%%HORDIR%%/js/dragdrop.js +%%HORDIR%%/js/effects.js +%%HORDIR%%/js/scriptaculous.js +%%HORDIR%%/js/slideshow.js +%%HORDIR%%/js/src/controls.js +%%HORDIR%%/js/src/dragdrop.js +%%HORDIR%%/js/src/effects.js +%%HORDIR%%/js/src/scriptaculous.js +%%HORDIR%%/js/src/slideshow.js +%%HORDIR%%/lib/Ansel.php +%%HORDIR%%/lib/Block/gallery.php +%%HORDIR%%/lib/Block/random_gallery.php +%%HORDIR%%/lib/Block/random_photo.php +%%HORDIR%%/lib/Exif/canon.php +%%HORDIR%%/lib/Exif/fujifilm.php +%%HORDIR%%/lib/Exif/gps.php +%%HORDIR%%/lib/Exif/nikon.php +%%HORDIR%%/lib/Exif/olympus.php +%%HORDIR%%/lib/Exif/sanyo.php +%%HORDIR%%/lib/Exif.php +%%HORDIR%%/lib/Forms/Ecard.php +%%HORDIR%%/lib/Forms/Upload.php +%%HORDIR%%/lib/Views/Abstract.php +%%HORDIR%%/lib/Views/Gallery.php +%%HORDIR%%/lib/Views/Image.php +%%HORDIR%%/lib/XPPublisher.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/list.php +%%HORDIR%%/locale/de_DE/LC_MESSAGES/ansel.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/ansel.mo +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/ansel.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/it_IT/LC_MESSAGES/ansel.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/ansel.mo +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/ansel.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/ansel.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/ansel.mo +%%HORDIR%%/perms.php +%%HORDIR%%/po/.cvsignore +%%HORDIR%%/po/README +%%HORDIR%%/po/ansel.pot +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/ansel.php +%%HORDIR%%/scripts/garbage_collection.php +%%HORDIR%%/scripts/recursive_import.php +%%HORDIR%%/scripts/sql/ansel.sql +%%HORDIR%%/scripts/upgrades/2006-11-27_cleanup.php +%%HORDIR%%/scripts/upgrades/2006-11-27_datatree_to_sql_renames.php +%%HORDIR%%/scripts/upgrades/2006-11-27_fix_default_images.php +%%HORDIR%%/scripts/upgrades/2006-11-27_sql_images.php +%%HORDIR%%/templates/captions/captions.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/gallery/delete_confirmation.inc +%%HORDIR%%/templates/gallery/gallery.inc +%%HORDIR%%/templates/group/category.inc +%%HORDIR%%/templates/group/footer.inc +%%HORDIR%%/templates/group/header.inc +%%HORDIR%%/templates/group/owner.inc +%%HORDIR%%/templates/group/pager.inc +%%HORDIR%%/templates/image/edit_image.inc +%%HORDIR%%/templates/image/preview_image.inc +%%HORDIR%%/templates/list/filler.inc +%%HORDIR%%/templates/list/footer.inc +%%HORDIR%%/templates/list/gallery_footers.inc +%%HORDIR%%/templates/list/gallery_headers.inc +%%HORDIR%%/templates/list/gallery_summaries.inc +%%HORDIR%%/templates/list/header.inc +%%HORDIR%%/templates/list/images.inc +%%HORDIR%%/templates/list/pager.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/view/gallery.inc +%%HORDIR%%/templates/view/image.inc +%%HORDIR%%/templates/view/subgallery_header.inc +%%HORDIR%%/templates/xppublish/javascript.inc +%%HORDIR%%/templates/xppublish/list.inc +%%HORDIR%%/templates/xppublish/login.inc +%%HORDIR%%/templates/xppublish/new.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/add.png +%%HORDIR%%/themes/graphics/ansel.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/mini-error.png +%%HORDIR%%/themes/graphics/mygalleries.png +%%HORDIR%%/themes/graphics/mypics.png +%%HORDIR%%/themes/graphics/resize.png +%%HORDIR%%/themes/graphics/screen-error.png +%%HORDIR%%/themes/graphics/slideshow_next.png +%%HORDIR%%/themes/graphics/slideshow_pause.png +%%HORDIR%%/themes/graphics/slideshow_play.png +%%HORDIR%%/themes/graphics/slideshow_prev.png +%%HORDIR%%/themes/graphics/text.png +%%HORDIR%%/themes/graphics/thumb-error.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/view.php +%%HORDIR%%/xppublish.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/gallery +@dirrm %%HORDIR%%/img +@dirrm %%HORDIR%%/js/src +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Exif +@dirrm %%HORDIR%%/lib/Forms +@dirrm %%HORDIR%%/lib/Views +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/captions +@dirrm %%HORDIR%%/templates/gallery +@dirrm %%HORDIR%%/templates/group +@dirrm %%HORDIR%%/templates/image +@dirrm %%HORDIR%%/templates/list +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates/xppublish +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/www/horde-base/Makefile b/www/horde-base/Makefile index 4536d3060587..9718818300e0 100644 --- a/www/horde-base/Makefile +++ b/www/horde-base/Makefile @@ -7,13 +7,13 @@ PORTNAME= horde DISTVERSION= 3.1.4 +DISTVERSIONPREFIX= PORTREVISION= 1 CATEGORIES= www -MASTER_SITES= HORDE PKGNAMESUFFIX= -base MAINTAINER= beech@alaskaparadise.com -COMMENT= A common code-base used by Horde applications, written in PHP +COMMENT= Common code-base used by Horde applications, written in PHP #---------------------------------------------------------------------------- # You may define these options: @@ -80,13 +80,8 @@ RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ CONFLICTS= horde-2.* -NO_BUILD= yes USE_GETTEXT= yes # Already implied by USE_PHP =gettext, to pet portlint USE_PHP= ctype gettext session -SUB_FILES= pkg-message pkg-deinstall pkg-install -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -PKGINSTALL= ${WRKDIR}/pkg-install -PKGMESSAGE= ${WRKDIR}/pkg-message .if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp @@ -197,30 +192,8 @@ RUN_DEPENDS+= ${PEARDIR}/Services/Weather.php:${PORTSDIR}/misc/pear-Services_Wea RUN_DEPENDS+= ${LOCALBASE}/share/GeoIP/GeoIP.dat:${PORTSDIR}/net/GeoIP .endif -REINPLACE_ARGS= -i.beforeHorde PORTDOCS= README CHANGES CODING_STANDARDS CONTRIBUTING CREDITS HACKING INSTALL \ PERFORMANCE RELEASE_NOTES SECURITY TODO TRANSLATIONS UPGRADING -CONFFILE= conf.php hooks.php mime_drivers.php motd.php nls.php prefs.php registry.php -SUB_DIRS= admin config js lib locale po scripts services templates themes util - -LHORDEDIR?= www/horde -LHORDESBIN?= sbin - -PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN} -SUB_LIST+= HORDEDIR=${HORDEDIR} HORDESBIN=${HORDESBIN} \ - HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} - -HORDEDIR= ${PREFIX}/${LHORDEDIR} -HORDESBIN= ${PREFIX}/${LHORDESBIN} -CONFDIR= ${HORDEDIR}/config - -PEARDIR?= ${LOCALBASE}/share/pear -LOG_FILE?= /var/log/horde.log - -PATCHES2RM= po/translation.php config/conf.xml scripts/sql/README \ - config/mime_drivers.php.dist config/registry.php.dist -SEDIN2RM= lib/Horde/Auth/mcal.php config/conf.xml docs/INSTALL \ - config/mime_drivers.php.dist .include <bsd.port.pre.mk> @@ -233,13 +206,7 @@ USE_PHP+= mcal . endif .endif -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @${RM} ${PATCHES2RM:S|^|${WRKSRC}/|:S|$|.orig|} - @${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:"\ - ${WRKSRC}/config/mime_drivers.php.dist +pre-patch: .if !defined(WITHOUT_X11) . if !defined(WITHOUT_WV) @${REINPLACE_CMD} -e "s://UNCOMMENTIFWV::" ${WRKSRC}/config/mime_drivers.php.dist @@ -267,16 +234,10 @@ pre-configure: @${REINPLACE_CMD} -e "s:GeoIP lookup will not be performed.\"/>:GeoIP lookup will not be performed.\">${LOCALBASE}/share/GeoIP/GeoIP.dat</configstring>:" \ ${WRKSRC}/config/conf.xml .endif - @${REINPLACE_CMD} -e "s:/tmp/horde.log:${LOG_FILE}:" ${WRKSRC}/config/conf.xml @${REINPLACE_CMD} -e "s:/etc/mpasswd:${LOCALBASE}/etc/mpasswd:g" \ ${WRKSRC}/lib/Horde/Auth/mcal.php @${REINPLACE_CMD} -e "s:/usr/local/apache/htdocs:${PREFIX}/www:g" \ - ${WRKSRC}/docs/INSTALL - @${RM} ${SEDIN2RM:S|^|${WRKSRC}/|:S|$|.beforeHorde|} - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; && \ - ${FIND} . -name "*.beforeHorde" -delete) + ${WRKDIR}/docs/INSTALL pre-install: .if !defined(WITHOUT_SUPPORTED_DB) && exists(${LOCALBASE}/bin/php) @@ -302,41 +263,5 @@ pre-install: ${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL .endif -# Copy RCSID tag from conf.xml into conf.php to stop Horde complaining - @if ! ${GREP} -q -e "$$Horde.*conf\.xml" ${WRKSRC}/config/conf.php.dist; then \ - ${GREP} -h "$$Horde.*conf\.xml" ${WRKSRC} ${WRKSRC}/config/conf.xml \ - | ${SED} -e 's#^ *<!--#//#' -e 's# *--> *$$##g' \ - >> ${WRKSRC}/config/conf.php.dist; \ - fi - -do-install: - @${MKDIR} ${HORDEDIR} - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${HORDEDIR}/ - @${CP} -p ${WRKSRC}/*.php ${HORDEDIR} - @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh - @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDEDIR}/ - @${CHMOD} -R o-rwx ${HORDEDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${HORDEDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${HORDEDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${TOUCH} ${LOG_FILE} - ${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE} - ${ECHO_CMD} "@exec ${TOUCH} ${LOG_FILE};${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE}"\ - >> ${TMPPLIST} - ${ECHO_CMD} "@unexec if [ ! -s ${LOG_FILE} ];then ${RM} -f ${LOG_FILE};fi"\ - >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" .include <bsd.port.post.mk> diff --git a/www/horde-base/bsd.horde.mk b/www/horde-base/bsd.horde.mk new file mode 100644 index 000000000000..7b24b0e9205f --- /dev/null +++ b/www/horde-base/bsd.horde.mk @@ -0,0 +1,112 @@ +#-*- mode: makefile; tab-width: 4; -* +# ex:ts=4 +# +# Maintainers: Beech Rintoul <beech@alaskaparadise.com>, +# Andrew Pantyukhin <infofarmer@FreeBSD.org> +# + +MASTER_SITES?= HORDE +DISTVERSIONPREFIX?= h3- + +.if defined(USE_HORDE) && ${USE_HORDE:Mbase} +RUN_DEPENDS+= ${HORBAS}/rpc.php:${PORTSDIR}/www/horde-base +.endif + +#USE_BZIP2= yes +NO_BUILD= yes + +PEARDIR?= ${LOCALBASE}/share/pear +PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h +HORBAS?= ${PREFIX}/www/horde +HORDIR?= ${HORBAS}${PORTNAME:S|^|/|:S|/horde||} +HORCFG?= ${HORDIR}/config +HORLOG?= /var/log/horde.log +PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall +PKGINSTALL?= ${WRKDIR}/pkg-install +PLIST_SUB+= HORDIR=${HORDIR:S|^${PREFIX}/||} HORBAS=${HORBAS:S|^${PREFIX}/||} +SUB_LIST+= HORDIR=${HORDIR} PORTSDIR=${PORTSDIR} HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} HORCFG=${HORCFG} \ + PORTNAME=${PORTNAME} +PKGMESSAGE?= ${WRKDIR}/pkg-message +.if !defined(USE_HORDE) || !${USE_HORDE:Mpkg-message} +SUB_FILES?= pkg-message +.endif + +.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) +RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp +WANT_PHP_CGI= yes +HORDEADMUSR?= horde +SUB_LIST+= WITH_SUPHP=yes +.else +WANT_PHP_WEB= yes +.endif + +HOSTNAME?= `/bin/hostname` +SERVOS?= ${OPSYS}-${OSREL} + +.if !target(post-extract) +post-extract: + @${RM} -f ${WRKSRC}/COPYING ${WRKSRC}/LICENSE + @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ + @${MV} ${WRKSRC}/docs ${WRKDIR}/ +.endif + +.if !target(post-patch) +post-patch: +. for file in pkg-deinstall pkg-install + @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${.CURDIR}/../../www/horde-base/files/${file}.in > ${WRKDIR}/${file} +. endfor +. if defined(USE_HORDE) && ${USE_HORDE:Mpkg-message} + @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${.CURDIR}/../../www/horde-base/files/pkg-message.common.in >\ + ${WRKDIR}/pkg-message +. endif + @${EGREP} -lr '(/usr/local|%%LOCALBASE%%|/tmp/horde.log)' ${WRKSRC}/config/ |\ + ${XARGS} ${REINPLACE_CMD} -Ee 's:(/usr/local|%%LOCALBASE%%):${LOCALBASE}:;s|/tmp/horde.log|${HORLOG}|' + @if [ -d ${WRKSRC}/scripts ]; then\ + ${EGREP} -lr '(/usr/local/bin/php|usr/bin/php)' ${WRKSRC}/scripts/ |\ + ${XARGS} ${REINPLACE_CMD} -Ee 's:(/usr/local/bin/php|/usr/bin/php):${LOCALBASE}/bin/php:'; fi +# Copy RCSID tag from conf.xml into conf.php to stop Horde complaining + @if [ -f ${WRKSRC}/config/conf.php.dist ] &&\ + ! ${GREP} -qe "$$Horde:.*conf\.xml" ${WRKSRC}/config/conf.php.dist; then \ + ${GREP} -hm1 "$$Horde:.*conf\.xml" ${WRKSRC}/config/conf.xml |\ + ${SED} -e 's#^ *<!--#//#;s# *--> *$$##g' \ + >> ${WRKSRC}/config/conf.php.dist; \ + fi +.endif + +.if !target(post-configure) +post-configure: + @${FIND} ${WRKSRC} -name \*.orig -delete -or -name \*.bak -delete +.endif + +.if !target(do-install) +do-install: + @${INSTALL} -d ${HORDIR}/ + @${CP} -Rp ${WRKSRC}/ ${HORDIR}/ + @${TOUCH} ${HORLOG} + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDIR}/ ${HORLOG} + @${CHMOD} -R o-rwx ${HORDIR}/ ${HORLOG} + @${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} %D/${HORDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} + @${ECHO_CMD} @exec ${CHMOD} -R o-rwx %D/${HORDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} + @${ECHO_CMD} "@exec ${TOUCH} ${HORLOG};${CHOWN} ${WWWOWN}:${WWWGRP} ${HORLOG}" >> ${TMPPLIST} +.if ${HORBAS} == ${HORDIR} + @${ECHO_CMD} "@unexec if [ ! -s ${HORLOG} ];then ${RM} -f ${HORLOG};fi" >> ${TMPPLIST} +.endif +.ifndef NOPORTDOCS + @${INSTALL} -d ${DOCSDIR}/ + @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/docs/|} ${DOCSDIR}/ +.endif + @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + @${ECHO_MSG} + @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} +.endif + +horde-plist: extract + @${FIND} -s ${WRKSRC} -not -type d | ${SED} -e 's|^${WRKSRC}|%%HORDIR%%|' > ${PLIST} + @${FIND} -ds ${WRKSRC} -type d -not -name ${DISTNAME} -empty |\ + ${SED} -e 's|^${WRKSRC}|@exec mkdir -p %D/%%HORDIR%%|' >> ${PLIST} + @${FIND} -ds ${WRKSRC} -type d -not -name ${DISTNAME} |\ + ${SED} -e 's|^${WRKSRC}|@dirrm %%HORDIR%%|' |\ + ${SED} -Ee '/%(\/lib\/data|\/config)/s|dirrm|dirrmtry|' >> ${PLIST} + @${ECHO_CMD} @dirrmtry %%HORDIR%% >> ${PLIST} + @${ECHO_CMD} @dirrmtry %%HORBAS%% >> ${PLIST} diff --git a/www/horde-base/files/pkg-deinstall.in b/www/horde-base/files/pkg-deinstall.in index 7f9f6649e9fa..c9c309067789 100644 --- a/www/horde-base/files/pkg-deinstall.in +++ b/www/horde-base/files/pkg-deinstall.in @@ -6,24 +6,12 @@ PATH=/usr/sbin:/usr/bin:/bin ; export PATH handle_config() { - # Try to restore httpd.conf when deinstalling Horde - - if [ -f %%APACHE_CONF%%.beforeHorde ] ; then - echo "Restoring httpd.conf..." - cp %%APACHE_CONF%% %%APACHE_CONF%%.deinstHorde - sed -i.tmp -e "s:Include ${PKG_PREFIX}/etc/horde:# Include ${PKG_PREFIX}/etc/horde:g" \ - %%APACHE_CONF%% - rm %%APACHE_CONF%%.tmp - fi - - # Backup Horde config files, if needed. - if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%HORDEDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 + for cf in %%HORDIR%%/config/*.dist; do + diff -bBqw $cf ${cf%.dist} >/dev/null 2>&1 case $? in 0) # original config file, delete - rm -f $cf + rm -f ${cf%.dist} ;; 1) # config file has been updated, leave it ;; @@ -41,18 +29,13 @@ case $2 in POST-DEINSTALL) if [ x%%HORDEADMUSR%% != x ]; then cat <<EOMSG -The horde port has been deleted. -If you are not upgrading and don't intend to use -Horde any more then you may wish to delete -the %%HORDEADMUSR%% account, which can be done with -the following command: +A horde port has been deleted. If you are not upgrading +and don't intend to use Horde any more then you may wish +to delete the %%HORDEADMUSR%% account, which can be done +with the following command: # pw userdel %%HORDEADMUSR%% EOMSG - if [ -d %%PREFIX%%/%%MYADMDIR%% ] ; then - echo " # rm -rf %%PREFIX%%/%%HORDEDIR%%/" - fi - echo - fi - ;; + fi + ;; esac diff --git a/www/horde-base/files/pkg-install.in b/www/horde-base/files/pkg-install.in index a2dc1e225389..2ecbe6d3f5ef 100644 --- a/www/horde-base/files/pkg-install.in +++ b/www/horde-base/files/pkg-install.in @@ -9,7 +9,7 @@ PATH=/usr/sbin:/usr/bin:/bin ; export PATH WITH_SUPHP=%%WITH_SUPHP%% -hordedir=%%HORDEDIR%% +hordedir=%%HORDIR%% hordeusr=%%HORDEADMUSR%% hordegrp=%%HORDEGRP%% @@ -104,9 +104,9 @@ case $2 in if [ -z "${PACKAGE_BUILDING}" ]; then # Copy over sample config files unless they already exist - for cf in `ls %%HORDEDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf + for cf in %%HORDIR%%/config/*.dist; do + if [ ! -f ${cf%.dist} ]; then + cp -p $cf ${cf%.dist} fi done fi diff --git a/www/horde-base/files/pkg-message.common.in b/www/horde-base/files/pkg-message.common.in new file mode 100644 index 000000000000..37de388ef932 --- /dev/null +++ b/www/horde-base/files/pkg-message.common.in @@ -0,0 +1,9 @@ +************************************************************************ +%%PORTNAME%% has been installed in %%HORDIR%% with +blank configuration files. + +Horde must be configured; if not, see `pkg_info -Dx horde-base'. + +Finally, you must login to Horde as an Administrator to finish the +configuration. +************************************************************************ diff --git a/www/horde-base/files/pkg-message.in b/www/horde-base/files/pkg-message.in index 6620f9f27fe1..fa02fefea7bc 100644 --- a/www/horde-base/files/pkg-message.in +++ b/www/horde-base/files/pkg-message.in @@ -1,12 +1,12 @@ ************************************************************************ -Horde has been installed in %%HORDEDIR%% with your blank +Horde has been installed in %%HORDIR%% with your blank configuration files. WARNING! the first user will get logged in as an administrator! ******** If you want Horde to access a database, you have to run the -appropriate scripts located in %%HORDEDIR%%/scripts/sql. +appropriate scripts located in %%HORDIR%%/scripts/sql. 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. diff --git a/www/horde-base/pkg-plist b/www/horde-base/pkg-plist index 29e0d333d896..e3ab2a254991 100644 --- a/www/horde-base/pkg-plist +++ b/www/horde-base/pkg-plist @@ -1,1715 +1,1715 @@ -%%HORDESBIN%%/horde_set_perms.sh -%%HORDEDIR%%/admin/cmdshell.php -%%HORDEDIR%%/admin/datatree.php -%%HORDEDIR%%/admin/groups.php -%%HORDEDIR%%/admin/index.php -%%HORDEDIR%%/admin/locale/en_US/help.xml -%%HORDEDIR%%/admin/locale/fi_FI/help.xml -%%HORDEDIR%%/admin/locale/hu_HU/help.xml -%%HORDEDIR%%/admin/perms/addchild.php -%%HORDEDIR%%/admin/perms/delete.php -%%HORDEDIR%%/admin/perms/edit.php -%%HORDEDIR%%/admin/perms/index.php -%%HORDEDIR%%/admin/phpshell.php -%%HORDEDIR%%/admin/sessions.php -%%HORDEDIR%%/admin/setup/config.php -%%HORDEDIR%%/admin/setup/diff.php -%%HORDEDIR%%/admin/setup/index.php -%%HORDEDIR%%/admin/setup/scripts.php -%%HORDEDIR%%/admin/sqlshell.php -%%HORDEDIR%%/admin/templates.php -%%HORDEDIR%%/admin/user.php -%%HORDEDIR%%/config/.htaccess -%%HORDEDIR%%/config/conf.php.dist -%%HORDEDIR%%/config/conf.xml -%%HORDEDIR%%/config/hooks.php.dist -%%HORDEDIR%%/config/mime_drivers.php.dist -%%HORDEDIR%%/config/motd.php.dist -%%HORDEDIR%%/config/nls.php.dist -%%HORDEDIR%%/config/prefs.php.dist -%%HORDEDIR%%/config/registry.php.dist -%%HORDEDIR%%/index.php -%%HORDEDIR%%/js/addEvent.php -%%HORDEDIR%%/js/alphaImageLoader.php -%%HORDEDIR%%/js/enter_key_trap.js -%%HORDEDIR%%/js/form_assign.js -%%HORDEDIR%%/js/form_helpers.js -%%HORDEDIR%%/js/form_sections.js -%%HORDEDIR%%/js/hideable.js -%%HORDEDIR%%/js/horde.ie.js -%%HORDEDIR%%/js/horde.js -%%HORDEDIR%%/js/httpclient.js -%%HORDEDIR%%/js/ieEscGuard.js -%%HORDEDIR%%/js/image.js -%%HORDEDIR%%/js/open_colorpicker.js -%%HORDEDIR%%/js/popup.js -%%HORDEDIR%%/js/sorter.js -%%HORDEDIR%%/js/stripe.js -%%HORDEDIR%%/js/tables.js -%%HORDEDIR%%/js/tooltip.js -%%HORDEDIR%%/lib/.htaccess -%%HORDEDIR%%/lib/Block/account.php -%%HORDEDIR%%/lib/Block/color.php -%%HORDEDIR%%/lib/Block/fortune.php -%%HORDEDIR%%/lib/Block/google.php -%%HORDEDIR%%/lib/Block/iframe.php -%%HORDEDIR%%/lib/Block/metar.php -%%HORDEDIR%%/lib/Block/moon.php -%%HORDEDIR%%/lib/Block/sunrise.php -%%HORDEDIR%%/lib/Block/time.php -%%HORDEDIR%%/lib/Block/weatherdotcom.php -%%HORDEDIR%%/lib/Block/weatherdotcom_strings.php -%%HORDEDIR%%/lib/File/CSV.php -%%HORDEDIR%%/lib/File/PDF.php -%%HORDEDIR%%/lib/File/PDF/fonts/courier.php -%%HORDEDIR%%/lib/File/PDF/fonts/helvetica.php -%%HORDEDIR%%/lib/File/PDF/fonts/helveticab.php -%%HORDEDIR%%/lib/File/PDF/fonts/helveticabi.php -%%HORDEDIR%%/lib/File/PDF/fonts/helveticai.php -%%HORDEDIR%%/lib/File/PDF/fonts/symbol.php -%%HORDEDIR%%/lib/File/PDF/fonts/times.php -%%HORDEDIR%%/lib/File/PDF/fonts/timesb.php -%%HORDEDIR%%/lib/File/PDF/fonts/timesbi.php -%%HORDEDIR%%/lib/File/PDF/fonts/timesi.php -%%HORDEDIR%%/lib/File/PDF/fonts/zapfdingbats.php -%%HORDEDIR%%/lib/Horde.php -%%HORDEDIR%%/lib/Horde/Array.php -%%HORDEDIR%%/lib/Horde/Auth.php -%%HORDEDIR%%/lib/Horde/Auth/Signup.php -%%HORDEDIR%%/lib/Horde/Auth/application.php -%%HORDEDIR%%/lib/Horde/Auth/auto.php -%%HORDEDIR%%/lib/Horde/Auth/composite.php -%%HORDEDIR%%/lib/Horde/Auth/customsql.php -%%HORDEDIR%%/lib/Horde/Auth/cyrsql.php -%%HORDEDIR%%/lib/Horde/Auth/cyrus.php -%%HORDEDIR%%/lib/Horde/Auth/ftp.php -%%HORDEDIR%%/lib/Horde/Auth/http.php -%%HORDEDIR%%/lib/Horde/Auth/imap.php -%%HORDEDIR%%/lib/Horde/Auth/imsp.php -%%HORDEDIR%%/lib/Horde/Auth/ipbasic.php -%%HORDEDIR%%/lib/Horde/Auth/ipmap.php -%%HORDEDIR%%/lib/Horde/Auth/kolab.php -%%HORDEDIR%%/lib/Horde/Auth/krb5.php -%%HORDEDIR%%/lib/Horde/Auth/ldap.php -%%HORDEDIR%%/lib/Horde/Auth/login.php -%%HORDEDIR%%/lib/Horde/Auth/mcal.php -%%HORDEDIR%%/lib/Horde/Auth/pam.php -%%HORDEDIR%%/lib/Horde/Auth/passwd.php -%%HORDEDIR%%/lib/Horde/Auth/peclsasl.php -%%HORDEDIR%%/lib/Horde/Auth/radius.php -%%HORDEDIR%%/lib/Horde/Auth/smb.php -%%HORDEDIR%%/lib/Horde/Auth/smbclient.php -%%HORDEDIR%%/lib/Horde/Auth/sql.php -%%HORDEDIR%%/lib/Horde/Block.php -%%HORDEDIR%%/lib/Horde/Block/Collection.php -%%HORDEDIR%%/lib/Horde/Block/Layout/Manager.php -%%HORDEDIR%%/lib/Horde/Block/Layout/View.php -%%HORDEDIR%%/lib/Horde/Block/UI.php -%%HORDEDIR%%/lib/Horde/Browser.php -%%HORDEDIR%%/lib/Horde/Browser/imode.php -%%HORDEDIR%%/lib/Horde/CLI.php -%%HORDEDIR%%/lib/Horde/Cache.php -%%HORDEDIR%%/lib/Horde/Cache/file.php -%%HORDEDIR%%/lib/Horde/Cache/zps4.php -%%HORDEDIR%%/lib/Horde/Cipher.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cbc.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cfb64.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ecb.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ofb64.php -%%HORDEDIR%%/lib/Horde/Cipher/blowfish.php -%%HORDEDIR%%/lib/Horde/Cipher/cast128.php -%%HORDEDIR%%/lib/Horde/Cipher/des.php -%%HORDEDIR%%/lib/Horde/Cipher/rc2.php -%%HORDEDIR%%/lib/Horde/Cipher/rc4.php -%%HORDEDIR%%/lib/Horde/Compress.php -%%HORDEDIR%%/lib/Horde/Compress/dbx.php -%%HORDEDIR%%/lib/Horde/Compress/gzip.php -%%HORDEDIR%%/lib/Horde/Compress/tar.php -%%HORDEDIR%%/lib/Horde/Compress/tnef.php -%%HORDEDIR%%/lib/Horde/Compress/zip.php -%%HORDEDIR%%/lib/Horde/Config.php -%%HORDEDIR%%/lib/Horde/Crypt.php -%%HORDEDIR%%/lib/Horde/Crypt/pgp.php -%%HORDEDIR%%/lib/Horde/Crypt/smime.php -%%HORDEDIR%%/lib/Horde/Data.php -%%HORDEDIR%%/lib/Horde/Data/csv.php -%%HORDEDIR%%/lib/Horde/Data/icalendar.php -%%HORDEDIR%%/lib/Horde/Data/imc.php -%%HORDEDIR%%/lib/Horde/Data/outlookcsv.php -%%HORDEDIR%%/lib/Horde/Data/tsv.php -%%HORDEDIR%%/lib/Horde/Data/vcard.php -%%HORDEDIR%%/lib/Horde/Data/vnote.php -%%HORDEDIR%%/lib/Horde/Data/vtodo.php -%%HORDEDIR%%/lib/Horde/DataTree.php -%%HORDEDIR%%/lib/Horde/DataTree/null.php -%%HORDEDIR%%/lib/Horde/DataTree/sql.php -%%HORDEDIR%%/lib/Horde/Date.php -%%HORDEDIR%%/lib/Horde/Editor.php -%%HORDEDIR%%/lib/Horde/Editor/htmlarea.php -%%HORDEDIR%%/lib/Horde/Form.php -%%HORDEDIR%%/lib/Horde/Form/Action.php -%%HORDEDIR%%/lib/Horde/Form/Action/conditional_enable.php -%%HORDEDIR%%/lib/Horde/Form/Action/conditional_setvalue.php -%%HORDEDIR%%/lib/Horde/Form/Action/reload.php -%%HORDEDIR%%/lib/Horde/Form/Action/submit.php -%%HORDEDIR%%/lib/Horde/Form/Action/sum_fields.php -%%HORDEDIR%%/lib/Horde/Form/Action/updatefield.php -%%HORDEDIR%%/lib/Horde/Form/Renderer.php -%%HORDEDIR%%/lib/Horde/Form/Type/tableset.php -%%HORDEDIR%%/lib/Horde/Graph.php -%%HORDEDIR%%/lib/Horde/Graph/Chart/pie.php -%%HORDEDIR%%/lib/Horde/Graph/Chart/pie3d.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/bar.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/bargrouped.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/barstacked.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/line.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/scatter.php -%%HORDEDIR%%/lib/Horde/Group.php -%%HORDEDIR%%/lib/Horde/Group/hooks.php -%%HORDEDIR%%/lib/Horde/Group/ldap.php -%%HORDEDIR%%/lib/Horde/Help.php -%%HORDEDIR%%/lib/Horde/History.php -%%HORDEDIR%%/lib/Horde/IMAP/ACL.php -%%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc2086.php -%%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc4314.php -%%HORDEDIR%%/lib/Horde/IMAP/Admin.php -%%HORDEDIR%%/lib/Horde/IMAP/Cache.php -%%HORDEDIR%%/lib/Horde/IMAP/Search.php -%%HORDEDIR%%/lib/Horde/IMAP/Sort.php -%%HORDEDIR%%/lib/Horde/IMAP/Thread.php -%%HORDEDIR%%/lib/Horde/IMAP/Tree.php -%%HORDEDIR%%/lib/Horde/Identity.php -%%HORDEDIR%%/lib/Horde/Image.php -%%HORDEDIR%%/lib/Horde/Image/gd.php -%%HORDEDIR%%/lib/Horde/Image/im.php -%%HORDEDIR%%/lib/Horde/Image/png.php -%%HORDEDIR%%/lib/Horde/Image/rgb.php -%%HORDEDIR%%/lib/Horde/Image/svg.php -%%HORDEDIR%%/lib/Horde/Image/swf.php -%%HORDEDIR%%/lib/Horde/Kolab.php -%%HORDEDIR%%/lib/Horde/LDAP.php -%%HORDEDIR%%/lib/Horde/MIME.php -%%HORDEDIR%%/lib/Horde/MIME/Contents.php -%%HORDEDIR%%/lib/Horde/MIME/Headers.php -%%HORDEDIR%%/lib/Horde/MIME/MDN.php -%%HORDEDIR%%/lib/Horde/MIME/Magic.php -%%HORDEDIR%%/lib/Horde/MIME/Message.php -%%HORDEDIR%%/lib/Horde/MIME/Part.php -%%HORDEDIR%%/lib/Horde/MIME/Structure.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/css.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/deb.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/default.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/enriched.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/enscript.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/html.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/images.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/msexcel.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/mspowerpoint.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/msword.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/common.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/global_document.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/main_html.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/palm.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_header.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_inlined.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_mapping.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_cells.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_columns.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_rows.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/pdf.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/php.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/plain.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/rar.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/report.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/rfc822.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/richtext.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/rpm.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/security.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/simple.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/source.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/srchighlite.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/tgz.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/tnef.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/vcard.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/webcpp.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/zip.php -%%HORDEDIR%%/lib/Horde/MIME/mime.magic.php -%%HORDEDIR%%/lib/Horde/MIME/mime.mapping.php -%%HORDEDIR%%/lib/Horde/Maintenance.php -%%HORDEDIR%%/lib/Horde/Menu.php -%%HORDEDIR%%/lib/Horde/Mobile.php -%%HORDEDIR%%/lib/Horde/Mobile/Renderer.php -%%HORDEDIR%%/lib/Horde/Mobile/Renderer/html.php -%%HORDEDIR%%/lib/Horde/Mobile/Renderer/wml.php -%%HORDEDIR%%/lib/Horde/NLS.php -%%HORDEDIR%%/lib/Horde/NLS/GeoIP.php -%%HORDEDIR%%/lib/Horde/NLS/carsigns.php -%%HORDEDIR%%/lib/Horde/NLS/coordinates.php -%%HORDEDIR%%/lib/Horde/NLS/countries.php -%%HORDEDIR%%/lib/Horde/NLS/tld.php -%%HORDEDIR%%/lib/Horde/Notification.php -%%HORDEDIR%%/lib/Horde/Notification/Event.php -%%HORDEDIR%%/lib/Horde/Notification/Listener.php -%%HORDEDIR%%/lib/Horde/Notification/Listener/audio.php -%%HORDEDIR%%/lib/Horde/Notification/Listener/javascript.php -%%HORDEDIR%%/lib/Horde/Notification/Listener/mobile.php -%%HORDEDIR%%/lib/Horde/Notification/Listener/status.php -%%HORDEDIR%%/lib/Horde/Perms.php -%%HORDEDIR%%/lib/Horde/Perms/UI.php -%%HORDEDIR%%/lib/Horde/Perms/datatree.php -%%HORDEDIR%%/lib/Horde/Prefs.php -%%HORDEDIR%%/lib/Horde/Prefs/CategoryManager.php -%%HORDEDIR%%/lib/Horde/Prefs/UI.php -%%HORDEDIR%%/lib/Horde/Prefs/imsp.php -%%HORDEDIR%%/lib/Horde/Prefs/kolab.php -%%HORDEDIR%%/lib/Horde/Prefs/ldap.php -%%HORDEDIR%%/lib/Horde/Prefs/session.php -%%HORDEDIR%%/lib/Horde/Prefs/sql.php -%%HORDEDIR%%/lib/Horde/RPC.php -%%HORDEDIR%%/lib/Horde/RPC/rest.php -%%HORDEDIR%%/lib/Horde/RPC/soap.php -%%HORDEDIR%%/lib/Horde/RPC/syncml.php -%%HORDEDIR%%/lib/Horde/RPC/syncml_wbxml.php -%%HORDEDIR%%/lib/Horde/RPC/webdav.php -%%HORDEDIR%%/lib/Horde/RPC/xmlrpc.php -%%HORDEDIR%%/lib/Horde/Registry.php -%%HORDEDIR%%/lib/Horde/SQL.php -%%HORDEDIR%%/lib/Horde/SQL/Keywords.php -%%HORDEDIR%%/lib/Horde/Scheduler.php -%%HORDEDIR%%/lib/Horde/Scheduler/cron.php -%%HORDEDIR%%/lib/Horde/Secret.php -%%HORDEDIR%%/lib/Horde/Serialize.php -%%HORDEDIR%%/lib/Horde/SessionHandler.php -%%HORDEDIR%%/lib/Horde/SessionHandler/dbm.php -%%HORDEDIR%%/lib/Horde/SessionHandler/ldap.php -%%HORDEDIR%%/lib/Horde/SessionHandler/memcache.php -%%HORDEDIR%%/lib/Horde/SessionHandler/mysql.php -%%HORDEDIR%%/lib/Horde/SessionHandler/none.php -%%HORDEDIR%%/lib/Horde/SessionHandler/oci8.php -%%HORDEDIR%%/lib/Horde/SessionHandler/pgsql.php -%%HORDEDIR%%/lib/Horde/SessionHandler/sapdb.php -%%HORDEDIR%%/lib/Horde/SessionHandler/sql.php -%%HORDEDIR%%/lib/Horde/SessionObjects.php -%%HORDEDIR%%/lib/Horde/Share.php -%%HORDEDIR%%/lib/Horde/String.php -%%HORDEDIR%%/lib/Horde/Template.php -%%HORDEDIR%%/lib/Horde/Text.php -%%HORDEDIR%%/lib/Horde/Text/Filter.php -%%HORDEDIR%%/lib/Horde/Text/Filter/bbcode.php -%%HORDEDIR%%/lib/Horde/Text/Filter/cleanascii.php -%%HORDEDIR%%/lib/Horde/Text/Filter/dimsignature.php -%%HORDEDIR%%/lib/Horde/Text/Filter/emails.php -%%HORDEDIR%%/lib/Horde/Text/Filter/emoticons.php -%%HORDEDIR%%/lib/Horde/Text/Filter/environment.php -%%HORDEDIR%%/lib/Horde/Text/Filter/highlightquotes.php -%%HORDEDIR%%/lib/Horde/Text/Filter/html2text.php -%%HORDEDIR%%/lib/Horde/Text/Filter/linkurls.php -%%HORDEDIR%%/lib/Horde/Text/Filter/rst.php -%%HORDEDIR%%/lib/Horde/Text/Filter/simplemarkup.php -%%HORDEDIR%%/lib/Horde/Text/Filter/space2html.php -%%HORDEDIR%%/lib/Horde/Text/Filter/tabs2spaces.php -%%HORDEDIR%%/lib/Horde/Text/Filter/text2html.php -%%HORDEDIR%%/lib/Horde/Text/Filter/words.php -%%HORDEDIR%%/lib/Horde/Text/Filter/xss.php -%%HORDEDIR%%/lib/Horde/Token.php -%%HORDEDIR%%/lib/Horde/Token/file.php -%%HORDEDIR%%/lib/Horde/Token/sql.php -%%HORDEDIR%%/lib/Horde/Tree.php -%%HORDEDIR%%/lib/Horde/Tree/html.php -%%HORDEDIR%%/lib/Horde/Tree/javascript.php -%%HORDEDIR%%/lib/Horde/Tree/select.php -%%HORDEDIR%%/lib/Horde/UI/Language.php -%%HORDEDIR%%/lib/Horde/UI/Pager.php -%%HORDEDIR%%/lib/Horde/UI/Tabs.php -%%HORDEDIR%%/lib/Horde/UI/VarRenderer.php -%%HORDEDIR%%/lib/Horde/UI/VarRenderer/html.php -%%HORDEDIR%%/lib/Horde/UI/VarRenderer/tableset_html.php -%%HORDEDIR%%/lib/Horde/UI/Widget.php -%%HORDEDIR%%/lib/Horde/Util.php -%%HORDEDIR%%/lib/Horde/VC.php -%%HORDEDIR%%/lib/Horde/VC/cvs.php -%%HORDEDIR%%/lib/Horde/VC/rcs.php -%%HORDEDIR%%/lib/Horde/VC/svn.php -%%HORDEDIR%%/lib/Horde/Variables.php -%%HORDEDIR%%/lib/Horde/iCalendar.php -%%HORDEDIR%%/lib/Horde/iCalendar/valarm.php -%%HORDEDIR%%/lib/Horde/iCalendar/vcard.php -%%HORDEDIR%%/lib/Horde/iCalendar/vevent.php -%%HORDEDIR%%/lib/Horde/iCalendar/vfreebusy.php -%%HORDEDIR%%/lib/Horde/iCalendar/vjournal.php -%%HORDEDIR%%/lib/Horde/iCalendar/vnote.php -%%HORDEDIR%%/lib/Horde/iCalendar/vtimezone.php -%%HORDEDIR%%/lib/Horde/iCalendar/vtodo.php -%%HORDEDIR%%/lib/Net/IMSP.php -%%HORDEDIR%%/lib/Net/IMSP/Auth.php -%%HORDEDIR%%/lib/Net/IMSP/Auth/cram_md5.php -%%HORDEDIR%%/lib/Net/IMSP/Auth/imtest.php -%%HORDEDIR%%/lib/Net/IMSP/Auth/plaintext.php -%%HORDEDIR%%/lib/Net/IMSP/Book.php -%%HORDEDIR%%/lib/Net/IMSP/Options.php -%%HORDEDIR%%/lib/Net/IMSP/Utils.php -%%HORDEDIR%%/lib/Net/SMS.php -%%HORDEDIR%%/lib/Net/SMS/clickatell_http.php -%%HORDEDIR%%/lib/Net/SMS/generic_smtp.php -%%HORDEDIR%%/lib/Net/SMS/sms2email_http.php -%%HORDEDIR%%/lib/Net/SMS/vodafoneitaly_smtp.php -%%HORDEDIR%%/lib/Net/SMS/win_http.php -%%HORDEDIR%%/lib/SyncML.php -%%HORDEDIR%%/lib/SyncML/Backend.php -%%HORDEDIR%%/lib/SyncML/Command.php -%%HORDEDIR%%/lib/SyncML/Command/Alert.php -%%HORDEDIR%%/lib/SyncML/Command/Final.php -%%HORDEDIR%%/lib/SyncML/Command/Get.php -%%HORDEDIR%%/lib/SyncML/Command/Map.php -%%HORDEDIR%%/lib/SyncML/Command/Put.php -%%HORDEDIR%%/lib/SyncML/Command/Results.php -%%HORDEDIR%%/lib/SyncML/Command/Status.php -%%HORDEDIR%%/lib/SyncML/Command/Sync.php -%%HORDEDIR%%/lib/SyncML/Command/SyncElement.php -%%HORDEDIR%%/lib/SyncML/Constants.php -%%HORDEDIR%%/lib/SyncML/Device.php -%%HORDEDIR%%/lib/SyncML/Device/Nokia.php -%%HORDEDIR%%/lib/SyncML/Device/P800.php -%%HORDEDIR%%/lib/SyncML/Device/Sync4j.php -%%HORDEDIR%%/lib/SyncML/Device/Synthesis.php -%%HORDEDIR%%/lib/SyncML/DeviceInfo.php -%%HORDEDIR%%/lib/SyncML/State.php -%%HORDEDIR%%/lib/SyncML/Sync.php -%%HORDEDIR%%/lib/Test.php -%%HORDEDIR%%/lib/Text/Diff.php -%%HORDEDIR%%/lib/Text/Diff/Renderer.php -%%HORDEDIR%%/lib/Text/Diff/Renderer/inline.php -%%HORDEDIR%%/lib/Text/Diff/Renderer/unified.php -%%HORDEDIR%%/lib/Text/Diff3.php -%%HORDEDIR%%/lib/Text/Flowed.php -%%HORDEDIR%%/lib/Text/reST.php -%%HORDEDIR%%/lib/Text/reST/Formatter.php -%%HORDEDIR%%/lib/Text/reST/Formatter/html.php -%%HORDEDIR%%/lib/Text/reST/Parser.php -%%HORDEDIR%%/lib/VFS.php -%%HORDEDIR%%/lib/VFS/Browser.php -%%HORDEDIR%%/lib/VFS/GC.php -%%HORDEDIR%%/lib/VFS/ISOWriter.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/copy.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/direct.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/copy.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/direct.php -%%HORDEDIR%%/lib/VFS/ISOWriter/mkisofs.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/smb.php -%%HORDEDIR%%/lib/VFS/sql.php -%%HORDEDIR%%/lib/VFS/sql_file.php -%%HORDEDIR%%/lib/XML/SVG.php -%%HORDEDIR%%/lib/XML/WBXML.php -%%HORDEDIR%%/lib/XML/WBXML/ContentHandler.php -%%HORDEDIR%%/lib/XML/WBXML/DTD.php -%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncML.php -%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLDevInf.php -%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLMetInf.php -%%HORDEDIR%%/lib/XML/WBXML/DTDManager.php -%%HORDEDIR%%/lib/XML/WBXML/Decoder.php -%%HORDEDIR%%/lib/XML/WBXML/Encoder.php -%%HORDEDIR%%/lib/api.php -%%HORDEDIR%%/lib/base.php -%%HORDEDIR%%/lib/core.php -%%HORDEDIR%%/lib/prefs.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/bg_BG/help.xml -%%HORDEDIR%%/locale/bs_BA/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ca_ES/help.xml -%%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/cs_CZ/help.xml -%%HORDEDIR%%/locale/da_DK/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/da_DK/help.xml -%%HORDEDIR%%/locale/de_DE/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/de_DE/help.xml -%%HORDEDIR%%/locale/el_GR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/el_GR/help.xml -%%HORDEDIR%%/locale/en_US/help.xml -%%HORDEDIR%%/locale/es_ES/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/es_ES/help.xml -%%HORDEDIR%%/locale/et_EE/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/et_EE/help.xml -%%HORDEDIR%%/locale/fa_IR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/fa_IR/help.xml -%%HORDEDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/fi_FI/help.xml -%%HORDEDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/fr_FR/help.xml -%%HORDEDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/he_IL/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/hu_HU/help.xml -%%HORDEDIR%%/locale/id_ID/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/is_IS/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/it_IT/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/it_IT/help.xml -%%HORDEDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ja_JP/help.xml -%%HORDEDIR%%/locale/km_KH/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ko_KR/help.xml -%%HORDEDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/lt_LT/help.xml -%%HORDEDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/nb_NO/help.xml -%%HORDEDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/nl_NL/help.xml -%%HORDEDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/nn_NO/help.xml -%%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_BR/help.xml -%%HORDEDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/pt_PT/help.xml -%%HORDEDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ru_RU/help.xml -%%HORDEDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/sk_SK/help.xml -%%HORDEDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/sl_SI/help.xml -%%HORDEDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/sv_SE/help.xml -%%HORDEDIR%%/locale/tr_TR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/tr_TR/help.xml -%%HORDEDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/uk_UA/help.xml -%%HORDEDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/zh_CN/help.xml -%%HORDEDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/zh_TW/help.xml -%%HORDEDIR%%/login.php -%%HORDEDIR%%/po/.htaccess -%%HORDEDIR%%/po/README -%%HORDEDIR%%/po/ar_SY.po -%%HORDEDIR%%/po/bg_BG.po -%%HORDEDIR%%/po/bs_BA.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/fa_IR.po -%%HORDEDIR%%/po/fi_FI.po -%%HORDEDIR%%/po/fr_FR.po -%%HORDEDIR%%/po/gl_ES.po -%%HORDEDIR%%/po/he_IL.po -%%HORDEDIR%%/po/horde.pot -%%HORDEDIR%%/po/hu_HU.po -%%HORDEDIR%%/po/id_ID.po -%%HORDEDIR%%/po/is_IS.po -%%HORDEDIR%%/po/it_IT.po -%%HORDEDIR%%/po/ja_JP.po -%%HORDEDIR%%/po/km_KH.po -%%HORDEDIR%%/po/ko_KR.po -%%HORDEDIR%%/po/lt_LT.po -%%HORDEDIR%%/po/lv_LV.po -%%HORDEDIR%%/po/mk_MK.po -%%HORDEDIR%%/po/nb_NO.po -%%HORDEDIR%%/po/nl_NL.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/sk_SK.po -%%HORDEDIR%%/po/sl_SI.po -%%HORDEDIR%%/po/sv_SE.po -%%HORDEDIR%%/po/tr_TR.po -%%HORDEDIR%%/po/translation.php -%%HORDEDIR%%/po/uk_UA.po -%%HORDEDIR%%/po/zh_CN.po -%%HORDEDIR%%/po/zh_TW.po -%%HORDEDIR%%/rpc.php -%%HORDEDIR%%/scripts/.htaccess -%%HORDEDIR%%/scripts/SCRIPTS -%%HORDEDIR%%/scripts/cookie_login.php -%%HORDEDIR%%/scripts/count_sessions.php -%%HORDEDIR%%/scripts/create-symlinks.php -%%HORDEDIR%%/scripts/get_login.php -%%HORDEDIR%%/scripts/http_login_refer.php -%%HORDEDIR%%/scripts/ldap/horde.schema -%%HORDEDIR%%/scripts/remove_prefs.php -%%HORDEDIR%%/scripts/set_perms.sh -%%HORDEDIR%%/scripts/sql/README -%%HORDEDIR%%/scripts/sql/README.OCI8 -%%HORDEDIR%%/scripts/sql/create.sql -%%HORDEDIR%%/scripts/sql/create.msde.sql -%%HORDEDIR%%/scripts/sql/create.mysql.sql -%%HORDEDIR%%/scripts/sql/create.oci8.sql -%%HORDEDIR%%/scripts/sql/create.pgsql.sql -%%HORDEDIR%%/scripts/sql/create.sybase.sql -%%HORDEDIR%%/scripts/sql/create.xml -%%HORDEDIR%%/scripts/sql/horde_datatree.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_datatree.mysql.sql -%%HORDEDIR%%/scripts/sql/horde_datatree.sql -%%HORDEDIR%%/scripts/sql/horde_histories.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_histories.sql -%%HORDEDIR%%/scripts/sql/horde_log.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_log.sql -%%HORDEDIR%%/scripts/sql/horde_muvfs.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_muvfs.sql -%%HORDEDIR%%/scripts/sql/horde_prefs.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_prefs.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.mysql.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.oci8.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.pgsql.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sapdb.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sql -%%HORDEDIR%%/scripts/sql/horde_tokens.sql -%%HORDEDIR%%/scripts/sql/horde_users.sql -%%HORDEDIR%%/scripts/sql/horde_vfs.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_vfs.oci8.sql -%%HORDEDIR%%/scripts/sql/horde_vfs.pgsql.sql -%%HORDEDIR%%/scripts/sql/horde_vfs.sql -%%HORDEDIR%%/scripts/sql/script.initial_horde_user.sql -%%HORDEDIR%%/scripts/temp-cleanup.cron -%%HORDEDIR%%/scripts/upgrades/2006-06-29_horde_prefs_indexes.sql -%%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql -%%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.oci8.sql -%%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.pgsql.sql -%%HORDEDIR%%/scripts/upgrades/2005-09-22_horde_prefs_varchar2.oci8.sql -%%HORDEDIR%%/scripts/upgrades/3.0_to_3.1.sql -%%HORDEDIR%%/scripts/upgrades/3.0_to_3.1.mysql.sql -%%HORDEDIR%%/scripts/upgrades/3.0_to_3.1.oci8.sql -%%HORDEDIR%%/scripts/upgrades/migrate_user_categories.php -%%HORDEDIR%%/scripts/upgrades/move_history_out_of_datatree.php -%%HORDEDIR%%/services/cacheview.php -%%HORDEDIR%%/services/changepassword.php -%%HORDEDIR%%/services/download/index.php -%%HORDEDIR%%/services/editor/htmlarea/dialog.js -%%HORDEDIR%%/services/editor/htmlarea/htmlarea.css -%%HORDEDIR%%/services/editor/htmlarea/htmlarea.js -%%HORDEDIR%%/services/editor/htmlarea/images/ed_about.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_center.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_justify.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_left.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_right.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_blank.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_charmap.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_bg.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_fg.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_copy.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_custom.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_cut.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_delete.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_bold.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_italic.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_strike.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sub.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sup.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_underline.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_help.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_hr.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_html.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_image.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_less.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_more.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_killword.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_left_to_right.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_link.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_bullet.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_num.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_paste.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_redo.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_right_to_left.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_rmformat.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_save.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_show_border.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_splitcel.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_undo.gif -%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_maximize.gif -%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_minimize.gif -%%HORDEDIR%%/services/editor/htmlarea/images/insert_table.gif -%%HORDEDIR%%/services/editor/htmlarea/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/ansel-image.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/insert_image.php -%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/showimage.html -%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/context-menu.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/menu.css -%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/list-type.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/table-operations.js -%%HORDEDIR%%/services/editor/htmlarea/popupdiv.js -%%HORDEDIR%%/services/editor/htmlarea/popups/about.html -%%HORDEDIR%%/services/editor/htmlarea/popups/blank.html -%%HORDEDIR%%/services/editor/htmlarea/popups/fullscreen.html -%%HORDEDIR%%/services/editor/htmlarea/popups/insert_image.html -%%HORDEDIR%%/services/editor/htmlarea/popups/insert_table.html -%%HORDEDIR%%/services/editor/htmlarea/popups/link.html -%%HORDEDIR%%/services/editor/htmlarea/popups/popup.js -%%HORDEDIR%%/services/editor/htmlarea/popups/select_color.html -%%HORDEDIR%%/services/editor/htmlarea/popupwin.js -%%HORDEDIR%%/services/go.php -%%HORDEDIR%%/services/help/index.php -%%HORDEDIR%%/services/images/colorpicker.php -%%HORDEDIR%%/services/images/pixel.php -%%HORDEDIR%%/services/images/view.php -%%HORDEDIR%%/services/javascript.php -%%HORDEDIR%%/services/keyboard.php -%%HORDEDIR%%/services/language.php -%%HORDEDIR%%/services/maintenance.php -%%HORDEDIR%%/services/obrowser/index.php -%%HORDEDIR%%/services/portal/edit.php -%%HORDEDIR%%/services/portal/index.php -%%HORDEDIR%%/services/portal/mobile.php -%%HORDEDIR%%/services/portal/rpcsum.php -%%HORDEDIR%%/services/portal/sidebar.php -%%HORDEDIR%%/services/prefs.php -%%HORDEDIR%%/services/prefs/index.php -%%HORDEDIR%%/services/problem.php -%%HORDEDIR%%/services/resetpassword.php -%%HORDEDIR%%/services/shares/edit.php -%%HORDEDIR%%/signup.php -%%HORDEDIR%%/templates/.htaccess -%%HORDEDIR%%/templates/admin/common-header.inc -%%HORDEDIR%%/templates/admin/groups/addchild.inc -%%HORDEDIR%%/templates/admin/groups/delete.inc -%%HORDEDIR%%/templates/admin/groups/edit.inc -%%HORDEDIR%%/templates/admin/setup/config.html -%%HORDEDIR%%/templates/admin/setup/diff.html -%%HORDEDIR%%/templates/admin/setup/index.html -%%HORDEDIR%%/templates/admin/user/add.inc -%%HORDEDIR%%/templates/admin/user/approve.inc -%%HORDEDIR%%/templates/admin/user/clear.inc -%%HORDEDIR%%/templates/admin/user/list.inc -%%HORDEDIR%%/templates/admin/user/noadd.inc -%%HORDEDIR%%/templates/admin/user/nolist.inc -%%HORDEDIR%%/templates/admin/user/remove.inc -%%HORDEDIR%%/templates/admin/user/removequeued.inc -%%HORDEDIR%%/templates/admin/user/update.inc -%%HORDEDIR%%/templates/common-footer.inc -%%HORDEDIR%%/templates/common-header.inc -%%HORDEDIR%%/templates/contents/open_view_win.js -%%HORDEDIR%%/templates/data/csvinfo.inc -%%HORDEDIR%%/templates/data/csvmap.inc -%%HORDEDIR%%/templates/data/date.inc -%%HORDEDIR%%/templates/data/datemap.inc -%%HORDEDIR%%/templates/data/datetime.inc -%%HORDEDIR%%/templates/data/time.inc -%%HORDEDIR%%/templates/data/tsvinfo.inc -%%HORDEDIR%%/templates/help/about.inc -%%HORDEDIR%%/templates/help/index.inc -%%HORDEDIR%%/templates/help/menu.inc -%%HORDEDIR%%/templates/index/frames_index.inc -%%HORDEDIR%%/templates/javascript/htmlarea.js -%%HORDEDIR%%/templates/javascript/htmlarea_anselimage_lang.js -%%HORDEDIR%%/templates/javascript/htmlarea_context_lang.js -%%HORDEDIR%%/templates/javascript/htmlarea_lang.js -%%HORDEDIR%%/templates/javascript/htmlarea_listtype_lang.js -%%HORDEDIR%%/templates/javascript/htmlarea_table_lang.js -%%HORDEDIR%%/templates/javascript/keybindings.js -%%HORDEDIR%%/templates/javascript/open_calendar.js -%%HORDEDIR%%/templates/javascript/open_google_win.js -%%HORDEDIR%%/templates/javascript/open_html_helper.js -%%HORDEDIR%%/templates/javascript/print.js -%%HORDEDIR%%/templates/javascript/quoteBlocks.js -%%HORDEDIR%%/templates/javascript/tree.js -%%HORDEDIR%%/templates/login/login.inc -%%HORDEDIR%%/templates/login/mobile.inc -%%HORDEDIR%%/templates/maintenance/maintenance.html -%%HORDEDIR%%/templates/menu/menu.inc -%%HORDEDIR%%/templates/portal/add.inc -%%HORDEDIR%%/templates/portal/block.inc -%%HORDEDIR%%/templates/portal/edit.inc -%%HORDEDIR%%/templates/portal/layout.inc -%%HORDEDIR%%/templates/portal/menu.inc -%%HORDEDIR%%/templates/portal/sidebar.inc -%%HORDEDIR%%/templates/prefs/app.inc -%%HORDEDIR%%/templates/prefs/begin.inc -%%HORDEDIR%%/templates/prefs/categorymanagement.inc -%%HORDEDIR%%/templates/prefs/checkbox.inc -%%HORDEDIR%%/templates/prefs/deleteidentity.inc -%%HORDEDIR%%/templates/prefs/end.inc -%%HORDEDIR%%/templates/prefs/enum.inc -%%HORDEDIR%%/templates/prefs/identityselect.inc -%%HORDEDIR%%/templates/prefs/link.inc -%%HORDEDIR%%/templates/prefs/multienum.inc -%%HORDEDIR%%/templates/prefs/number.inc -%%HORDEDIR%%/templates/prefs/overview.inc -%%HORDEDIR%%/templates/prefs/password.inc -%%HORDEDIR%%/templates/prefs/select.inc -%%HORDEDIR%%/templates/prefs/text.inc -%%HORDEDIR%%/templates/prefs/textarea.inc -%%HORDEDIR%%/templates/problem/problem.inc -%%HORDEDIR%%/templates/rpcsum/rpcsum.inc -%%HORDEDIR%%/templates/shares/edit.inc -%%HORDEDIR%%/templates/test/extensions.inc -%%HORDEDIR%%/templates/test/footer.inc -%%HORDEDIR%%/templates/test/header.inc -%%HORDEDIR%%/templates/test/php_version.inc -%%HORDEDIR%%/templates/test/version.inc -%%HORDEDIR%%/test.php -%%HORDEDIR%%/themes/NeXTgrey/info.php -%%HORDEDIR%%/themes/NeXTgrey/screen.css -%%HORDEDIR%%/themes/azur/info.php -%%HORDEDIR%%/themes/azur/screen.css -%%HORDEDIR%%/themes/barbie/info.php -%%HORDEDIR%%/themes/barbie/screen.css -%%HORDEDIR%%/themes/bluemoon/info.php -%%HORDEDIR%%/themes/bluemoon/screen.css -%%HORDEDIR%%/themes/bluewhite/info.php -%%HORDEDIR%%/themes/bluewhite/screen.css -%%HORDEDIR%%/themes/brown/info.php -%%HORDEDIR%%/themes/brown/screen.css -%%HORDEDIR%%/themes/burntorange/info.php -%%HORDEDIR%%/themes/burntorange/screen.css -%%HORDEDIR%%/themes/camouflage/graphics/menu.png -%%HORDEDIR%%/themes/camouflage/info.php -%%HORDEDIR%%/themes/camouflage/screen.css -%%HORDEDIR%%/themes/cornflower/graphics/tab_bottom.gif -%%HORDEDIR%%/themes/cornflower/graphics/tab_left.gif -%%HORDEDIR%%/themes/cornflower/graphics/tab_right.gif -%%HORDEDIR%%/themes/cornflower/info.php -%%HORDEDIR%%/themes/cornflower/screen.css -%%HORDEDIR%%/themes/gennevilliers/info.php -%%HORDEDIR%%/themes/gennevilliers/screen.css -%%HORDEDIR%%/themes/graphics/administration.png -%%HORDEDIR%%/themes/graphics/alerts/error.png -%%HORDEDIR%%/themes/graphics/alerts/message.png -%%HORDEDIR%%/themes/graphics/alerts/success.png -%%HORDEDIR%%/themes/graphics/alerts/warning.png -%%HORDEDIR%%/themes/graphics/avatars/alien.jpg -%%HORDEDIR%%/themes/graphics/avatars/aly.jpg -%%HORDEDIR%%/themes/graphics/avatars/angryboy.gif -%%HORDEDIR%%/themes/graphics/avatars/ape.jpg -%%HORDEDIR%%/themes/graphics/avatars/au.jpg -%%HORDEDIR%%/themes/graphics/avatars/baby.gif -%%HORDEDIR%%/themes/graphics/avatars/barbarian.jpg -%%HORDEDIR%%/themes/graphics/avatars/bart.gif -%%HORDEDIR%%/themes/graphics/avatars/batman.gif -%%HORDEDIR%%/themes/graphics/avatars/bert.jpg -%%HORDEDIR%%/themes/graphics/avatars/bert2.jpg -%%HORDEDIR%%/themes/graphics/avatars/bobafett.gif -%%HORDEDIR%%/themes/graphics/avatars/boo.jpg -%%HORDEDIR%%/themes/graphics/avatars/boyandmower.gif -%%HORDEDIR%%/themes/graphics/avatars/boyandpc.gif -%%HORDEDIR%%/themes/graphics/avatars/bret.jpg -%%HORDEDIR%%/themes/graphics/avatars/bunny.gif -%%HORDEDIR%%/themes/graphics/avatars/charlie_brown.gif -%%HORDEDIR%%/themes/graphics/avatars/clown.jpg -%%HORDEDIR%%/themes/graphics/avatars/cocky.jpg -%%HORDEDIR%%/themes/graphics/avatars/devil.gif -%%HORDEDIR%%/themes/graphics/avatars/digimon.gif -%%HORDEDIR%%/themes/graphics/avatars/dilbert.gif -%%HORDEDIR%%/themes/graphics/avatars/dino.gif -%%HORDEDIR%%/themes/graphics/avatars/dog.gif -%%HORDEDIR%%/themes/graphics/avatars/duck.gif -%%HORDEDIR%%/themes/graphics/avatars/einstein.jpg -%%HORDEDIR%%/themes/graphics/avatars/elmerfudd.gif -%%HORDEDIR%%/themes/graphics/avatars/elmo.jpg -%%HORDEDIR%%/themes/graphics/avatars/evil.jpg -%%HORDEDIR%%/themes/graphics/avatars/female1.jpg -%%HORDEDIR%%/themes/graphics/avatars/female2.jpg -%%HORDEDIR%%/themes/graphics/avatars/franc.jpg -%%HORDEDIR%%/themes/graphics/avatars/fredflinstone.gif -%%HORDEDIR%%/themes/graphics/avatars/garfield.gif -%%HORDEDIR%%/themes/graphics/avatars/gopher.gif -%%HORDEDIR%%/themes/graphics/avatars/greenhead.gif -%%HORDEDIR%%/themes/graphics/avatars/gremlin.jpg -%%HORDEDIR%%/themes/graphics/avatars/grover.jpg -%%HORDEDIR%%/themes/graphics/avatars/homer.gif -%%HORDEDIR%%/themes/graphics/avatars/hump.jpg -%%HORDEDIR%%/themes/graphics/avatars/iceskatekid.gif -%%HORDEDIR%%/themes/graphics/avatars/jeri.jpg -%%HORDEDIR%%/themes/graphics/avatars/kid.gif -%%HORDEDIR%%/themes/graphics/avatars/kirk.jpg -%%HORDEDIR%%/themes/graphics/avatars/kryton.jpg -%%HORDEDIR%%/themes/graphics/avatars/linux.gif -%%HORDEDIR%%/themes/graphics/avatars/lisa.gif -%%HORDEDIR%%/themes/graphics/avatars/lovebird.gif -%%HORDEDIR%%/themes/graphics/avatars/male1.jpg -%%HORDEDIR%%/themes/graphics/avatars/male2.jpg -%%HORDEDIR%%/themes/graphics/avatars/man.jpg -%%HORDEDIR%%/themes/graphics/avatars/marge.gif -%%HORDEDIR%%/themes/graphics/avatars/maul.gif -%%HORDEDIR%%/themes/graphics/avatars/melon.jpg -%%HORDEDIR%%/themes/graphics/avatars/mib.gif -%%HORDEDIR%%/themes/graphics/avatars/monkey.jpg -%%HORDEDIR%%/themes/graphics/avatars/neo.jpg -%%HORDEDIR%%/themes/graphics/avatars/ninja.jpg -%%HORDEDIR%%/themes/graphics/avatars/paintingbird.gif -%%HORDEDIR%%/themes/graphics/avatars/picard.jpg -%%HORDEDIR%%/themes/graphics/avatars/puff.jpg -%%HORDEDIR%%/themes/graphics/avatars/redcreature.gif -%%HORDEDIR%%/themes/graphics/avatars/rei.jpg -%%HORDEDIR%%/themes/graphics/avatars/rei2.jpg -%%HORDEDIR%%/themes/graphics/avatars/ryu.gif -%%HORDEDIR%%/themes/graphics/avatars/sexy.gif -%%HORDEDIR%%/themes/graphics/avatars/smiley.gif -%%HORDEDIR%%/themes/graphics/avatars/smurfs.gif -%%HORDEDIR%%/themes/graphics/avatars/sonic.gif -%%HORDEDIR%%/themes/graphics/avatars/speedy.gif -%%HORDEDIR%%/themes/graphics/avatars/stan.jpg -%%HORDEDIR%%/themes/graphics/avatars/superman.gif -%%HORDEDIR%%/themes/graphics/avatars/sylvester.gif -%%HORDEDIR%%/themes/graphics/avatars/thomas.gif -%%HORDEDIR%%/themes/graphics/avatars/tigger.gif -%%HORDEDIR%%/themes/graphics/avatars/trin.jpg -%%HORDEDIR%%/themes/graphics/avatars/us.jpg -%%HORDEDIR%%/themes/graphics/avatars/vampire.jpg -%%HORDEDIR%%/themes/graphics/avatars/vampire2.jpg -%%HORDEDIR%%/themes/graphics/avatars/wacko.gif -%%HORDEDIR%%/themes/graphics/avatars/winnie.gif -%%HORDEDIR%%/themes/graphics/avatars/wizard.jpg -%%HORDEDIR%%/themes/graphics/avatars/wolverine.jpg -%%HORDEDIR%%/themes/graphics/avatars/woman.jpg -%%HORDEDIR%%/themes/graphics/avatars/woodie.jpg -%%HORDEDIR%%/themes/graphics/avatars/xena.gif -%%HORDEDIR%%/themes/graphics/az.png -%%HORDEDIR%%/themes/graphics/blank.gif -%%HORDEDIR%%/themes/graphics/block.png -%%HORDEDIR%%/themes/graphics/block/down.png -%%HORDEDIR%%/themes/graphics/block/large_down.png -%%HORDEDIR%%/themes/graphics/block/large_left.png -%%HORDEDIR%%/themes/graphics/block/large_right.png -%%HORDEDIR%%/themes/graphics/block/large_up.png -%%HORDEDIR%%/themes/graphics/block/left.png -%%HORDEDIR%%/themes/graphics/block/moon/firstquarter.png -%%HORDEDIR%%/themes/graphics/block/moon/fullmoon.png -%%HORDEDIR%%/themes/graphics/block/moon/lastquarter.png -%%HORDEDIR%%/themes/graphics/block/moon/newmoon.png -%%HORDEDIR%%/themes/graphics/block/right.png -%%HORDEDIR%%/themes/graphics/block/sunrise/sunrise.png -%%HORDEDIR%%/themes/graphics/block/sunrise/sunset.png -%%HORDEDIR%%/themes/graphics/block/up.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/0.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/1.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/10.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/11.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/12.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/13.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/14.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/15.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/16.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/17.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/18.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/19.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/2.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/20.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/21.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/22.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/23.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/24.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/25.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/26.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/27.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/28.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/29.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/3.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/30.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/31.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/32.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/33.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/34.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/35.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/36.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/37.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/38.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/39.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/4.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/40.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/41.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/42.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/43.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/44.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/45.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/46.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/47.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/5.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/6.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/7.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/8.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/9.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/na.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/0.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/1.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/10.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/11.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/12.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/13.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/14.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/15.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/16.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/17.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/18.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/19.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/2.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/20.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/21.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/22.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/23.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/24.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/25.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/26.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/27.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/28.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/29.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/3.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/30.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/31.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/32.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/33.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/34.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/35.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/36.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/37.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/38.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/39.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/4.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/40.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/41.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/42.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/43.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/44.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/45.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/46.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/47.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/5.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/6.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/7.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/8.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/9.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/TWClogo_32px.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/na.png -%%HORDEDIR%%/themes/graphics/calendar.png -%%HORDEDIR%%/themes/graphics/close.png -%%HORDEDIR%%/themes/graphics/colorpicker.png -%%HORDEDIR%%/themes/graphics/colorscale.png -%%HORDEDIR%%/themes/graphics/config.png -%%HORDEDIR%%/themes/graphics/data.png -%%HORDEDIR%%/themes/graphics/datatree.png -%%HORDEDIR%%/themes/graphics/delete-small.png -%%HORDEDIR%%/themes/graphics/delete.png -%%HORDEDIR%%/themes/graphics/devel.png -%%HORDEDIR%%/themes/graphics/download.png -%%HORDEDIR%%/themes/graphics/edit-small.png -%%HORDEDIR%%/themes/graphics/edit.png -%%HORDEDIR%%/themes/graphics/emoticons/angel.png -%%HORDEDIR%%/themes/graphics/emoticons/angelwink.png -%%HORDEDIR%%/themes/graphics/emoticons/angry.png -%%HORDEDIR%%/themes/graphics/emoticons/annoyed.png -%%HORDEDIR%%/themes/graphics/emoticons/asleep.png -%%HORDEDIR%%/themes/graphics/emoticons/bigfrown.png -%%HORDEDIR%%/themes/graphics/emoticons/biggrin.png -%%HORDEDIR%%/themes/graphics/emoticons/blush.png -%%HORDEDIR%%/themes/graphics/emoticons/clown.png -%%HORDEDIR%%/themes/graphics/emoticons/confused.png -%%HORDEDIR%%/themes/graphics/emoticons/cool.png -%%HORDEDIR%%/themes/graphics/emoticons/coolgrin.png -%%HORDEDIR%%/themes/graphics/emoticons/cooltongue.png -%%HORDEDIR%%/themes/graphics/emoticons/dazed.png -%%HORDEDIR%%/themes/graphics/emoticons/devil.png -%%HORDEDIR%%/themes/graphics/emoticons/deviltongue.png -%%HORDEDIR%%/themes/graphics/emoticons/disappointed.png -%%HORDEDIR%%/themes/graphics/emoticons/embarrassed.png -%%HORDEDIR%%/themes/graphics/emoticons/enraged.png -%%HORDEDIR%%/themes/graphics/emoticons/frown.png -%%HORDEDIR%%/themes/graphics/emoticons/frustrated.png -%%HORDEDIR%%/themes/graphics/emoticons/grin.png -%%HORDEDIR%%/themes/graphics/emoticons/hangover.png -%%HORDEDIR%%/themes/graphics/emoticons/hippie.png -%%HORDEDIR%%/themes/graphics/emoticons/hippiegrin.png -%%HORDEDIR%%/themes/graphics/emoticons/hippietongue.png -%%HORDEDIR%%/themes/graphics/emoticons/hurt.png -%%HORDEDIR%%/themes/graphics/emoticons/indifferent.png -%%HORDEDIR%%/themes/graphics/emoticons/love.png -%%HORDEDIR%%/themes/graphics/emoticons/mad.png -%%HORDEDIR%%/themes/graphics/emoticons/mrt.png -%%HORDEDIR%%/themes/graphics/emoticons/punk.png -%%HORDEDIR%%/themes/graphics/emoticons/punkmohawk.png -%%HORDEDIR%%/themes/graphics/emoticons/punktongue.png -%%HORDEDIR%%/themes/graphics/emoticons/raspberry.png -%%HORDEDIR%%/themes/graphics/emoticons/sad.png -%%HORDEDIR%%/themes/graphics/emoticons/shout.png -%%HORDEDIR%%/themes/graphics/emoticons/smile.png -%%HORDEDIR%%/themes/graphics/emoticons/tired.png -%%HORDEDIR%%/themes/graphics/emoticons/tongueout.png -%%HORDEDIR%%/themes/graphics/emoticons/vampire.png -%%HORDEDIR%%/themes/graphics/emoticons/wink.png -%%HORDEDIR%%/themes/graphics/emoticons/winkgrin.png -%%HORDEDIR%%/themes/graphics/emoticons/winktongue.png -%%HORDEDIR%%/themes/graphics/emoticons/winktongueout.png -%%HORDEDIR%%/themes/graphics/emoticons/worried.png -%%HORDEDIR%%/themes/graphics/favicon.ico -%%HORDEDIR%%/themes/graphics/flags/af.png -%%HORDEDIR%%/themes/graphics/flags/al.png -%%HORDEDIR%%/themes/graphics/flags/am.png -%%HORDEDIR%%/themes/graphics/flags/an.png -%%HORDEDIR%%/themes/graphics/flags/ao.png -%%HORDEDIR%%/themes/graphics/flags/ar.png -%%HORDEDIR%%/themes/graphics/flags/at.png -%%HORDEDIR%%/themes/graphics/flags/au.png -%%HORDEDIR%%/themes/graphics/flags/aw.png -%%HORDEDIR%%/themes/graphics/flags/az.png -%%HORDEDIR%%/themes/graphics/flags/ba.png -%%HORDEDIR%%/themes/graphics/flags/bb.png -%%HORDEDIR%%/themes/graphics/flags/bd.png -%%HORDEDIR%%/themes/graphics/flags/be.png -%%HORDEDIR%%/themes/graphics/flags/bf.png -%%HORDEDIR%%/themes/graphics/flags/bg.png -%%HORDEDIR%%/themes/graphics/flags/bh.png -%%HORDEDIR%%/themes/graphics/flags/bi.png -%%HORDEDIR%%/themes/graphics/flags/bj.png -%%HORDEDIR%%/themes/graphics/flags/bm.png -%%HORDEDIR%%/themes/graphics/flags/bn.png -%%HORDEDIR%%/themes/graphics/flags/bo.png -%%HORDEDIR%%/themes/graphics/flags/br.png -%%HORDEDIR%%/themes/graphics/flags/bs.png -%%HORDEDIR%%/themes/graphics/flags/bt.png -%%HORDEDIR%%/themes/graphics/flags/bw.png -%%HORDEDIR%%/themes/graphics/flags/by.png -%%HORDEDIR%%/themes/graphics/flags/bz.png -%%HORDEDIR%%/themes/graphics/flags/ca.png -%%HORDEDIR%%/themes/graphics/flags/cf.png -%%HORDEDIR%%/themes/graphics/flags/cg.png -%%HORDEDIR%%/themes/graphics/flags/ch.png -%%HORDEDIR%%/themes/graphics/flags/ci.png -%%HORDEDIR%%/themes/graphics/flags/ck.png -%%HORDEDIR%%/themes/graphics/flags/cl.png -%%HORDEDIR%%/themes/graphics/flags/cm.png -%%HORDEDIR%%/themes/graphics/flags/cn.png -%%HORDEDIR%%/themes/graphics/flags/co.png -%%HORDEDIR%%/themes/graphics/flags/cr.png -%%HORDEDIR%%/themes/graphics/flags/cu.png -%%HORDEDIR%%/themes/graphics/flags/cv.png -%%HORDEDIR%%/themes/graphics/flags/cy.png -%%HORDEDIR%%/themes/graphics/flags/cz.png -%%HORDEDIR%%/themes/graphics/flags/de.png -%%HORDEDIR%%/themes/graphics/flags/dk.png -%%HORDEDIR%%/themes/graphics/flags/dz.png -%%HORDEDIR%%/themes/graphics/flags/ec.png -%%HORDEDIR%%/themes/graphics/flags/ee.png -%%HORDEDIR%%/themes/graphics/flags/eg.png -%%HORDEDIR%%/themes/graphics/flags/er.png -%%HORDEDIR%%/themes/graphics/flags/es.png -%%HORDEDIR%%/themes/graphics/flags/et.png -%%HORDEDIR%%/themes/graphics/flags/fi.png -%%HORDEDIR%%/themes/graphics/flags/fj.png -%%HORDEDIR%%/themes/graphics/flags/fo.png -%%HORDEDIR%%/themes/graphics/flags/fr.png -%%HORDEDIR%%/themes/graphics/flags/ga.png -%%HORDEDIR%%/themes/graphics/flags/ge.png -%%HORDEDIR%%/themes/graphics/flags/gi.png -%%HORDEDIR%%/themes/graphics/flags/gl.png -%%HORDEDIR%%/themes/graphics/flags/gp.png -%%HORDEDIR%%/themes/graphics/flags/gr.png -%%HORDEDIR%%/themes/graphics/flags/gt.png -%%HORDEDIR%%/themes/graphics/flags/gu.png -%%HORDEDIR%%/themes/graphics/flags/gy.png -%%HORDEDIR%%/themes/graphics/flags/hk.png -%%HORDEDIR%%/themes/graphics/flags/hr.png -%%HORDEDIR%%/themes/graphics/flags/ht.png -%%HORDEDIR%%/themes/graphics/flags/hu.png -%%HORDEDIR%%/themes/graphics/flags/id.png -%%HORDEDIR%%/themes/graphics/flags/ie.png -%%HORDEDIR%%/themes/graphics/flags/il.png -%%HORDEDIR%%/themes/graphics/flags/in.png -%%HORDEDIR%%/themes/graphics/flags/iq.png -%%HORDEDIR%%/themes/graphics/flags/ir.png -%%HORDEDIR%%/themes/graphics/flags/is.png -%%HORDEDIR%%/themes/graphics/flags/it.png -%%HORDEDIR%%/themes/graphics/flags/jm.png -%%HORDEDIR%%/themes/graphics/flags/jo.png -%%HORDEDIR%%/themes/graphics/flags/jp.png -%%HORDEDIR%%/themes/graphics/flags/ke.png -%%HORDEDIR%%/themes/graphics/flags/kg.png -%%HORDEDIR%%/themes/graphics/flags/kh.png -%%HORDEDIR%%/themes/graphics/flags/ki.png -%%HORDEDIR%%/themes/graphics/flags/kp.png -%%HORDEDIR%%/themes/graphics/flags/kr.png -%%HORDEDIR%%/themes/graphics/flags/ky.png -%%HORDEDIR%%/themes/graphics/flags/kz.png -%%HORDEDIR%%/themes/graphics/flags/lb.png -%%HORDEDIR%%/themes/graphics/flags/lc.png -%%HORDEDIR%%/themes/graphics/flags/lk.png -%%HORDEDIR%%/themes/graphics/flags/lt.png -%%HORDEDIR%%/themes/graphics/flags/lu.png -%%HORDEDIR%%/themes/graphics/flags/lv.png -%%HORDEDIR%%/themes/graphics/flags/ly.png -%%HORDEDIR%%/themes/graphics/flags/ma.png -%%HORDEDIR%%/themes/graphics/flags/mc.png -%%HORDEDIR%%/themes/graphics/flags/md.png -%%HORDEDIR%%/themes/graphics/flags/mg.png -%%HORDEDIR%%/themes/graphics/flags/mn.png -%%HORDEDIR%%/themes/graphics/flags/mo.png -%%HORDEDIR%%/themes/graphics/flags/mp.png -%%HORDEDIR%%/themes/graphics/flags/ms.png -%%HORDEDIR%%/themes/graphics/flags/mt.png -%%HORDEDIR%%/themes/graphics/flags/mx.png -%%HORDEDIR%%/themes/graphics/flags/my.png -%%HORDEDIR%%/themes/graphics/flags/mz.png -%%HORDEDIR%%/themes/graphics/flags/na.png -%%HORDEDIR%%/themes/graphics/flags/nc.png -%%HORDEDIR%%/themes/graphics/flags/nf.png -%%HORDEDIR%%/themes/graphics/flags/nl.png -%%HORDEDIR%%/themes/graphics/flags/no.png -%%HORDEDIR%%/themes/graphics/flags/np.png -%%HORDEDIR%%/themes/graphics/flags/nr.png -%%HORDEDIR%%/themes/graphics/flags/nz.png -%%HORDEDIR%%/themes/graphics/flags/om.png -%%HORDEDIR%%/themes/graphics/flags/pa.png -%%HORDEDIR%%/themes/graphics/flags/pe.png -%%HORDEDIR%%/themes/graphics/flags/pf.png -%%HORDEDIR%%/themes/graphics/flags/ph.png -%%HORDEDIR%%/themes/graphics/flags/pk.png -%%HORDEDIR%%/themes/graphics/flags/pl.png -%%HORDEDIR%%/themes/graphics/flags/pm.png -%%HORDEDIR%%/themes/graphics/flags/pr.png -%%HORDEDIR%%/themes/graphics/flags/pt.png -%%HORDEDIR%%/themes/graphics/flags/py.png -%%HORDEDIR%%/themes/graphics/flags/qa.png -%%HORDEDIR%%/themes/graphics/flags/ro.png -%%HORDEDIR%%/themes/graphics/flags/ru.png -%%HORDEDIR%%/themes/graphics/flags/sa.png -%%HORDEDIR%%/themes/graphics/flags/sb.png -%%HORDEDIR%%/themes/graphics/flags/sd.png -%%HORDEDIR%%/themes/graphics/flags/se.png -%%HORDEDIR%%/themes/graphics/flags/sg.png -%%HORDEDIR%%/themes/graphics/flags/si.png -%%HORDEDIR%%/themes/graphics/flags/sk.png -%%HORDEDIR%%/themes/graphics/flags/sl.png -%%HORDEDIR%%/themes/graphics/flags/so.png -%%HORDEDIR%%/themes/graphics/flags/sr.png -%%HORDEDIR%%/themes/graphics/flags/sy.png -%%HORDEDIR%%/themes/graphics/flags/tc.png -%%HORDEDIR%%/themes/graphics/flags/tg.png -%%HORDEDIR%%/themes/graphics/flags/th.png -%%HORDEDIR%%/themes/graphics/flags/tn.png -%%HORDEDIR%%/themes/graphics/flags/to.png -%%HORDEDIR%%/themes/graphics/flags/tp.png -%%HORDEDIR%%/themes/graphics/flags/tr.png -%%HORDEDIR%%/themes/graphics/flags/tt.png -%%HORDEDIR%%/themes/graphics/flags/tv.png -%%HORDEDIR%%/themes/graphics/flags/tw.png -%%HORDEDIR%%/themes/graphics/flags/tz.png -%%HORDEDIR%%/themes/graphics/flags/ua.png -%%HORDEDIR%%/themes/graphics/flags/ug.png -%%HORDEDIR%%/themes/graphics/flags/uk.png -%%HORDEDIR%%/themes/graphics/flags/us.png -%%HORDEDIR%%/themes/graphics/flags/uy.png -%%HORDEDIR%%/themes/graphics/flags/va.png -%%HORDEDIR%%/themes/graphics/flags/ve.png -%%HORDEDIR%%/themes/graphics/flags/vg.png -%%HORDEDIR%%/themes/graphics/flags/vi.png -%%HORDEDIR%%/themes/graphics/flags/vn.png -%%HORDEDIR%%/themes/graphics/flags/ws.png -%%HORDEDIR%%/themes/graphics/flags/ye.png -%%HORDEDIR%%/themes/graphics/flags/yu.png -%%HORDEDIR%%/themes/graphics/flags/za.png -%%HORDEDIR%%/themes/graphics/flags/zw.png -%%HORDEDIR%%/themes/graphics/google.png -%%HORDEDIR%%/themes/graphics/group.png -%%HORDEDIR%%/themes/graphics/help.png -%%HORDEDIR%%/themes/graphics/help_index.png -%%HORDEDIR%%/themes/graphics/hide_panel.png -%%HORDEDIR%%/themes/graphics/horde-power1.png -%%HORDEDIR%%/themes/graphics/horde-power2.png -%%HORDEDIR%%/themes/graphics/horde-power3.png -%%HORDEDIR%%/themes/graphics/horde.png -%%HORDEDIR%%/themes/graphics/image/crop.png -%%HORDEDIR%%/themes/graphics/image/flip.png -%%HORDEDIR%%/themes/graphics/image/grayscale.png -%%HORDEDIR%%/themes/graphics/image/mirror.png -%%HORDEDIR%%/themes/graphics/image/ratio.png -%%HORDEDIR%%/themes/graphics/image/refresh.png -%%HORDEDIR%%/themes/graphics/image/rotate-180.png -%%HORDEDIR%%/themes/graphics/image/rotate-270.png -%%HORDEDIR%%/themes/graphics/image/rotate-90.png -%%HORDEDIR%%/themes/graphics/info.png -%%HORDEDIR%%/themes/graphics/info_icon.png -%%HORDEDIR%%/themes/graphics/keyboard.png -%%HORDEDIR%%/themes/graphics/layout.png -%%HORDEDIR%%/themes/graphics/lhand.png -%%HORDEDIR%%/themes/graphics/locked.png -%%HORDEDIR%%/themes/graphics/login.png -%%HORDEDIR%%/themes/graphics/logout.png -%%HORDEDIR%%/themes/graphics/map.png -%%HORDEDIR%%/themes/graphics/map_eu.png -%%HORDEDIR%%/themes/graphics/mime/audio.png -%%HORDEDIR%%/themes/graphics/mime/binary.png -%%HORDEDIR%%/themes/graphics/mime/compressed.png -%%HORDEDIR%%/themes/graphics/mime/deb.png -%%HORDEDIR%%/themes/graphics/mime/encryption.png -%%HORDEDIR%%/themes/graphics/mime/html.png -%%HORDEDIR%%/themes/graphics/mime/icalendar.png -%%HORDEDIR%%/themes/graphics/mime/image.png -%%HORDEDIR%%/themes/graphics/mime/mail.png -%%HORDEDIR%%/themes/graphics/mime/msexcel.png -%%HORDEDIR%%/themes/graphics/mime/mspowerpoint.png -%%HORDEDIR%%/themes/graphics/mime/msword.png -%%HORDEDIR%%/themes/graphics/mime/ooo_calc.png -%%HORDEDIR%%/themes/graphics/mime/ooo_draw.png -%%HORDEDIR%%/themes/graphics/mime/ooo_impress.png -%%HORDEDIR%%/themes/graphics/mime/ooo_math.png -%%HORDEDIR%%/themes/graphics/mime/ooo_writer.png -%%HORDEDIR%%/themes/graphics/mime/pdf.png -%%HORDEDIR%%/themes/graphics/mime/php.png -%%HORDEDIR%%/themes/graphics/mime/rpm.png -%%HORDEDIR%%/themes/graphics/mime/script-js.png -%%HORDEDIR%%/themes/graphics/mime/source-c.png -%%HORDEDIR%%/themes/graphics/mime/source-cpp.png -%%HORDEDIR%%/themes/graphics/mime/source-h.png -%%HORDEDIR%%/themes/graphics/mime/source-java.png -%%HORDEDIR%%/themes/graphics/mime/source-python.png -%%HORDEDIR%%/themes/graphics/mime/text.png -%%HORDEDIR%%/themes/graphics/mime/vcard.png -%%HORDEDIR%%/themes/graphics/mime/video.png -%%HORDEDIR%%/themes/graphics/mime/xml.png -%%HORDEDIR%%/themes/graphics/mobile.png -%%HORDEDIR%%/themes/graphics/mobile/bottom.jpg -%%HORDEDIR%%/themes/graphics/mobile/display.jpg -%%HORDEDIR%%/themes/graphics/mobile/left.jpg -%%HORDEDIR%%/themes/graphics/mobile/right.jpg -%%HORDEDIR%%/themes/graphics/mobile/top.jpg -%%HORDEDIR%%/themes/graphics/myaccount.png -%%HORDEDIR%%/themes/graphics/nav/bottom-grey.png -%%HORDEDIR%%/themes/graphics/nav/bottom.png -%%HORDEDIR%%/themes/graphics/nav/down-grey.png -%%HORDEDIR%%/themes/graphics/nav/down.png -%%HORDEDIR%%/themes/graphics/nav/first-grey.png -%%HORDEDIR%%/themes/graphics/nav/first.png -%%HORDEDIR%%/themes/graphics/nav/last-grey.png -%%HORDEDIR%%/themes/graphics/nav/last.png -%%HORDEDIR%%/themes/graphics/nav/left-grey.png -%%HORDEDIR%%/themes/graphics/nav/left.png -%%HORDEDIR%%/themes/graphics/nav/right-grey.png -%%HORDEDIR%%/themes/graphics/nav/right.png -%%HORDEDIR%%/themes/graphics/nav/top-grey.png -%%HORDEDIR%%/themes/graphics/nav/top.png -%%HORDEDIR%%/themes/graphics/nav/up-grey.png -%%HORDEDIR%%/themes/graphics/nav/up.png -%%HORDEDIR%%/themes/graphics/office.png -%%HORDEDIR%%/themes/graphics/organizing.png -%%HORDEDIR%%/themes/graphics/perms.png -%%HORDEDIR%%/themes/graphics/prefs.png -%%HORDEDIR%%/themes/graphics/print.png -%%HORDEDIR%%/themes/graphics/problem.png -%%HORDEDIR%%/themes/graphics/reload.png -%%HORDEDIR%%/themes/graphics/required.png -%%HORDEDIR%%/themes/graphics/rhand.png -%%HORDEDIR%%/themes/graphics/save.png -%%HORDEDIR%%/themes/graphics/search.png -%%HORDEDIR%%/themes/graphics/shadow.gif -%%HORDEDIR%%/themes/graphics/shadow.png -%%HORDEDIR%%/themes/graphics/shell.png -%%HORDEDIR%%/themes/graphics/show_panel.png -%%HORDEDIR%%/themes/graphics/sql.png -%%HORDEDIR%%/themes/graphics/tab_bottom.gif -%%HORDEDIR%%/themes/graphics/tree/blank.png -%%HORDEDIR%%/themes/graphics/tree/folder.png -%%HORDEDIR%%/themes/graphics/tree/folderopen.png -%%HORDEDIR%%/themes/graphics/tree/join.png -%%HORDEDIR%%/themes/graphics/tree/joinbottom-down.png -%%HORDEDIR%%/themes/graphics/tree/joinbottom.png -%%HORDEDIR%%/themes/graphics/tree/leaf.png -%%HORDEDIR%%/themes/graphics/tree/line.png -%%HORDEDIR%%/themes/graphics/tree/minus.png -%%HORDEDIR%%/themes/graphics/tree/minusbottom.png -%%HORDEDIR%%/themes/graphics/tree/minusonly.png -%%HORDEDIR%%/themes/graphics/tree/minustop.png -%%HORDEDIR%%/themes/graphics/tree/nullonly.png -%%HORDEDIR%%/themes/graphics/tree/plus.png -%%HORDEDIR%%/themes/graphics/tree/plusbottom.png -%%HORDEDIR%%/themes/graphics/tree/plusonly.png -%%HORDEDIR%%/themes/graphics/tree/plustop.png -%%HORDEDIR%%/themes/graphics/tree/rev-join.png -%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom-down.png -%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom.png -%%HORDEDIR%%/themes/graphics/tree/rev-leaf.png -%%HORDEDIR%%/themes/graphics/tree/rev-line.png -%%HORDEDIR%%/themes/graphics/tree/rev-minus.png -%%HORDEDIR%%/themes/graphics/tree/rev-minusbottom.png -%%HORDEDIR%%/themes/graphics/tree/rev-minusonly.png -%%HORDEDIR%%/themes/graphics/tree/rev-minustop.png -%%HORDEDIR%%/themes/graphics/tree/rev-nullonly.png -%%HORDEDIR%%/themes/graphics/tree/rev-plus.png -%%HORDEDIR%%/themes/graphics/tree/rev-plusbottom.png -%%HORDEDIR%%/themes/graphics/tree/rev-plusonly.png -%%HORDEDIR%%/themes/graphics/tree/rev-plustop.png -%%HORDEDIR%%/themes/graphics/unlocked.png -%%HORDEDIR%%/themes/graphics/user.png -%%HORDEDIR%%/themes/graphics/website.png -%%HORDEDIR%%/themes/graphics/za.png -%%HORDEDIR%%/themes/green/info.php -%%HORDEDIR%%/themes/green/screen.css -%%HORDEDIR%%/themes/grey/info.php -%%HORDEDIR%%/themes/grey/screen.css -%%HORDEDIR%%/themes/hi-contrast/info.php -%%HORDEDIR%%/themes/hi-contrast/screen.css -%%HORDEDIR%%/themes/ideas/graphics/background.png -%%HORDEDIR%%/themes/ideas/graphics/left_menu_bottom.png -%%HORDEDIR%%/themes/ideas/graphics/left_menu_top.png -%%HORDEDIR%%/themes/ideas/graphics/menu_top.png -%%HORDEDIR%%/themes/ideas/info.php -%%HORDEDIR%%/themes/ideas/screen.css -%%HORDEDIR%%/themes/ie5mac.css -%%HORDEDIR%%/themes/ie6_or_less.css -%%HORDEDIR%%/themes/kolab/graphics/bg.png -%%HORDEDIR%%/themes/kolab/graphics/kolab.png -%%HORDEDIR%%/themes/kolab/graphics/kolablogo.png -%%HORDEDIR%%/themes/kolab/info.php -%%HORDEDIR%%/themes/kolab/screen.css -%%HORDEDIR%%/themes/lavander/info.php -%%HORDEDIR%%/themes/lavander/screen.css -%%HORDEDIR%%/themes/lightblue/graphics/menu.png -%%HORDEDIR%%/themes/lightblue/info.php -%%HORDEDIR%%/themes/lightblue/screen.css -%%HORDEDIR%%/themes/luc/graphics/currentTab_left.gif -%%HORDEDIR%%/themes/luc/graphics/currentTab_right.gif -%%HORDEDIR%%/themes/luc/graphics/tab_bottom.gif -%%HORDEDIR%%/themes/luc/graphics/tab_left.gif -%%HORDEDIR%%/themes/luc/graphics/tab_right.gif -%%HORDEDIR%%/themes/luc/info.php -%%HORDEDIR%%/themes/luc/screen.css -%%HORDEDIR%%/themes/lucblue/info.php -%%HORDEDIR%%/themes/lucblue/screen.css -%%HORDEDIR%%/themes/mobile/screen.css -%%HORDEDIR%%/themes/moz14.css -%%HORDEDIR%%/themes/mozilla/graphics/header.png -%%HORDEDIR%%/themes/mozilla/graphics/menu-active.png -%%HORDEDIR%%/themes/mozilla/graphics/menu.png -%%HORDEDIR%%/themes/mozilla/info.php -%%HORDEDIR%%/themes/mozilla/screen.css -%%HORDEDIR%%/themes/opera.css -%%HORDEDIR%%/themes/postnuke/info.php -%%HORDEDIR%%/themes/postnuke/screen.css -%%HORDEDIR%%/themes/print/screen.css -%%HORDEDIR%%/themes/purple/info.php -%%HORDEDIR%%/themes/purple/screen.css -%%HORDEDIR%%/themes/rtl.css -%%HORDEDIR%%/themes/safari.css -%%HORDEDIR%%/themes/screen.css -%%HORDEDIR%%/themes/simplex/graphics/background.png -%%HORDEDIR%%/themes/simplex/info.php -%%HORDEDIR%%/themes/simplex/screen.css -%%HORDEDIR%%/util/barcode.php -%%HORDEDIR%%/util/icon_browser.php -%%HORDEDIR%%/util/regex_test.php -@exec mkdir -p %D/%%HORDEDIR%%/lib/File/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/Horde/Text/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/Horde/docs/examples -@exec mkdir -p %D/%%HORDEDIR%%/lib/Horde/scripts -@exec mkdir -p %D/%%HORDEDIR%%/lib/Horde/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/Text/docs/examples -@exec mkdir -p %D/%%HORDEDIR%%/lib/Text/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/VFS/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/XML/docs/examples -@exec mkdir -p %D/%%HORDEDIR%%/lib/XML/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/data -@exec mkdir -p %D/%%HORDEDIR%%/lib/docs -@dirrm %%HORDEDIR%%/util -@dirrm %%HORDEDIR%%/themes/simplex/graphics -@dirrm %%HORDEDIR%%/themes/simplex -@dirrm %%HORDEDIR%%/themes/purple -@dirrm %%HORDEDIR%%/themes/print -@dirrm %%HORDEDIR%%/themes/postnuke -@dirrm %%HORDEDIR%%/themes/mozilla/graphics -@dirrm %%HORDEDIR%%/themes/mozilla -@dirrm %%HORDEDIR%%/themes/mobile -@dirrm %%HORDEDIR%%/themes/lucblue -@dirrm %%HORDEDIR%%/themes/luc/graphics -@dirrm %%HORDEDIR%%/themes/luc -@dirrm %%HORDEDIR%%/themes/lightblue/graphics -@dirrm %%HORDEDIR%%/themes/lightblue -@dirrm %%HORDEDIR%%/themes/lavander -@dirrm %%HORDEDIR%%/themes/kolab/graphics -@dirrm %%HORDEDIR%%/themes/kolab -@dirrm %%HORDEDIR%%/themes/ideas/graphics -@dirrm %%HORDEDIR%%/themes/ideas -@dirrm %%HORDEDIR%%/themes/hi-contrast -@dirrm %%HORDEDIR%%/themes/grey -@dirrm %%HORDEDIR%%/themes/green -@dirrm %%HORDEDIR%%/themes/graphics/tree -@dirrm %%HORDEDIR%%/themes/graphics/nav -@dirrm %%HORDEDIR%%/themes/graphics/mobile -@dirrm %%HORDEDIR%%/themes/graphics/mime -@dirrm %%HORDEDIR%%/themes/graphics/image -@dirrm %%HORDEDIR%%/themes/graphics/flags -@dirrm %%HORDEDIR%%/themes/graphics/emoticons -@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32 -@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23 -@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom -@dirrm %%HORDEDIR%%/themes/graphics/block/sunrise -@dirrm %%HORDEDIR%%/themes/graphics/block/moon -@dirrm %%HORDEDIR%%/themes/graphics/block -@dirrm %%HORDEDIR%%/themes/graphics/avatars -@dirrm %%HORDEDIR%%/themes/graphics/alerts -@dirrm %%HORDEDIR%%/themes/graphics -@dirrm %%HORDEDIR%%/themes/gennevilliers -@dirrm %%HORDEDIR%%/themes/cornflower/graphics -@dirrm %%HORDEDIR%%/themes/cornflower -@dirrm %%HORDEDIR%%/themes/camouflage/graphics -@dirrm %%HORDEDIR%%/themes/camouflage -@dirrm %%HORDEDIR%%/themes/burntorange -@dirrm %%HORDEDIR%%/themes/brown -@dirrm %%HORDEDIR%%/themes/bluewhite -@dirrm %%HORDEDIR%%/themes/bluemoon -@dirrm %%HORDEDIR%%/themes/barbie -@dirrm %%HORDEDIR%%/themes/azur -@dirrm %%HORDEDIR%%/themes/NeXTgrey -@dirrm %%HORDEDIR%%/themes -@dirrm %%HORDEDIR%%/templates/test -@dirrm %%HORDEDIR%%/templates/shares -@dirrm %%HORDEDIR%%/templates/rpcsum -@dirrm %%HORDEDIR%%/templates/problem -@dirrm %%HORDEDIR%%/templates/prefs -@dirrm %%HORDEDIR%%/templates/portal -@dirrm %%HORDEDIR%%/templates/menu -@dirrm %%HORDEDIR%%/templates/maintenance -@dirrm %%HORDEDIR%%/templates/login -@dirrm %%HORDEDIR%%/templates/javascript -@dirrm %%HORDEDIR%%/templates/index -@dirrm %%HORDEDIR%%/templates/help -@dirrm %%HORDEDIR%%/templates/data -@dirrm %%HORDEDIR%%/templates/contents -@dirrm %%HORDEDIR%%/templates/admin/user -@dirrm %%HORDEDIR%%/templates/admin/setup -@dirrm %%HORDEDIR%%/templates/admin/groups -@dirrm %%HORDEDIR%%/templates/admin -@dirrm %%HORDEDIR%%/templates -@dirrm %%HORDEDIR%%/services/shares -@dirrm %%HORDEDIR%%/services/prefs -@dirrm %%HORDEDIR%%/services/portal -@dirrm %%HORDEDIR%%/services/obrowser -@dirrm %%HORDEDIR%%/services/images -@dirrm %%HORDEDIR%%/services/help -@dirrm %%HORDEDIR%%/services/editor/htmlarea/popups -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins -@dirrm %%HORDEDIR%%/services/editor/htmlarea/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/images -@dirrm %%HORDEDIR%%/services/editor/htmlarea -@dirrm %%HORDEDIR%%/services/editor -@dirrm %%HORDEDIR%%/services/download -@dirrm %%HORDEDIR%%/services -@dirrm %%HORDEDIR%%/scripts/upgrades -@dirrm %%HORDEDIR%%/scripts/sql -@dirrm %%HORDEDIR%%/scripts/ldap -@dirrm %%HORDEDIR%%/scripts -@dirrm %%HORDEDIR%%/po -@dirrm %%HORDEDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/zh_TW -@dirrm %%HORDEDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/zh_CN -@dirrm %%HORDEDIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/uk_UA -@dirrm %%HORDEDIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/tr_TR -@dirrm %%HORDEDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/sv_SE -@dirrm %%HORDEDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/sl_SI -@dirrm %%HORDEDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/sk_SK -@dirrm %%HORDEDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ru_RU -@dirrm %%HORDEDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ro_RO -@dirrm %%HORDEDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/pt_PT -@dirrm %%HORDEDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/pt_BR -@dirrm %%HORDEDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/pl_PL -@dirrm %%HORDEDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/nn_NO -@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/mk_MK/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/mk_MK -@dirrm %%HORDEDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/lv_LV -@dirrm %%HORDEDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/lt_LT -@dirrm %%HORDEDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ko_KR -@dirrm %%HORDEDIR%%/locale/km_KH/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/km_KH -@dirrm %%HORDEDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ja_JP -@dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/it_IT -@dirrm %%HORDEDIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/is_IS -@dirrm %%HORDEDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/id_ID -@dirrm %%HORDEDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/hu_HU -@dirrm %%HORDEDIR%%/locale/he_IL/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/he_IL -@dirrm %%HORDEDIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/gl_ES -@dirrm %%HORDEDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/fr_FR -@dirrm %%HORDEDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/fi_FI -@dirrm %%HORDEDIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/fa_IR -@dirrm %%HORDEDIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/et_EE -@dirrm %%HORDEDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/es_ES -@dirrm %%HORDEDIR%%/locale/en_US -@dirrm %%HORDEDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/el_GR -@dirrm %%HORDEDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/de_DE -@dirrm %%HORDEDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/da_DK -@dirrm %%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/cs_CZ -@dirrm %%HORDEDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ca_ES -@dirrm %%HORDEDIR%%/locale/bs_BA/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/bs_BA -@dirrm %%HORDEDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/bg_BG -@dirrm %%HORDEDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ar_SY -@dirrm %%HORDEDIR%%/locale -@dirrm %%HORDEDIR%%/lib/docs -@dirrm %%HORDEDIR%%/lib/XML/tests -@dirrm %%HORDEDIR%%/lib/XML/docs/examples -@dirrm %%HORDEDIR%%/lib/XML/docs -@dirrm %%HORDEDIR%%/lib/XML/WBXML/DTD -@dirrm %%HORDEDIR%%/lib/XML/WBXML -@dirrm %%HORDEDIR%%/lib/XML -@dirrm %%HORDEDIR%%/lib/VFS/tests -@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy -@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy -@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter -@dirrm %%HORDEDIR%%/lib/VFS -@dirrm %%HORDEDIR%%/lib/Text/tests -@dirrm %%HORDEDIR%%/lib/Text/reST/Formatter -@dirrm %%HORDEDIR%%/lib/Text/reST -@dirrm %%HORDEDIR%%/lib/Text/docs/examples -@dirrm %%HORDEDIR%%/lib/Text/docs -@dirrm %%HORDEDIR%%/lib/Text/Diff/Renderer -@dirrm %%HORDEDIR%%/lib/Text/Diff -@dirrm %%HORDEDIR%%/lib/Text -@dirrm %%HORDEDIR%%/lib/SyncML/Device -@dirrm %%HORDEDIR%%/lib/SyncML/Command -@dirrm %%HORDEDIR%%/lib/SyncML -@dirrm %%HORDEDIR%%/lib/Net/SMS -@dirrm %%HORDEDIR%%/lib/Net/IMSP/Auth -@dirrm %%HORDEDIR%%/lib/Net/IMSP -@dirrm %%HORDEDIR%%/lib/Net -@dirrm %%HORDEDIR%%/lib/Horde/tests -@dirrm %%HORDEDIR%%/lib/Horde/scripts -@dirrm %%HORDEDIR%%/lib/Horde/iCalendar -@dirrm %%HORDEDIR%%/lib/Horde/docs/examples -@dirrm %%HORDEDIR%%/lib/Horde/docs -@dirrm %%HORDEDIR%%/lib/Horde/VC -@dirrm %%HORDEDIR%%/lib/Horde/UI/VarRenderer -@dirrm %%HORDEDIR%%/lib/Horde/UI -@dirrm %%HORDEDIR%%/lib/Horde/Tree -@dirrm %%HORDEDIR%%/lib/Horde/Token -@dirrm %%HORDEDIR%%/lib/Horde/Text/tests -@dirrm %%HORDEDIR%%/lib/Horde/Text/Filter -@dirrm %%HORDEDIR%%/lib/Horde/Text -@dirrm %%HORDEDIR%%/lib/Horde/SessionHandler -@dirrm %%HORDEDIR%%/lib/Horde/Scheduler -@dirrm %%HORDEDIR%%/lib/Horde/SQL -@dirrm %%HORDEDIR%%/lib/Horde/RPC -@dirrm %%HORDEDIR%%/lib/Horde/Prefs -@dirrm %%HORDEDIR%%/lib/Horde/Perms -@dirrm %%HORDEDIR%%/lib/Horde/Notification/Listener -@dirrm %%HORDEDIR%%/lib/Horde/Notification -@dirrm %%HORDEDIR%%/lib/Horde/NLS -@dirrm %%HORDEDIR%%/lib/Horde/Mobile/Renderer -@dirrm %%HORDEDIR%%/lib/Horde/Mobile -@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo -@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer -@dirrm %%HORDEDIR%%/lib/Horde/MIME -@dirrm %%HORDEDIR%%/lib/Horde/Image -@dirrm %%HORDEDIR%%/lib/Horde/IMAP/ACL -@dirrm %%HORDEDIR%%/lib/Horde/IMAP -@dirrm %%HORDEDIR%%/lib/Horde/Group -@dirrm %%HORDEDIR%%/lib/Horde/Graph/Plot -@dirrm %%HORDEDIR%%/lib/Horde/Graph/Chart -@dirrm %%HORDEDIR%%/lib/Horde/Graph -@dirrm %%HORDEDIR%%/lib/Horde/Form/Type -@dirrm %%HORDEDIR%%/lib/Horde/Form/Action -@dirrm %%HORDEDIR%%/lib/Horde/Form -@dirrm %%HORDEDIR%%/lib/Horde/Editor -@dirrm %%HORDEDIR%%/lib/Horde/DataTree -@dirrm %%HORDEDIR%%/lib/Horde/Data -@dirrm %%HORDEDIR%%/lib/Horde/Crypt -@dirrm %%HORDEDIR%%/lib/Horde/Compress -@dirrm %%HORDEDIR%%/lib/Horde/Cipher/BlockMode -@dirrm %%HORDEDIR%%/lib/Horde/Cipher -@dirrm %%HORDEDIR%%/lib/Horde/Cache -@dirrm %%HORDEDIR%%/lib/Horde/Browser -@dirrm %%HORDEDIR%%/lib/Horde/Block/Layout -@dirrm %%HORDEDIR%%/lib/Horde/Block -@dirrm %%HORDEDIR%%/lib/Horde/Auth -@dirrm %%HORDEDIR%%/lib/Horde -@dirrm %%HORDEDIR%%/lib/File/tests -@dirrm %%HORDEDIR%%/lib/File/PDF/fonts -@dirrm %%HORDEDIR%%/lib/File/PDF -@dirrm %%HORDEDIR%%/lib/File -@dirrm %%HORDEDIR%%/lib/Block -@dirrmtry %%HORDEDIR%%/lib/data -@dirrm %%HORDEDIR%%/lib -@dirrm %%HORDEDIR%%/js -@dirrmtry %%HORDEDIR%%/config -@dirrm %%HORDEDIR%%/admin/setup -@dirrm %%HORDEDIR%%/admin/perms -@dirrm %%HORDEDIR%%/admin/locale/hu_HU -@dirrm %%HORDEDIR%%/admin/locale/fi_FI -@dirrm %%HORDEDIR%%/admin/locale/en_US -@dirrm %%HORDEDIR%%/admin/locale -@dirrm %%HORDEDIR%%/admin -@dirrmtry %%HORDEDIR%% +%%HORDIR%%/admin/cmdshell.php +%%HORDIR%%/admin/datatree.php +%%HORDIR%%/admin/groups.php +%%HORDIR%%/admin/index.php +%%HORDIR%%/admin/locale/en_US/help.xml +%%HORDIR%%/admin/locale/fi_FI/help.xml +%%HORDIR%%/admin/locale/hu_HU/help.xml +%%HORDIR%%/admin/perms/addchild.php +%%HORDIR%%/admin/perms/delete.php +%%HORDIR%%/admin/perms/edit.php +%%HORDIR%%/admin/perms/index.php +%%HORDIR%%/admin/phpshell.php +%%HORDIR%%/admin/sessions.php +%%HORDIR%%/admin/setup/config.php +%%HORDIR%%/admin/setup/diff.php +%%HORDIR%%/admin/setup/index.php +%%HORDIR%%/admin/setup/scripts.php +%%HORDIR%%/admin/sqlshell.php +%%HORDIR%%/admin/templates.php +%%HORDIR%%/admin/user.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.php.dist +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/hooks.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/motd.php.dist +%%HORDIR%%/config/nls.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/registry.php.dist +%%HORDIR%%/index.php +%%HORDIR%%/js/addEvent.php +%%HORDIR%%/js/alphaImageLoader.php +%%HORDIR%%/js/enter_key_trap.js +%%HORDIR%%/js/form_assign.js +%%HORDIR%%/js/form_helpers.js +%%HORDIR%%/js/form_sections.js +%%HORDIR%%/js/hideable.js +%%HORDIR%%/js/horde.ie.js +%%HORDIR%%/js/horde.js +%%HORDIR%%/js/httpclient.js +%%HORDIR%%/js/ieEscGuard.js +%%HORDIR%%/js/image.js +%%HORDIR%%/js/open_colorpicker.js +%%HORDIR%%/js/popup.js +%%HORDIR%%/js/sorter.js +%%HORDIR%%/js/stripe.js +%%HORDIR%%/js/tables.js +%%HORDIR%%/js/tooltip.js +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Block/account.php +%%HORDIR%%/lib/Block/color.php +%%HORDIR%%/lib/Block/fortune.php +%%HORDIR%%/lib/Block/google.php +%%HORDIR%%/lib/Block/iframe.php +%%HORDIR%%/lib/Block/metar.php +%%HORDIR%%/lib/Block/moon.php +%%HORDIR%%/lib/Block/sunrise.php +%%HORDIR%%/lib/Block/time.php +%%HORDIR%%/lib/Block/weatherdotcom.php +%%HORDIR%%/lib/Block/weatherdotcom_strings.php +%%HORDIR%%/lib/File/CSV.php +%%HORDIR%%/lib/File/PDF/fonts/courier.php +%%HORDIR%%/lib/File/PDF/fonts/helvetica.php +%%HORDIR%%/lib/File/PDF/fonts/helveticab.php +%%HORDIR%%/lib/File/PDF/fonts/helveticabi.php +%%HORDIR%%/lib/File/PDF/fonts/helveticai.php +%%HORDIR%%/lib/File/PDF/fonts/symbol.php +%%HORDIR%%/lib/File/PDF/fonts/times.php +%%HORDIR%%/lib/File/PDF/fonts/timesb.php +%%HORDIR%%/lib/File/PDF/fonts/timesbi.php +%%HORDIR%%/lib/File/PDF/fonts/timesi.php +%%HORDIR%%/lib/File/PDF/fonts/zapfdingbats.php +%%HORDIR%%/lib/File/PDF.php +%%HORDIR%%/lib/Horde/Array.php +%%HORDIR%%/lib/Horde/Auth/Signup.php +%%HORDIR%%/lib/Horde/Auth/application.php +%%HORDIR%%/lib/Horde/Auth/auto.php +%%HORDIR%%/lib/Horde/Auth/composite.php +%%HORDIR%%/lib/Horde/Auth/customsql.php +%%HORDIR%%/lib/Horde/Auth/cyrsql.php +%%HORDIR%%/lib/Horde/Auth/cyrus.php +%%HORDIR%%/lib/Horde/Auth/ftp.php +%%HORDIR%%/lib/Horde/Auth/http.php +%%HORDIR%%/lib/Horde/Auth/imap.php +%%HORDIR%%/lib/Horde/Auth/imsp.php +%%HORDIR%%/lib/Horde/Auth/ipbasic.php +%%HORDIR%%/lib/Horde/Auth/ipmap.php +%%HORDIR%%/lib/Horde/Auth/kolab.php +%%HORDIR%%/lib/Horde/Auth/krb5.php +%%HORDIR%%/lib/Horde/Auth/ldap.php +%%HORDIR%%/lib/Horde/Auth/login.php +%%HORDIR%%/lib/Horde/Auth/mcal.php +%%HORDIR%%/lib/Horde/Auth/pam.php +%%HORDIR%%/lib/Horde/Auth/passwd.php +%%HORDIR%%/lib/Horde/Auth/peclsasl.php +%%HORDIR%%/lib/Horde/Auth/radius.php +%%HORDIR%%/lib/Horde/Auth/smb.php +%%HORDIR%%/lib/Horde/Auth/smbclient.php +%%HORDIR%%/lib/Horde/Auth/sql.php +%%HORDIR%%/lib/Horde/Auth.php +%%HORDIR%%/lib/Horde/Block/Collection.php +%%HORDIR%%/lib/Horde/Block/Layout/Manager.php +%%HORDIR%%/lib/Horde/Block/Layout/View.php +%%HORDIR%%/lib/Horde/Block/UI.php +%%HORDIR%%/lib/Horde/Block.php +%%HORDIR%%/lib/Horde/Browser/imode.php +%%HORDIR%%/lib/Horde/Browser.php +%%HORDIR%%/lib/Horde/CLI.php +%%HORDIR%%/lib/Horde/Cache/file.php +%%HORDIR%%/lib/Horde/Cache/zps4.php +%%HORDIR%%/lib/Horde/Cache.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode/cbc.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode/cfb64.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode/ecb.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode/ofb64.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode.php +%%HORDIR%%/lib/Horde/Cipher/blowfish.php +%%HORDIR%%/lib/Horde/Cipher/cast128.php +%%HORDIR%%/lib/Horde/Cipher/des.php +%%HORDIR%%/lib/Horde/Cipher/rc2.php +%%HORDIR%%/lib/Horde/Cipher/rc4.php +%%HORDIR%%/lib/Horde/Cipher.php +%%HORDIR%%/lib/Horde/Compress/dbx.php +%%HORDIR%%/lib/Horde/Compress/gzip.php +%%HORDIR%%/lib/Horde/Compress/tar.php +%%HORDIR%%/lib/Horde/Compress/tnef.php +%%HORDIR%%/lib/Horde/Compress/zip.php +%%HORDIR%%/lib/Horde/Compress.php +%%HORDIR%%/lib/Horde/Config.php +%%HORDIR%%/lib/Horde/Crypt/pgp.php +%%HORDIR%%/lib/Horde/Crypt/smime.php +%%HORDIR%%/lib/Horde/Crypt.php +%%HORDIR%%/lib/Horde/Data/csv.php +%%HORDIR%%/lib/Horde/Data/icalendar.php +%%HORDIR%%/lib/Horde/Data/imc.php +%%HORDIR%%/lib/Horde/Data/outlookcsv.php +%%HORDIR%%/lib/Horde/Data/tsv.php +%%HORDIR%%/lib/Horde/Data/vcard.php +%%HORDIR%%/lib/Horde/Data/vnote.php +%%HORDIR%%/lib/Horde/Data/vtodo.php +%%HORDIR%%/lib/Horde/Data.php +%%HORDIR%%/lib/Horde/DataTree/null.php +%%HORDIR%%/lib/Horde/DataTree/sql.php +%%HORDIR%%/lib/Horde/DataTree.php +%%HORDIR%%/lib/Horde/Date.php +%%HORDIR%%/lib/Horde/Editor/htmlarea.php +%%HORDIR%%/lib/Horde/Editor.php +%%HORDIR%%/lib/Horde/Form/Action/conditional_enable.php +%%HORDIR%%/lib/Horde/Form/Action/conditional_setvalue.php +%%HORDIR%%/lib/Horde/Form/Action/reload.php +%%HORDIR%%/lib/Horde/Form/Action/submit.php +%%HORDIR%%/lib/Horde/Form/Action/sum_fields.php +%%HORDIR%%/lib/Horde/Form/Action/updatefield.php +%%HORDIR%%/lib/Horde/Form/Action.php +%%HORDIR%%/lib/Horde/Form/Renderer.php +%%HORDIR%%/lib/Horde/Form/Type/tableset.php +%%HORDIR%%/lib/Horde/Form.php +%%HORDIR%%/lib/Horde/Graph/Chart/pie.php +%%HORDIR%%/lib/Horde/Graph/Chart/pie3d.php +%%HORDIR%%/lib/Horde/Graph/Plot/bar.php +%%HORDIR%%/lib/Horde/Graph/Plot/bargrouped.php +%%HORDIR%%/lib/Horde/Graph/Plot/barstacked.php +%%HORDIR%%/lib/Horde/Graph/Plot/line.php +%%HORDIR%%/lib/Horde/Graph/Plot/scatter.php +%%HORDIR%%/lib/Horde/Graph.php +%%HORDIR%%/lib/Horde/Group/hooks.php +%%HORDIR%%/lib/Horde/Group/ldap.php +%%HORDIR%%/lib/Horde/Group.php +%%HORDIR%%/lib/Horde/Help.php +%%HORDIR%%/lib/Horde/History.php +%%HORDIR%%/lib/Horde/IMAP/ACL/rfc2086.php +%%HORDIR%%/lib/Horde/IMAP/ACL/rfc4314.php +%%HORDIR%%/lib/Horde/IMAP/ACL.php +%%HORDIR%%/lib/Horde/IMAP/Admin.php +%%HORDIR%%/lib/Horde/IMAP/Cache.php +%%HORDIR%%/lib/Horde/IMAP/Search.php +%%HORDIR%%/lib/Horde/IMAP/Sort.php +%%HORDIR%%/lib/Horde/IMAP/Thread.php +%%HORDIR%%/lib/Horde/IMAP/Tree.php +%%HORDIR%%/lib/Horde/Identity.php +%%HORDIR%%/lib/Horde/Image/gd.php +%%HORDIR%%/lib/Horde/Image/im.php +%%HORDIR%%/lib/Horde/Image/png.php +%%HORDIR%%/lib/Horde/Image/rgb.php +%%HORDIR%%/lib/Horde/Image/svg.php +%%HORDIR%%/lib/Horde/Image/swf.php +%%HORDIR%%/lib/Horde/Image.php +%%HORDIR%%/lib/Horde/Kolab.php +%%HORDIR%%/lib/Horde/LDAP.php +%%HORDIR%%/lib/Horde/MIME/Contents.php +%%HORDIR%%/lib/Horde/MIME/Headers.php +%%HORDIR%%/lib/Horde/MIME/MDN.php +%%HORDIR%%/lib/Horde/MIME/Magic.php +%%HORDIR%%/lib/Horde/MIME/Message.php +%%HORDIR%%/lib/Horde/MIME/Part.php +%%HORDIR%%/lib/Horde/MIME/Structure.php +%%HORDIR%%/lib/Horde/MIME/Viewer/css.php +%%HORDIR%%/lib/Horde/MIME/Viewer/deb.php +%%HORDIR%%/lib/Horde/MIME/Viewer/default.php +%%HORDIR%%/lib/Horde/MIME/Viewer/enriched.php +%%HORDIR%%/lib/Horde/MIME/Viewer/enscript.php +%%HORDIR%%/lib/Horde/MIME/Viewer/html.php +%%HORDIR%%/lib/Horde/MIME/Viewer/images.php +%%HORDIR%%/lib/Horde/MIME/Viewer/msexcel.php +%%HORDIR%%/lib/Horde/MIME/Viewer/mspowerpoint.php +%%HORDIR%%/lib/Horde/MIME/Viewer/msword.php +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/common.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/global_document.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/main_html.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/palm.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_header.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_inlined.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_mapping.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_cells.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_columns.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_rows.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo.php +%%HORDIR%%/lib/Horde/MIME/Viewer/pdf.php +%%HORDIR%%/lib/Horde/MIME/Viewer/php.php +%%HORDIR%%/lib/Horde/MIME/Viewer/plain.php +%%HORDIR%%/lib/Horde/MIME/Viewer/rar.php +%%HORDIR%%/lib/Horde/MIME/Viewer/report.php +%%HORDIR%%/lib/Horde/MIME/Viewer/rfc822.php +%%HORDIR%%/lib/Horde/MIME/Viewer/richtext.php +%%HORDIR%%/lib/Horde/MIME/Viewer/rpm.php +%%HORDIR%%/lib/Horde/MIME/Viewer/security.php +%%HORDIR%%/lib/Horde/MIME/Viewer/simple.php +%%HORDIR%%/lib/Horde/MIME/Viewer/source.php +%%HORDIR%%/lib/Horde/MIME/Viewer/srchighlite.php +%%HORDIR%%/lib/Horde/MIME/Viewer/tgz.php +%%HORDIR%%/lib/Horde/MIME/Viewer/tnef.php +%%HORDIR%%/lib/Horde/MIME/Viewer/vcard.php +%%HORDIR%%/lib/Horde/MIME/Viewer/webcpp.php +%%HORDIR%%/lib/Horde/MIME/Viewer/zip.php +%%HORDIR%%/lib/Horde/MIME/Viewer.php +%%HORDIR%%/lib/Horde/MIME/mime.magic.php +%%HORDIR%%/lib/Horde/MIME/mime.mapping.php +%%HORDIR%%/lib/Horde/MIME.php +%%HORDIR%%/lib/Horde/Maintenance.php +%%HORDIR%%/lib/Horde/Menu.php +%%HORDIR%%/lib/Horde/Mobile/Renderer/html.php +%%HORDIR%%/lib/Horde/Mobile/Renderer/wml.php +%%HORDIR%%/lib/Horde/Mobile/Renderer.php +%%HORDIR%%/lib/Horde/Mobile.php +%%HORDIR%%/lib/Horde/NLS/GeoIP.php +%%HORDIR%%/lib/Horde/NLS/carsigns.php +%%HORDIR%%/lib/Horde/NLS/coordinates.php +%%HORDIR%%/lib/Horde/NLS/countries.php +%%HORDIR%%/lib/Horde/NLS/tld.php +%%HORDIR%%/lib/Horde/NLS.php +%%HORDIR%%/lib/Horde/Notification/Event.php +%%HORDIR%%/lib/Horde/Notification/Listener/audio.php +%%HORDIR%%/lib/Horde/Notification/Listener/javascript.php +%%HORDIR%%/lib/Horde/Notification/Listener/mobile.php +%%HORDIR%%/lib/Horde/Notification/Listener/status.php +%%HORDIR%%/lib/Horde/Notification/Listener.php +%%HORDIR%%/lib/Horde/Notification.php +%%HORDIR%%/lib/Horde/Perms/UI.php +%%HORDIR%%/lib/Horde/Perms/datatree.php +%%HORDIR%%/lib/Horde/Perms.php +%%HORDIR%%/lib/Horde/Prefs/CategoryManager.php +%%HORDIR%%/lib/Horde/Prefs/UI.php +%%HORDIR%%/lib/Horde/Prefs/imsp.php +%%HORDIR%%/lib/Horde/Prefs/kolab.php +%%HORDIR%%/lib/Horde/Prefs/ldap.php +%%HORDIR%%/lib/Horde/Prefs/session.php +%%HORDIR%%/lib/Horde/Prefs/sql.php +%%HORDIR%%/lib/Horde/Prefs.php +%%HORDIR%%/lib/Horde/RPC/rest.php +%%HORDIR%%/lib/Horde/RPC/soap.php +%%HORDIR%%/lib/Horde/RPC/syncml.php +%%HORDIR%%/lib/Horde/RPC/syncml_wbxml.php +%%HORDIR%%/lib/Horde/RPC/webdav.php +%%HORDIR%%/lib/Horde/RPC/xmlrpc.php +%%HORDIR%%/lib/Horde/RPC.php +%%HORDIR%%/lib/Horde/Registry.php +%%HORDIR%%/lib/Horde/SQL/Keywords.php +%%HORDIR%%/lib/Horde/SQL.php +%%HORDIR%%/lib/Horde/Scheduler/cron.php +%%HORDIR%%/lib/Horde/Scheduler.php +%%HORDIR%%/lib/Horde/Secret.php +%%HORDIR%%/lib/Horde/Serialize.php +%%HORDIR%%/lib/Horde/SessionHandler/dbm.php +%%HORDIR%%/lib/Horde/SessionHandler/ldap.php +%%HORDIR%%/lib/Horde/SessionHandler/memcache.php +%%HORDIR%%/lib/Horde/SessionHandler/mysql.php +%%HORDIR%%/lib/Horde/SessionHandler/none.php +%%HORDIR%%/lib/Horde/SessionHandler/oci8.php +%%HORDIR%%/lib/Horde/SessionHandler/pgsql.php +%%HORDIR%%/lib/Horde/SessionHandler/sapdb.php +%%HORDIR%%/lib/Horde/SessionHandler/sql.php +%%HORDIR%%/lib/Horde/SessionHandler.php +%%HORDIR%%/lib/Horde/SessionObjects.php +%%HORDIR%%/lib/Horde/Share.php +%%HORDIR%%/lib/Horde/String.php +%%HORDIR%%/lib/Horde/Template.php +%%HORDIR%%/lib/Horde/Text/Filter/bbcode.php +%%HORDIR%%/lib/Horde/Text/Filter/cleanascii.php +%%HORDIR%%/lib/Horde/Text/Filter/dimsignature.php +%%HORDIR%%/lib/Horde/Text/Filter/emails.php +%%HORDIR%%/lib/Horde/Text/Filter/emoticons.php +%%HORDIR%%/lib/Horde/Text/Filter/environment.php +%%HORDIR%%/lib/Horde/Text/Filter/highlightquotes.php +%%HORDIR%%/lib/Horde/Text/Filter/html2text.php +%%HORDIR%%/lib/Horde/Text/Filter/linkurls.php +%%HORDIR%%/lib/Horde/Text/Filter/rst.php +%%HORDIR%%/lib/Horde/Text/Filter/simplemarkup.php +%%HORDIR%%/lib/Horde/Text/Filter/space2html.php +%%HORDIR%%/lib/Horde/Text/Filter/tabs2spaces.php +%%HORDIR%%/lib/Horde/Text/Filter/text2html.php +%%HORDIR%%/lib/Horde/Text/Filter/words.php +%%HORDIR%%/lib/Horde/Text/Filter/xss.php +%%HORDIR%%/lib/Horde/Text/Filter.php +%%HORDIR%%/lib/Horde/Text.php +%%HORDIR%%/lib/Horde/Token/file.php +%%HORDIR%%/lib/Horde/Token/sql.php +%%HORDIR%%/lib/Horde/Token.php +%%HORDIR%%/lib/Horde/Tree/html.php +%%HORDIR%%/lib/Horde/Tree/javascript.php +%%HORDIR%%/lib/Horde/Tree/select.php +%%HORDIR%%/lib/Horde/Tree.php +%%HORDIR%%/lib/Horde/UI/Language.php +%%HORDIR%%/lib/Horde/UI/Pager.php +%%HORDIR%%/lib/Horde/UI/Tabs.php +%%HORDIR%%/lib/Horde/UI/VarRenderer/html.php +%%HORDIR%%/lib/Horde/UI/VarRenderer/tableset_html.php +%%HORDIR%%/lib/Horde/UI/VarRenderer.php +%%HORDIR%%/lib/Horde/UI/Widget.php +%%HORDIR%%/lib/Horde/Util.php +%%HORDIR%%/lib/Horde/VC/cvs.php +%%HORDIR%%/lib/Horde/VC/rcs.php +%%HORDIR%%/lib/Horde/VC/svn.php +%%HORDIR%%/lib/Horde/VC.php +%%HORDIR%%/lib/Horde/Variables.php +%%HORDIR%%/lib/Horde/iCalendar/valarm.php +%%HORDIR%%/lib/Horde/iCalendar/vcard.php +%%HORDIR%%/lib/Horde/iCalendar/vevent.php +%%HORDIR%%/lib/Horde/iCalendar/vfreebusy.php +%%HORDIR%%/lib/Horde/iCalendar/vjournal.php +%%HORDIR%%/lib/Horde/iCalendar/vnote.php +%%HORDIR%%/lib/Horde/iCalendar/vtimezone.php +%%HORDIR%%/lib/Horde/iCalendar/vtodo.php +%%HORDIR%%/lib/Horde/iCalendar.php +%%HORDIR%%/lib/Horde.php +%%HORDIR%%/lib/Net/IMSP/Auth/cram_md5.php +%%HORDIR%%/lib/Net/IMSP/Auth/imtest.php +%%HORDIR%%/lib/Net/IMSP/Auth/plaintext.php +%%HORDIR%%/lib/Net/IMSP/Auth.php +%%HORDIR%%/lib/Net/IMSP/Book.php +%%HORDIR%%/lib/Net/IMSP/Options.php +%%HORDIR%%/lib/Net/IMSP/Utils.php +%%HORDIR%%/lib/Net/IMSP.php +%%HORDIR%%/lib/Net/SMS/clickatell_http.php +%%HORDIR%%/lib/Net/SMS/generic_smtp.php +%%HORDIR%%/lib/Net/SMS/sms2email_http.php +%%HORDIR%%/lib/Net/SMS/vodafoneitaly_smtp.php +%%HORDIR%%/lib/Net/SMS/win_http.php +%%HORDIR%%/lib/Net/SMS.php +%%HORDIR%%/lib/SyncML/Backend.php +%%HORDIR%%/lib/SyncML/Command/Alert.php +%%HORDIR%%/lib/SyncML/Command/Final.php +%%HORDIR%%/lib/SyncML/Command/Get.php +%%HORDIR%%/lib/SyncML/Command/Map.php +%%HORDIR%%/lib/SyncML/Command/Put.php +%%HORDIR%%/lib/SyncML/Command/Results.php +%%HORDIR%%/lib/SyncML/Command/Status.php +%%HORDIR%%/lib/SyncML/Command/Sync.php +%%HORDIR%%/lib/SyncML/Command/SyncElement.php +%%HORDIR%%/lib/SyncML/Command.php +%%HORDIR%%/lib/SyncML/Constants.php +%%HORDIR%%/lib/SyncML/Device/Nokia.php +%%HORDIR%%/lib/SyncML/Device/P800.php +%%HORDIR%%/lib/SyncML/Device/Sync4j.php +%%HORDIR%%/lib/SyncML/Device/Synthesis.php +%%HORDIR%%/lib/SyncML/Device.php +%%HORDIR%%/lib/SyncML/DeviceInfo.php +%%HORDIR%%/lib/SyncML/State.php +%%HORDIR%%/lib/SyncML/Sync.php +%%HORDIR%%/lib/SyncML.php +%%HORDIR%%/lib/Test.php +%%HORDIR%%/lib/Text/Diff/Renderer/inline.php +%%HORDIR%%/lib/Text/Diff/Renderer/unified.php +%%HORDIR%%/lib/Text/Diff/Renderer.php +%%HORDIR%%/lib/Text/Diff.php +%%HORDIR%%/lib/Text/Diff3.php +%%HORDIR%%/lib/Text/Flowed.php +%%HORDIR%%/lib/Text/reST/Formatter/html.php +%%HORDIR%%/lib/Text/reST/Formatter.php +%%HORDIR%%/lib/Text/reST/Parser.php +%%HORDIR%%/lib/Text/reST.php +%%HORDIR%%/lib/VFS/Browser.php +%%HORDIR%%/lib/VFS/GC.php +%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy/copy.php +%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy/direct.php +%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy.php +%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/copy.php +%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/direct.php +%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy.php +%%HORDIR%%/lib/VFS/ISOWriter/mkisofs.php +%%HORDIR%%/lib/VFS/ISOWriter.php +%%HORDIR%%/lib/VFS/ListItem.php +%%HORDIR%%/lib/VFS/Object.php +%%HORDIR%%/lib/VFS/file.php +%%HORDIR%%/lib/VFS/ftp.php +%%HORDIR%%/lib/VFS/musql.php +%%HORDIR%%/lib/VFS/smb.php +%%HORDIR%%/lib/VFS/sql.php +%%HORDIR%%/lib/VFS/sql_file.php +%%HORDIR%%/lib/VFS.php +%%HORDIR%%/lib/XML/SVG.php +%%HORDIR%%/lib/XML/WBXML/ContentHandler.php +%%HORDIR%%/lib/XML/WBXML/DTD/SyncML.php +%%HORDIR%%/lib/XML/WBXML/DTD/SyncMLDevInf.php +%%HORDIR%%/lib/XML/WBXML/DTD/SyncMLMetInf.php +%%HORDIR%%/lib/XML/WBXML/DTD.php +%%HORDIR%%/lib/XML/WBXML/DTDManager.php +%%HORDIR%%/lib/XML/WBXML/Decoder.php +%%HORDIR%%/lib/XML/WBXML/Encoder.php +%%HORDIR%%/lib/XML/WBXML.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/core.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/bg_BG/help.xml +%%HORDIR%%/locale/bs_BA/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/cs_CZ/help.xml +%%HORDIR%%/locale/da_DK/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/da_DK/help.xml +%%HORDIR%%/locale/de_DE/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/el_GR/help.xml +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/et_EE/help.xml +%%HORDIR%%/locale/fa_IR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/fa_IR/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/he_IL/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/id_ID/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/is_IS/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/it_IT/help.xml +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ja_JP/help.xml +%%HORDIR%%/locale/km_KH/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ko_KR/help.xml +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/lt_LT/help.xml +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/nb_NO/help.xml +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/nl_NL/help.xml +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/nn_NO/help.xml +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/pl_PL/help.xml +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/pt_PT/help.xml +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ru_RU/help.xml +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/sl_SI/help.xml +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/sv_SE/help.xml +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/uk_UA/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/zh_CN/help.xml +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/zh_TW/help.xml +%%HORDIR%%/login.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/bs_BA.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fa_IR.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gl_ES.po +%%HORDIR%%/po/he_IL.po +%%HORDIR%%/po/horde.pot +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/id_ID.po +%%HORDIR%%/po/is_IS.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/km_KH.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mk_MK.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/translation.php +%%HORDIR%%/po/uk_UA.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/rpc.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/SCRIPTS +%%HORDIR%%/scripts/cookie_login.php +%%HORDIR%%/scripts/count_sessions.php +%%HORDIR%%/scripts/create-symlinks.php +%%HORDIR%%/scripts/get_login.php +%%HORDIR%%/scripts/http_login_refer.php +%%HORDIR%%/scripts/ldap/horde.schema +%%HORDIR%%/scripts/remove_prefs.php +%%HORDIR%%/scripts/set_perms.sh +%%HORDIR%%/scripts/sql/README +%%HORDIR%%/scripts/sql/README.OCI8 +%%HORDIR%%/scripts/sql/create.msde.sql +%%HORDIR%%/scripts/sql/create.mysql.sql +%%HORDIR%%/scripts/sql/create.oci8.sql +%%HORDIR%%/scripts/sql/create.pgsql.sql +%%HORDIR%%/scripts/sql/create.sql +%%HORDIR%%/scripts/sql/create.sybase.sql +%%HORDIR%%/scripts/sql/create.xml +%%HORDIR%%/scripts/sql/horde_datatree.mssql.sql +%%HORDIR%%/scripts/sql/horde_datatree.mysql.sql +%%HORDIR%%/scripts/sql/horde_datatree.sql +%%HORDIR%%/scripts/sql/horde_histories.mssql.sql +%%HORDIR%%/scripts/sql/horde_histories.sql +%%HORDIR%%/scripts/sql/horde_log.mssql.sql +%%HORDIR%%/scripts/sql/horde_log.sql +%%HORDIR%%/scripts/sql/horde_muvfs.mssql.sql +%%HORDIR%%/scripts/sql/horde_muvfs.sql +%%HORDIR%%/scripts/sql/horde_prefs.mssql.sql +%%HORDIR%%/scripts/sql/horde_prefs.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.mssql.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.mysql.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.oci8.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.pgsql.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.sapdb.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.sql +%%HORDIR%%/scripts/sql/horde_tokens.sql +%%HORDIR%%/scripts/sql/horde_users.sql +%%HORDIR%%/scripts/sql/horde_vfs.mssql.sql +%%HORDIR%%/scripts/sql/horde_vfs.oci8.sql +%%HORDIR%%/scripts/sql/horde_vfs.pgsql.sql +%%HORDIR%%/scripts/sql/horde_vfs.sql +%%HORDIR%%/scripts/sql/script.initial_horde_user.sql +%%HORDIR%%/scripts/temp-cleanup.cron +%%HORDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql +%%HORDIR%%/scripts/upgrades/2.2_to_3.0.oci8.sql +%%HORDIR%%/scripts/upgrades/2.2_to_3.0.pgsql.sql +%%HORDIR%%/scripts/upgrades/2005-09-22_horde_prefs_varchar2.oci8.sql +%%HORDIR%%/scripts/upgrades/2006-06-29_horde_prefs_indexes.sql +%%HORDIR%%/scripts/upgrades/3.0_to_3.1.mysql.sql +%%HORDIR%%/scripts/upgrades/3.0_to_3.1.oci8.sql +%%HORDIR%%/scripts/upgrades/3.0_to_3.1.sql +%%HORDIR%%/scripts/upgrades/migrate_user_categories.php +%%HORDIR%%/scripts/upgrades/move_history_out_of_datatree.php +%%HORDIR%%/services/cacheview.php +%%HORDIR%%/services/changepassword.php +%%HORDIR%%/services/download/index.php +%%HORDIR%%/services/editor/htmlarea/dialog.js +%%HORDIR%%/services/editor/htmlarea/htmlarea.css +%%HORDIR%%/services/editor/htmlarea/htmlarea.js +%%HORDIR%%/services/editor/htmlarea/images/ed_about.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_align_center.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_align_justify.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_align_left.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_align_right.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_blank.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_charmap.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_color_bg.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_color_fg.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_copy.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_custom.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_cut.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_delete.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_bold.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_italic.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_strike.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_sub.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_sup.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_underline.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_help.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_hr.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_html.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_image.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_indent_less.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_indent_more.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_killword.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_left_to_right.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_link.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_list_bullet.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_list_num.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_paste.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_redo.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_right_to_left.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_rmformat.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_save.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_show_border.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_splitcel.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_undo.gif +%%HORDIR%%/services/editor/htmlarea/images/fullscreen_maximize.gif +%%HORDIR%%/services/editor/htmlarea/images/fullscreen_minimize.gif +%%HORDIR%%/services/editor/htmlarea/images/insert_table.gif +%%HORDIR%%/services/editor/htmlarea/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/ansel-image.js +%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/insert_image.php +%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/showimage.html +%%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/context-menu.js +%%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/menu.css +%%HORDIR%%/services/editor/htmlarea/plugins/ListType/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/ListType/list-type.js +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/table-operations.js +%%HORDIR%%/services/editor/htmlarea/popupdiv.js +%%HORDIR%%/services/editor/htmlarea/popups/about.html +%%HORDIR%%/services/editor/htmlarea/popups/blank.html +%%HORDIR%%/services/editor/htmlarea/popups/fullscreen.html +%%HORDIR%%/services/editor/htmlarea/popups/insert_image.html +%%HORDIR%%/services/editor/htmlarea/popups/insert_table.html +%%HORDIR%%/services/editor/htmlarea/popups/link.html +%%HORDIR%%/services/editor/htmlarea/popups/popup.js +%%HORDIR%%/services/editor/htmlarea/popups/select_color.html +%%HORDIR%%/services/editor/htmlarea/popupwin.js +%%HORDIR%%/services/go.php +%%HORDIR%%/services/help/index.php +%%HORDIR%%/services/images/colorpicker.php +%%HORDIR%%/services/images/pixel.php +%%HORDIR%%/services/images/view.php +%%HORDIR%%/services/javascript.php +%%HORDIR%%/services/keyboard.php +%%HORDIR%%/services/language.php +%%HORDIR%%/services/maintenance.php +%%HORDIR%%/services/obrowser/index.php +%%HORDIR%%/services/portal/edit.php +%%HORDIR%%/services/portal/index.php +%%HORDIR%%/services/portal/mobile.php +%%HORDIR%%/services/portal/rpcsum.php +%%HORDIR%%/services/portal/sidebar.php +%%HORDIR%%/services/prefs/index.php +%%HORDIR%%/services/prefs.php +%%HORDIR%%/services/problem.php +%%HORDIR%%/services/resetpassword.php +%%HORDIR%%/services/shares/edit.php +%%HORDIR%%/signup.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/admin/common-header.inc +%%HORDIR%%/templates/admin/groups/addchild.inc +%%HORDIR%%/templates/admin/groups/delete.inc +%%HORDIR%%/templates/admin/groups/edit.inc +%%HORDIR%%/templates/admin/setup/config.html +%%HORDIR%%/templates/admin/setup/diff.html +%%HORDIR%%/templates/admin/setup/index.html +%%HORDIR%%/templates/admin/user/add.inc +%%HORDIR%%/templates/admin/user/approve.inc +%%HORDIR%%/templates/admin/user/clear.inc +%%HORDIR%%/templates/admin/user/list.inc +%%HORDIR%%/templates/admin/user/noadd.inc +%%HORDIR%%/templates/admin/user/nolist.inc +%%HORDIR%%/templates/admin/user/remove.inc +%%HORDIR%%/templates/admin/user/removequeued.inc +%%HORDIR%%/templates/admin/user/update.inc +%%HORDIR%%/templates/common-footer.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/contents/open_view_win.js +%%HORDIR%%/templates/data/csvinfo.inc +%%HORDIR%%/templates/data/csvmap.inc +%%HORDIR%%/templates/data/date.inc +%%HORDIR%%/templates/data/datemap.inc +%%HORDIR%%/templates/data/datetime.inc +%%HORDIR%%/templates/data/time.inc +%%HORDIR%%/templates/data/tsvinfo.inc +%%HORDIR%%/templates/help/about.inc +%%HORDIR%%/templates/help/index.inc +%%HORDIR%%/templates/help/menu.inc +%%HORDIR%%/templates/index/frames_index.inc +%%HORDIR%%/templates/javascript/htmlarea.js +%%HORDIR%%/templates/javascript/htmlarea_anselimage_lang.js +%%HORDIR%%/templates/javascript/htmlarea_context_lang.js +%%HORDIR%%/templates/javascript/htmlarea_lang.js +%%HORDIR%%/templates/javascript/htmlarea_listtype_lang.js +%%HORDIR%%/templates/javascript/htmlarea_table_lang.js +%%HORDIR%%/templates/javascript/keybindings.js +%%HORDIR%%/templates/javascript/open_calendar.js +%%HORDIR%%/templates/javascript/open_google_win.js +%%HORDIR%%/templates/javascript/open_html_helper.js +%%HORDIR%%/templates/javascript/print.js +%%HORDIR%%/templates/javascript/quoteBlocks.js +%%HORDIR%%/templates/javascript/tree.js +%%HORDIR%%/templates/login/login.inc +%%HORDIR%%/templates/login/mobile.inc +%%HORDIR%%/templates/maintenance/maintenance.html +%%HORDIR%%/templates/menu/menu.inc +%%HORDIR%%/templates/portal/add.inc +%%HORDIR%%/templates/portal/block.inc +%%HORDIR%%/templates/portal/edit.inc +%%HORDIR%%/templates/portal/layout.inc +%%HORDIR%%/templates/portal/menu.inc +%%HORDIR%%/templates/portal/sidebar.inc +%%HORDIR%%/templates/prefs/app.inc +%%HORDIR%%/templates/prefs/begin.inc +%%HORDIR%%/templates/prefs/categorymanagement.inc +%%HORDIR%%/templates/prefs/checkbox.inc +%%HORDIR%%/templates/prefs/deleteidentity.inc +%%HORDIR%%/templates/prefs/end.inc +%%HORDIR%%/templates/prefs/enum.inc +%%HORDIR%%/templates/prefs/identityselect.inc +%%HORDIR%%/templates/prefs/link.inc +%%HORDIR%%/templates/prefs/multienum.inc +%%HORDIR%%/templates/prefs/number.inc +%%HORDIR%%/templates/prefs/overview.inc +%%HORDIR%%/templates/prefs/password.inc +%%HORDIR%%/templates/prefs/select.inc +%%HORDIR%%/templates/prefs/text.inc +%%HORDIR%%/templates/prefs/textarea.inc +%%HORDIR%%/templates/problem/problem.inc +%%HORDIR%%/templates/rpcsum/rpcsum.inc +%%HORDIR%%/templates/shares/edit.inc +%%HORDIR%%/templates/test/extensions.inc +%%HORDIR%%/templates/test/footer.inc +%%HORDIR%%/templates/test/header.inc +%%HORDIR%%/templates/test/php_version.inc +%%HORDIR%%/templates/test/version.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/NeXTgrey/info.php +%%HORDIR%%/themes/NeXTgrey/screen.css +%%HORDIR%%/themes/azur/info.php +%%HORDIR%%/themes/azur/screen.css +%%HORDIR%%/themes/barbie/info.php +%%HORDIR%%/themes/barbie/screen.css +%%HORDIR%%/themes/bluemoon/info.php +%%HORDIR%%/themes/bluemoon/screen.css +%%HORDIR%%/themes/bluewhite/info.php +%%HORDIR%%/themes/bluewhite/screen.css +%%HORDIR%%/themes/brown/info.php +%%HORDIR%%/themes/brown/screen.css +%%HORDIR%%/themes/burntorange/info.php +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/camouflage/graphics/menu.png +%%HORDIR%%/themes/camouflage/info.php +%%HORDIR%%/themes/camouflage/screen.css +%%HORDIR%%/themes/cornflower/graphics/tab_bottom.gif +%%HORDIR%%/themes/cornflower/graphics/tab_left.gif +%%HORDIR%%/themes/cornflower/graphics/tab_right.gif +%%HORDIR%%/themes/cornflower/info.php +%%HORDIR%%/themes/cornflower/screen.css +%%HORDIR%%/themes/gennevilliers/info.php +%%HORDIR%%/themes/gennevilliers/screen.css +%%HORDIR%%/themes/graphics/administration.png +%%HORDIR%%/themes/graphics/alerts/error.png +%%HORDIR%%/themes/graphics/alerts/message.png +%%HORDIR%%/themes/graphics/alerts/success.png +%%HORDIR%%/themes/graphics/alerts/warning.png +%%HORDIR%%/themes/graphics/avatars/alien.jpg +%%HORDIR%%/themes/graphics/avatars/aly.jpg +%%HORDIR%%/themes/graphics/avatars/angryboy.gif +%%HORDIR%%/themes/graphics/avatars/ape.jpg +%%HORDIR%%/themes/graphics/avatars/au.jpg +%%HORDIR%%/themes/graphics/avatars/baby.gif +%%HORDIR%%/themes/graphics/avatars/barbarian.jpg +%%HORDIR%%/themes/graphics/avatars/bart.gif +%%HORDIR%%/themes/graphics/avatars/batman.gif +%%HORDIR%%/themes/graphics/avatars/bert.jpg +%%HORDIR%%/themes/graphics/avatars/bert2.jpg +%%HORDIR%%/themes/graphics/avatars/bobafett.gif +%%HORDIR%%/themes/graphics/avatars/boo.jpg +%%HORDIR%%/themes/graphics/avatars/boyandmower.gif +%%HORDIR%%/themes/graphics/avatars/boyandpc.gif +%%HORDIR%%/themes/graphics/avatars/bret.jpg +%%HORDIR%%/themes/graphics/avatars/bunny.gif +%%HORDIR%%/themes/graphics/avatars/charlie_brown.gif +%%HORDIR%%/themes/graphics/avatars/clown.jpg +%%HORDIR%%/themes/graphics/avatars/cocky.jpg +%%HORDIR%%/themes/graphics/avatars/devil.gif +%%HORDIR%%/themes/graphics/avatars/digimon.gif +%%HORDIR%%/themes/graphics/avatars/dilbert.gif +%%HORDIR%%/themes/graphics/avatars/dino.gif +%%HORDIR%%/themes/graphics/avatars/dog.gif +%%HORDIR%%/themes/graphics/avatars/duck.gif +%%HORDIR%%/themes/graphics/avatars/einstein.jpg +%%HORDIR%%/themes/graphics/avatars/elmerfudd.gif +%%HORDIR%%/themes/graphics/avatars/elmo.jpg +%%HORDIR%%/themes/graphics/avatars/evil.jpg +%%HORDIR%%/themes/graphics/avatars/female1.jpg +%%HORDIR%%/themes/graphics/avatars/female2.jpg +%%HORDIR%%/themes/graphics/avatars/franc.jpg +%%HORDIR%%/themes/graphics/avatars/fredflinstone.gif +%%HORDIR%%/themes/graphics/avatars/garfield.gif +%%HORDIR%%/themes/graphics/avatars/gopher.gif +%%HORDIR%%/themes/graphics/avatars/greenhead.gif +%%HORDIR%%/themes/graphics/avatars/gremlin.jpg +%%HORDIR%%/themes/graphics/avatars/grover.jpg +%%HORDIR%%/themes/graphics/avatars/homer.gif +%%HORDIR%%/themes/graphics/avatars/hump.jpg +%%HORDIR%%/themes/graphics/avatars/iceskatekid.gif +%%HORDIR%%/themes/graphics/avatars/jeri.jpg +%%HORDIR%%/themes/graphics/avatars/kid.gif +%%HORDIR%%/themes/graphics/avatars/kirk.jpg +%%HORDIR%%/themes/graphics/avatars/kryton.jpg +%%HORDIR%%/themes/graphics/avatars/linux.gif +%%HORDIR%%/themes/graphics/avatars/lisa.gif +%%HORDIR%%/themes/graphics/avatars/lovebird.gif +%%HORDIR%%/themes/graphics/avatars/male1.jpg +%%HORDIR%%/themes/graphics/avatars/male2.jpg +%%HORDIR%%/themes/graphics/avatars/man.jpg +%%HORDIR%%/themes/graphics/avatars/marge.gif +%%HORDIR%%/themes/graphics/avatars/maul.gif +%%HORDIR%%/themes/graphics/avatars/melon.jpg +%%HORDIR%%/themes/graphics/avatars/mib.gif +%%HORDIR%%/themes/graphics/avatars/monkey.jpg +%%HORDIR%%/themes/graphics/avatars/neo.jpg +%%HORDIR%%/themes/graphics/avatars/ninja.jpg +%%HORDIR%%/themes/graphics/avatars/paintingbird.gif +%%HORDIR%%/themes/graphics/avatars/picard.jpg +%%HORDIR%%/themes/graphics/avatars/puff.jpg +%%HORDIR%%/themes/graphics/avatars/redcreature.gif +%%HORDIR%%/themes/graphics/avatars/rei.jpg +%%HORDIR%%/themes/graphics/avatars/rei2.jpg +%%HORDIR%%/themes/graphics/avatars/ryu.gif +%%HORDIR%%/themes/graphics/avatars/sexy.gif +%%HORDIR%%/themes/graphics/avatars/smiley.gif +%%HORDIR%%/themes/graphics/avatars/smurfs.gif +%%HORDIR%%/themes/graphics/avatars/sonic.gif +%%HORDIR%%/themes/graphics/avatars/speedy.gif +%%HORDIR%%/themes/graphics/avatars/stan.jpg +%%HORDIR%%/themes/graphics/avatars/superman.gif +%%HORDIR%%/themes/graphics/avatars/sylvester.gif +%%HORDIR%%/themes/graphics/avatars/thomas.gif +%%HORDIR%%/themes/graphics/avatars/tigger.gif +%%HORDIR%%/themes/graphics/avatars/trin.jpg +%%HORDIR%%/themes/graphics/avatars/us.jpg +%%HORDIR%%/themes/graphics/avatars/vampire.jpg +%%HORDIR%%/themes/graphics/avatars/vampire2.jpg +%%HORDIR%%/themes/graphics/avatars/wacko.gif +%%HORDIR%%/themes/graphics/avatars/winnie.gif +%%HORDIR%%/themes/graphics/avatars/wizard.jpg +%%HORDIR%%/themes/graphics/avatars/wolverine.jpg +%%HORDIR%%/themes/graphics/avatars/woman.jpg +%%HORDIR%%/themes/graphics/avatars/woodie.jpg +%%HORDIR%%/themes/graphics/avatars/xena.gif +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/blank.gif +%%HORDIR%%/themes/graphics/block/down.png +%%HORDIR%%/themes/graphics/block/large_down.png +%%HORDIR%%/themes/graphics/block/large_left.png +%%HORDIR%%/themes/graphics/block/large_right.png +%%HORDIR%%/themes/graphics/block/large_up.png +%%HORDIR%%/themes/graphics/block/left.png +%%HORDIR%%/themes/graphics/block/moon/firstquarter.png +%%HORDIR%%/themes/graphics/block/moon/fullmoon.png +%%HORDIR%%/themes/graphics/block/moon/lastquarter.png +%%HORDIR%%/themes/graphics/block/moon/newmoon.png +%%HORDIR%%/themes/graphics/block/right.png +%%HORDIR%%/themes/graphics/block/sunrise/sunrise.png +%%HORDIR%%/themes/graphics/block/sunrise/sunset.png +%%HORDIR%%/themes/graphics/block/up.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/0.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/1.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/10.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/11.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/12.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/13.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/14.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/15.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/16.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/17.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/18.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/19.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/2.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/20.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/21.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/22.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/23.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/24.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/25.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/26.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/27.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/28.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/29.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/3.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/30.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/31.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/32.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/33.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/34.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/35.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/36.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/37.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/38.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/39.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/4.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/40.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/41.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/42.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/43.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/44.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/45.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/46.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/47.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/5.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/6.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/7.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/8.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/9.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/na.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/0.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/1.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/10.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/11.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/12.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/13.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/14.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/15.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/16.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/17.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/18.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/19.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/2.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/20.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/21.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/22.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/23.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/24.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/25.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/26.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/27.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/28.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/29.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/3.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/30.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/31.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/32.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/33.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/34.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/35.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/36.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/37.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/38.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/39.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/4.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/40.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/41.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/42.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/43.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/44.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/45.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/46.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/47.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/5.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/6.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/7.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/8.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/9.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/TWClogo_32px.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/na.png +%%HORDIR%%/themes/graphics/block.png +%%HORDIR%%/themes/graphics/calendar.png +%%HORDIR%%/themes/graphics/close.png +%%HORDIR%%/themes/graphics/colorpicker.png +%%HORDIR%%/themes/graphics/colorscale.png +%%HORDIR%%/themes/graphics/config.png +%%HORDIR%%/themes/graphics/data.png +%%HORDIR%%/themes/graphics/datatree.png +%%HORDIR%%/themes/graphics/delete-small.png +%%HORDIR%%/themes/graphics/delete.png +%%HORDIR%%/themes/graphics/devel.png +%%HORDIR%%/themes/graphics/download.png +%%HORDIR%%/themes/graphics/edit-small.png +%%HORDIR%%/themes/graphics/edit.png +%%HORDIR%%/themes/graphics/emoticons/angel.png +%%HORDIR%%/themes/graphics/emoticons/angelwink.png +%%HORDIR%%/themes/graphics/emoticons/angry.png +%%HORDIR%%/themes/graphics/emoticons/annoyed.png +%%HORDIR%%/themes/graphics/emoticons/asleep.png +%%HORDIR%%/themes/graphics/emoticons/bigfrown.png +%%HORDIR%%/themes/graphics/emoticons/biggrin.png +%%HORDIR%%/themes/graphics/emoticons/blush.png +%%HORDIR%%/themes/graphics/emoticons/clown.png +%%HORDIR%%/themes/graphics/emoticons/confused.png +%%HORDIR%%/themes/graphics/emoticons/cool.png +%%HORDIR%%/themes/graphics/emoticons/coolgrin.png +%%HORDIR%%/themes/graphics/emoticons/cooltongue.png +%%HORDIR%%/themes/graphics/emoticons/dazed.png +%%HORDIR%%/themes/graphics/emoticons/devil.png +%%HORDIR%%/themes/graphics/emoticons/deviltongue.png +%%HORDIR%%/themes/graphics/emoticons/disappointed.png +%%HORDIR%%/themes/graphics/emoticons/embarrassed.png +%%HORDIR%%/themes/graphics/emoticons/enraged.png +%%HORDIR%%/themes/graphics/emoticons/frown.png +%%HORDIR%%/themes/graphics/emoticons/frustrated.png +%%HORDIR%%/themes/graphics/emoticons/grin.png +%%HORDIR%%/themes/graphics/emoticons/hangover.png +%%HORDIR%%/themes/graphics/emoticons/hippie.png +%%HORDIR%%/themes/graphics/emoticons/hippiegrin.png +%%HORDIR%%/themes/graphics/emoticons/hippietongue.png +%%HORDIR%%/themes/graphics/emoticons/hurt.png +%%HORDIR%%/themes/graphics/emoticons/indifferent.png +%%HORDIR%%/themes/graphics/emoticons/love.png +%%HORDIR%%/themes/graphics/emoticons/mad.png +%%HORDIR%%/themes/graphics/emoticons/mrt.png +%%HORDIR%%/themes/graphics/emoticons/punk.png +%%HORDIR%%/themes/graphics/emoticons/punkmohawk.png +%%HORDIR%%/themes/graphics/emoticons/punktongue.png +%%HORDIR%%/themes/graphics/emoticons/raspberry.png +%%HORDIR%%/themes/graphics/emoticons/sad.png +%%HORDIR%%/themes/graphics/emoticons/shout.png +%%HORDIR%%/themes/graphics/emoticons/smile.png +%%HORDIR%%/themes/graphics/emoticons/tired.png +%%HORDIR%%/themes/graphics/emoticons/tongueout.png +%%HORDIR%%/themes/graphics/emoticons/vampire.png +%%HORDIR%%/themes/graphics/emoticons/wink.png +%%HORDIR%%/themes/graphics/emoticons/winkgrin.png +%%HORDIR%%/themes/graphics/emoticons/winktongue.png +%%HORDIR%%/themes/graphics/emoticons/winktongueout.png +%%HORDIR%%/themes/graphics/emoticons/worried.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/flags/af.png +%%HORDIR%%/themes/graphics/flags/al.png +%%HORDIR%%/themes/graphics/flags/am.png +%%HORDIR%%/themes/graphics/flags/an.png +%%HORDIR%%/themes/graphics/flags/ao.png +%%HORDIR%%/themes/graphics/flags/ar.png +%%HORDIR%%/themes/graphics/flags/at.png +%%HORDIR%%/themes/graphics/flags/au.png +%%HORDIR%%/themes/graphics/flags/aw.png +%%HORDIR%%/themes/graphics/flags/az.png +%%HORDIR%%/themes/graphics/flags/ba.png +%%HORDIR%%/themes/graphics/flags/bb.png +%%HORDIR%%/themes/graphics/flags/bd.png +%%HORDIR%%/themes/graphics/flags/be.png +%%HORDIR%%/themes/graphics/flags/bf.png +%%HORDIR%%/themes/graphics/flags/bg.png +%%HORDIR%%/themes/graphics/flags/bh.png +%%HORDIR%%/themes/graphics/flags/bi.png +%%HORDIR%%/themes/graphics/flags/bj.png +%%HORDIR%%/themes/graphics/flags/bm.png +%%HORDIR%%/themes/graphics/flags/bn.png +%%HORDIR%%/themes/graphics/flags/bo.png +%%HORDIR%%/themes/graphics/flags/br.png +%%HORDIR%%/themes/graphics/flags/bs.png +%%HORDIR%%/themes/graphics/flags/bt.png +%%HORDIR%%/themes/graphics/flags/bw.png +%%HORDIR%%/themes/graphics/flags/by.png +%%HORDIR%%/themes/graphics/flags/bz.png +%%HORDIR%%/themes/graphics/flags/ca.png +%%HORDIR%%/themes/graphics/flags/cf.png +%%HORDIR%%/themes/graphics/flags/cg.png +%%HORDIR%%/themes/graphics/flags/ch.png +%%HORDIR%%/themes/graphics/flags/ci.png +%%HORDIR%%/themes/graphics/flags/ck.png +%%HORDIR%%/themes/graphics/flags/cl.png +%%HORDIR%%/themes/graphics/flags/cm.png +%%HORDIR%%/themes/graphics/flags/cn.png +%%HORDIR%%/themes/graphics/flags/co.png +%%HORDIR%%/themes/graphics/flags/cr.png +%%HORDIR%%/themes/graphics/flags/cu.png +%%HORDIR%%/themes/graphics/flags/cv.png +%%HORDIR%%/themes/graphics/flags/cy.png +%%HORDIR%%/themes/graphics/flags/cz.png +%%HORDIR%%/themes/graphics/flags/de.png +%%HORDIR%%/themes/graphics/flags/dk.png +%%HORDIR%%/themes/graphics/flags/dz.png +%%HORDIR%%/themes/graphics/flags/ec.png +%%HORDIR%%/themes/graphics/flags/ee.png +%%HORDIR%%/themes/graphics/flags/eg.png +%%HORDIR%%/themes/graphics/flags/er.png +%%HORDIR%%/themes/graphics/flags/es.png +%%HORDIR%%/themes/graphics/flags/et.png +%%HORDIR%%/themes/graphics/flags/fi.png +%%HORDIR%%/themes/graphics/flags/fj.png +%%HORDIR%%/themes/graphics/flags/fo.png +%%HORDIR%%/themes/graphics/flags/fr.png +%%HORDIR%%/themes/graphics/flags/ga.png +%%HORDIR%%/themes/graphics/flags/ge.png +%%HORDIR%%/themes/graphics/flags/gi.png +%%HORDIR%%/themes/graphics/flags/gl.png +%%HORDIR%%/themes/graphics/flags/gp.png +%%HORDIR%%/themes/graphics/flags/gr.png +%%HORDIR%%/themes/graphics/flags/gt.png +%%HORDIR%%/themes/graphics/flags/gu.png +%%HORDIR%%/themes/graphics/flags/gy.png +%%HORDIR%%/themes/graphics/flags/hk.png +%%HORDIR%%/themes/graphics/flags/hr.png +%%HORDIR%%/themes/graphics/flags/ht.png +%%HORDIR%%/themes/graphics/flags/hu.png +%%HORDIR%%/themes/graphics/flags/id.png +%%HORDIR%%/themes/graphics/flags/ie.png +%%HORDIR%%/themes/graphics/flags/il.png +%%HORDIR%%/themes/graphics/flags/in.png +%%HORDIR%%/themes/graphics/flags/iq.png +%%HORDIR%%/themes/graphics/flags/ir.png +%%HORDIR%%/themes/graphics/flags/is.png +%%HORDIR%%/themes/graphics/flags/it.png +%%HORDIR%%/themes/graphics/flags/jm.png +%%HORDIR%%/themes/graphics/flags/jo.png +%%HORDIR%%/themes/graphics/flags/jp.png +%%HORDIR%%/themes/graphics/flags/ke.png +%%HORDIR%%/themes/graphics/flags/kg.png +%%HORDIR%%/themes/graphics/flags/kh.png +%%HORDIR%%/themes/graphics/flags/ki.png +%%HORDIR%%/themes/graphics/flags/kp.png +%%HORDIR%%/themes/graphics/flags/kr.png +%%HORDIR%%/themes/graphics/flags/ky.png +%%HORDIR%%/themes/graphics/flags/kz.png +%%HORDIR%%/themes/graphics/flags/lb.png +%%HORDIR%%/themes/graphics/flags/lc.png +%%HORDIR%%/themes/graphics/flags/lk.png +%%HORDIR%%/themes/graphics/flags/lt.png +%%HORDIR%%/themes/graphics/flags/lu.png +%%HORDIR%%/themes/graphics/flags/lv.png +%%HORDIR%%/themes/graphics/flags/ly.png +%%HORDIR%%/themes/graphics/flags/ma.png +%%HORDIR%%/themes/graphics/flags/mc.png +%%HORDIR%%/themes/graphics/flags/md.png +%%HORDIR%%/themes/graphics/flags/mg.png +%%HORDIR%%/themes/graphics/flags/mn.png +%%HORDIR%%/themes/graphics/flags/mo.png +%%HORDIR%%/themes/graphics/flags/mp.png +%%HORDIR%%/themes/graphics/flags/ms.png +%%HORDIR%%/themes/graphics/flags/mt.png +%%HORDIR%%/themes/graphics/flags/mx.png +%%HORDIR%%/themes/graphics/flags/my.png +%%HORDIR%%/themes/graphics/flags/mz.png +%%HORDIR%%/themes/graphics/flags/na.png +%%HORDIR%%/themes/graphics/flags/nc.png +%%HORDIR%%/themes/graphics/flags/nf.png +%%HORDIR%%/themes/graphics/flags/nl.png +%%HORDIR%%/themes/graphics/flags/no.png +%%HORDIR%%/themes/graphics/flags/np.png +%%HORDIR%%/themes/graphics/flags/nr.png +%%HORDIR%%/themes/graphics/flags/nz.png +%%HORDIR%%/themes/graphics/flags/om.png +%%HORDIR%%/themes/graphics/flags/pa.png +%%HORDIR%%/themes/graphics/flags/pe.png +%%HORDIR%%/themes/graphics/flags/pf.png +%%HORDIR%%/themes/graphics/flags/ph.png +%%HORDIR%%/themes/graphics/flags/pk.png +%%HORDIR%%/themes/graphics/flags/pl.png +%%HORDIR%%/themes/graphics/flags/pm.png +%%HORDIR%%/themes/graphics/flags/pr.png +%%HORDIR%%/themes/graphics/flags/pt.png +%%HORDIR%%/themes/graphics/flags/py.png +%%HORDIR%%/themes/graphics/flags/qa.png +%%HORDIR%%/themes/graphics/flags/ro.png +%%HORDIR%%/themes/graphics/flags/ru.png +%%HORDIR%%/themes/graphics/flags/sa.png +%%HORDIR%%/themes/graphics/flags/sb.png +%%HORDIR%%/themes/graphics/flags/sd.png +%%HORDIR%%/themes/graphics/flags/se.png +%%HORDIR%%/themes/graphics/flags/sg.png +%%HORDIR%%/themes/graphics/flags/si.png +%%HORDIR%%/themes/graphics/flags/sk.png +%%HORDIR%%/themes/graphics/flags/sl.png +%%HORDIR%%/themes/graphics/flags/so.png +%%HORDIR%%/themes/graphics/flags/sr.png +%%HORDIR%%/themes/graphics/flags/sy.png +%%HORDIR%%/themes/graphics/flags/tc.png +%%HORDIR%%/themes/graphics/flags/tg.png +%%HORDIR%%/themes/graphics/flags/th.png +%%HORDIR%%/themes/graphics/flags/tn.png +%%HORDIR%%/themes/graphics/flags/to.png +%%HORDIR%%/themes/graphics/flags/tp.png +%%HORDIR%%/themes/graphics/flags/tr.png +%%HORDIR%%/themes/graphics/flags/tt.png +%%HORDIR%%/themes/graphics/flags/tv.png +%%HORDIR%%/themes/graphics/flags/tw.png +%%HORDIR%%/themes/graphics/flags/tz.png +%%HORDIR%%/themes/graphics/flags/ua.png +%%HORDIR%%/themes/graphics/flags/ug.png +%%HORDIR%%/themes/graphics/flags/uk.png +%%HORDIR%%/themes/graphics/flags/us.png +%%HORDIR%%/themes/graphics/flags/uy.png +%%HORDIR%%/themes/graphics/flags/va.png +%%HORDIR%%/themes/graphics/flags/ve.png +%%HORDIR%%/themes/graphics/flags/vg.png +%%HORDIR%%/themes/graphics/flags/vi.png +%%HORDIR%%/themes/graphics/flags/vn.png +%%HORDIR%%/themes/graphics/flags/ws.png +%%HORDIR%%/themes/graphics/flags/ye.png +%%HORDIR%%/themes/graphics/flags/yu.png +%%HORDIR%%/themes/graphics/flags/za.png +%%HORDIR%%/themes/graphics/flags/zw.png +%%HORDIR%%/themes/graphics/google.png +%%HORDIR%%/themes/graphics/group.png +%%HORDIR%%/themes/graphics/help.png +%%HORDIR%%/themes/graphics/help_index.png +%%HORDIR%%/themes/graphics/hide_panel.png +%%HORDIR%%/themes/graphics/horde-power1.png +%%HORDIR%%/themes/graphics/horde-power2.png +%%HORDIR%%/themes/graphics/horde-power3.png +%%HORDIR%%/themes/graphics/horde.png +%%HORDIR%%/themes/graphics/image/crop.png +%%HORDIR%%/themes/graphics/image/flip.png +%%HORDIR%%/themes/graphics/image/grayscale.png +%%HORDIR%%/themes/graphics/image/mirror.png +%%HORDIR%%/themes/graphics/image/ratio.png +%%HORDIR%%/themes/graphics/image/refresh.png +%%HORDIR%%/themes/graphics/image/rotate-180.png +%%HORDIR%%/themes/graphics/image/rotate-270.png +%%HORDIR%%/themes/graphics/image/rotate-90.png +%%HORDIR%%/themes/graphics/info.png +%%HORDIR%%/themes/graphics/info_icon.png +%%HORDIR%%/themes/graphics/keyboard.png +%%HORDIR%%/themes/graphics/layout.png +%%HORDIR%%/themes/graphics/lhand.png +%%HORDIR%%/themes/graphics/locked.png +%%HORDIR%%/themes/graphics/login.png +%%HORDIR%%/themes/graphics/logout.png +%%HORDIR%%/themes/graphics/map.png +%%HORDIR%%/themes/graphics/map_eu.png +%%HORDIR%%/themes/graphics/mime/audio.png +%%HORDIR%%/themes/graphics/mime/binary.png +%%HORDIR%%/themes/graphics/mime/compressed.png +%%HORDIR%%/themes/graphics/mime/deb.png +%%HORDIR%%/themes/graphics/mime/encryption.png +%%HORDIR%%/themes/graphics/mime/html.png +%%HORDIR%%/themes/graphics/mime/icalendar.png +%%HORDIR%%/themes/graphics/mime/image.png +%%HORDIR%%/themes/graphics/mime/mail.png +%%HORDIR%%/themes/graphics/mime/msexcel.png +%%HORDIR%%/themes/graphics/mime/mspowerpoint.png +%%HORDIR%%/themes/graphics/mime/msword.png +%%HORDIR%%/themes/graphics/mime/ooo_calc.png +%%HORDIR%%/themes/graphics/mime/ooo_draw.png +%%HORDIR%%/themes/graphics/mime/ooo_impress.png +%%HORDIR%%/themes/graphics/mime/ooo_math.png +%%HORDIR%%/themes/graphics/mime/ooo_writer.png +%%HORDIR%%/themes/graphics/mime/pdf.png +%%HORDIR%%/themes/graphics/mime/php.png +%%HORDIR%%/themes/graphics/mime/rpm.png +%%HORDIR%%/themes/graphics/mime/script-js.png +%%HORDIR%%/themes/graphics/mime/source-c.png +%%HORDIR%%/themes/graphics/mime/source-cpp.png +%%HORDIR%%/themes/graphics/mime/source-h.png +%%HORDIR%%/themes/graphics/mime/source-java.png +%%HORDIR%%/themes/graphics/mime/source-python.png +%%HORDIR%%/themes/graphics/mime/text.png +%%HORDIR%%/themes/graphics/mime/vcard.png +%%HORDIR%%/themes/graphics/mime/video.png +%%HORDIR%%/themes/graphics/mime/xml.png +%%HORDIR%%/themes/graphics/mobile/bottom.jpg +%%HORDIR%%/themes/graphics/mobile/display.jpg +%%HORDIR%%/themes/graphics/mobile/left.jpg +%%HORDIR%%/themes/graphics/mobile/right.jpg +%%HORDIR%%/themes/graphics/mobile/top.jpg +%%HORDIR%%/themes/graphics/mobile.png +%%HORDIR%%/themes/graphics/myaccount.png +%%HORDIR%%/themes/graphics/nav/bottom-grey.png +%%HORDIR%%/themes/graphics/nav/bottom.png +%%HORDIR%%/themes/graphics/nav/down-grey.png +%%HORDIR%%/themes/graphics/nav/down.png +%%HORDIR%%/themes/graphics/nav/first-grey.png +%%HORDIR%%/themes/graphics/nav/first.png +%%HORDIR%%/themes/graphics/nav/last-grey.png +%%HORDIR%%/themes/graphics/nav/last.png +%%HORDIR%%/themes/graphics/nav/left-grey.png +%%HORDIR%%/themes/graphics/nav/left.png +%%HORDIR%%/themes/graphics/nav/right-grey.png +%%HORDIR%%/themes/graphics/nav/right.png +%%HORDIR%%/themes/graphics/nav/top-grey.png +%%HORDIR%%/themes/graphics/nav/top.png +%%HORDIR%%/themes/graphics/nav/up-grey.png +%%HORDIR%%/themes/graphics/nav/up.png +%%HORDIR%%/themes/graphics/office.png +%%HORDIR%%/themes/graphics/organizing.png +%%HORDIR%%/themes/graphics/perms.png +%%HORDIR%%/themes/graphics/prefs.png +%%HORDIR%%/themes/graphics/print.png +%%HORDIR%%/themes/graphics/problem.png +%%HORDIR%%/themes/graphics/reload.png +%%HORDIR%%/themes/graphics/required.png +%%HORDIR%%/themes/graphics/rhand.png +%%HORDIR%%/themes/graphics/save.png +%%HORDIR%%/themes/graphics/search.png +%%HORDIR%%/themes/graphics/shadow.gif +%%HORDIR%%/themes/graphics/shadow.png +%%HORDIR%%/themes/graphics/shell.png +%%HORDIR%%/themes/graphics/show_panel.png +%%HORDIR%%/themes/graphics/sql.png +%%HORDIR%%/themes/graphics/tab_bottom.gif +%%HORDIR%%/themes/graphics/tree/blank.png +%%HORDIR%%/themes/graphics/tree/folder.png +%%HORDIR%%/themes/graphics/tree/folderopen.png +%%HORDIR%%/themes/graphics/tree/join.png +%%HORDIR%%/themes/graphics/tree/joinbottom-down.png +%%HORDIR%%/themes/graphics/tree/joinbottom.png +%%HORDIR%%/themes/graphics/tree/leaf.png +%%HORDIR%%/themes/graphics/tree/line.png +%%HORDIR%%/themes/graphics/tree/minus.png +%%HORDIR%%/themes/graphics/tree/minusbottom.png +%%HORDIR%%/themes/graphics/tree/minusonly.png +%%HORDIR%%/themes/graphics/tree/minustop.png +%%HORDIR%%/themes/graphics/tree/nullonly.png +%%HORDIR%%/themes/graphics/tree/plus.png +%%HORDIR%%/themes/graphics/tree/plusbottom.png +%%HORDIR%%/themes/graphics/tree/plusonly.png +%%HORDIR%%/themes/graphics/tree/plustop.png +%%HORDIR%%/themes/graphics/tree/rev-join.png +%%HORDIR%%/themes/graphics/tree/rev-joinbottom-down.png +%%HORDIR%%/themes/graphics/tree/rev-joinbottom.png +%%HORDIR%%/themes/graphics/tree/rev-leaf.png +%%HORDIR%%/themes/graphics/tree/rev-line.png +%%HORDIR%%/themes/graphics/tree/rev-minus.png +%%HORDIR%%/themes/graphics/tree/rev-minusbottom.png +%%HORDIR%%/themes/graphics/tree/rev-minusonly.png +%%HORDIR%%/themes/graphics/tree/rev-minustop.png +%%HORDIR%%/themes/graphics/tree/rev-nullonly.png +%%HORDIR%%/themes/graphics/tree/rev-plus.png +%%HORDIR%%/themes/graphics/tree/rev-plusbottom.png +%%HORDIR%%/themes/graphics/tree/rev-plusonly.png +%%HORDIR%%/themes/graphics/tree/rev-plustop.png +%%HORDIR%%/themes/graphics/unlocked.png +%%HORDIR%%/themes/graphics/user.png +%%HORDIR%%/themes/graphics/website.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/green/info.php +%%HORDIR%%/themes/green/screen.css +%%HORDIR%%/themes/grey/info.php +%%HORDIR%%/themes/grey/screen.css +%%HORDIR%%/themes/hi-contrast/info.php +%%HORDIR%%/themes/hi-contrast/screen.css +%%HORDIR%%/themes/ideas/graphics/background.png +%%HORDIR%%/themes/ideas/graphics/left_menu_bottom.png +%%HORDIR%%/themes/ideas/graphics/left_menu_top.png +%%HORDIR%%/themes/ideas/graphics/menu_top.png +%%HORDIR%%/themes/ideas/info.php +%%HORDIR%%/themes/ideas/screen.css +%%HORDIR%%/themes/ie5mac.css +%%HORDIR%%/themes/ie6_or_less.css +%%HORDIR%%/themes/kolab/graphics/bg.png +%%HORDIR%%/themes/kolab/graphics/kolab.png +%%HORDIR%%/themes/kolab/graphics/kolablogo.png +%%HORDIR%%/themes/kolab/info.php +%%HORDIR%%/themes/kolab/screen.css +%%HORDIR%%/themes/lavander/info.php +%%HORDIR%%/themes/lavander/screen.css +%%HORDIR%%/themes/lightblue/graphics/menu.png +%%HORDIR%%/themes/lightblue/info.php +%%HORDIR%%/themes/lightblue/screen.css +%%HORDIR%%/themes/luc/graphics/currentTab_left.gif +%%HORDIR%%/themes/luc/graphics/currentTab_right.gif +%%HORDIR%%/themes/luc/graphics/tab_bottom.gif +%%HORDIR%%/themes/luc/graphics/tab_left.gif +%%HORDIR%%/themes/luc/graphics/tab_right.gif +%%HORDIR%%/themes/luc/info.php +%%HORDIR%%/themes/luc/screen.css +%%HORDIR%%/themes/lucblue/info.php +%%HORDIR%%/themes/lucblue/screen.css +%%HORDIR%%/themes/mobile/screen.css +%%HORDIR%%/themes/moz14.css +%%HORDIR%%/themes/mozilla/graphics/header.png +%%HORDIR%%/themes/mozilla/graphics/menu-active.png +%%HORDIR%%/themes/mozilla/graphics/menu.png +%%HORDIR%%/themes/mozilla/info.php +%%HORDIR%%/themes/mozilla/screen.css +%%HORDIR%%/themes/opera.css +%%HORDIR%%/themes/postnuke/info.php +%%HORDIR%%/themes/postnuke/screen.css +%%HORDIR%%/themes/print/screen.css +%%HORDIR%%/themes/purple/info.php +%%HORDIR%%/themes/purple/screen.css +%%HORDIR%%/themes/rtl.css +%%HORDIR%%/themes/safari.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/themes/simplex/graphics/background.png +%%HORDIR%%/themes/simplex/info.php +%%HORDIR%%/themes/simplex/screen.css +%%HORDIR%%/util/barcode.php +%%HORDIR%%/util/icon_browser.php +%%HORDIR%%/util/regex_test.php +@exec mkdir -p %D/%%HORDIR%%/lib/File/tests +@exec mkdir -p %D/%%HORDIR%%/lib/Horde/Text/tests +@exec mkdir -p %D/%%HORDIR%%/lib/Horde/docs/examples +@exec mkdir -p %D/%%HORDIR%%/lib/Horde/scripts +@exec mkdir -p %D/%%HORDIR%%/lib/Horde/tests +@exec mkdir -p %D/%%HORDIR%%/lib/Text/docs/examples +@exec mkdir -p %D/%%HORDIR%%/lib/Text/tests +@exec mkdir -p %D/%%HORDIR%%/lib/VFS/tests +@exec mkdir -p %D/%%HORDIR%%/lib/XML/docs/examples +@exec mkdir -p %D/%%HORDIR%%/lib/XML/tests +@exec mkdir -p %D/%%HORDIR%%/lib/data +@exec mkdir -p %D/%%HORDIR%%/lib/docs +@dirrm %%HORDIR%%/admin/locale/en_US +@dirrm %%HORDIR%%/admin/locale/fi_FI +@dirrm %%HORDIR%%/admin/locale/hu_HU +@dirrm %%HORDIR%%/admin/locale +@dirrm %%HORDIR%%/admin/perms +@dirrm %%HORDIR%%/admin/setup +@dirrm %%HORDIR%%/admin +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/File/PDF/fonts +@dirrm %%HORDIR%%/lib/File/PDF +@dirrm %%HORDIR%%/lib/File/tests +@dirrm %%HORDIR%%/lib/File +@dirrm %%HORDIR%%/lib/Horde/Auth +@dirrm %%HORDIR%%/lib/Horde/Block/Layout +@dirrm %%HORDIR%%/lib/Horde/Block +@dirrm %%HORDIR%%/lib/Horde/Browser +@dirrm %%HORDIR%%/lib/Horde/Cache +@dirrm %%HORDIR%%/lib/Horde/Cipher/BlockMode +@dirrm %%HORDIR%%/lib/Horde/Cipher +@dirrm %%HORDIR%%/lib/Horde/Compress +@dirrm %%HORDIR%%/lib/Horde/Crypt +@dirrm %%HORDIR%%/lib/Horde/Data +@dirrm %%HORDIR%%/lib/Horde/DataTree +@dirrm %%HORDIR%%/lib/Horde/Editor +@dirrm %%HORDIR%%/lib/Horde/Form/Action +@dirrm %%HORDIR%%/lib/Horde/Form/Type +@dirrm %%HORDIR%%/lib/Horde/Form +@dirrm %%HORDIR%%/lib/Horde/Graph/Chart +@dirrm %%HORDIR%%/lib/Horde/Graph/Plot +@dirrm %%HORDIR%%/lib/Horde/Graph +@dirrm %%HORDIR%%/lib/Horde/Group +@dirrm %%HORDIR%%/lib/Horde/IMAP/ACL +@dirrm %%HORDIR%%/lib/Horde/IMAP +@dirrm %%HORDIR%%/lib/Horde/Image +@dirrm %%HORDIR%%/lib/Horde/MIME/Viewer/ooo +@dirrm %%HORDIR%%/lib/Horde/MIME/Viewer +@dirrm %%HORDIR%%/lib/Horde/MIME +@dirrm %%HORDIR%%/lib/Horde/Mobile/Renderer +@dirrm %%HORDIR%%/lib/Horde/Mobile +@dirrm %%HORDIR%%/lib/Horde/NLS +@dirrm %%HORDIR%%/lib/Horde/Notification/Listener +@dirrm %%HORDIR%%/lib/Horde/Notification +@dirrm %%HORDIR%%/lib/Horde/Perms +@dirrm %%HORDIR%%/lib/Horde/Prefs +@dirrm %%HORDIR%%/lib/Horde/RPC +@dirrm %%HORDIR%%/lib/Horde/SQL +@dirrm %%HORDIR%%/lib/Horde/Scheduler +@dirrm %%HORDIR%%/lib/Horde/SessionHandler +@dirrm %%HORDIR%%/lib/Horde/Text/Filter +@dirrm %%HORDIR%%/lib/Horde/Text/tests +@dirrm %%HORDIR%%/lib/Horde/Text +@dirrm %%HORDIR%%/lib/Horde/Token +@dirrm %%HORDIR%%/lib/Horde/Tree +@dirrm %%HORDIR%%/lib/Horde/UI/VarRenderer +@dirrm %%HORDIR%%/lib/Horde/UI +@dirrm %%HORDIR%%/lib/Horde/VC +@dirrm %%HORDIR%%/lib/Horde/docs/examples +@dirrm %%HORDIR%%/lib/Horde/docs +@dirrm %%HORDIR%%/lib/Horde/iCalendar +@dirrm %%HORDIR%%/lib/Horde/scripts +@dirrm %%HORDIR%%/lib/Horde/tests +@dirrm %%HORDIR%%/lib/Horde +@dirrm %%HORDIR%%/lib/Net/IMSP/Auth +@dirrm %%HORDIR%%/lib/Net/IMSP +@dirrm %%HORDIR%%/lib/Net/SMS +@dirrm %%HORDIR%%/lib/Net +@dirrm %%HORDIR%%/lib/SyncML/Command +@dirrm %%HORDIR%%/lib/SyncML/Device +@dirrm %%HORDIR%%/lib/SyncML +@dirrm %%HORDIR%%/lib/Text/Diff/Renderer +@dirrm %%HORDIR%%/lib/Text/Diff +@dirrm %%HORDIR%%/lib/Text/docs/examples +@dirrm %%HORDIR%%/lib/Text/docs +@dirrm %%HORDIR%%/lib/Text/reST/Formatter +@dirrm %%HORDIR%%/lib/Text/reST +@dirrm %%HORDIR%%/lib/Text/tests +@dirrm %%HORDIR%%/lib/Text +@dirrm %%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy +@dirrm %%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy +@dirrm %%HORDIR%%/lib/VFS/ISOWriter +@dirrm %%HORDIR%%/lib/VFS/tests +@dirrm %%HORDIR%%/lib/VFS +@dirrm %%HORDIR%%/lib/XML/WBXML/DTD +@dirrm %%HORDIR%%/lib/XML/WBXML +@dirrm %%HORDIR%%/lib/XML/docs/examples +@dirrm %%HORDIR%%/lib/XML/docs +@dirrm %%HORDIR%%/lib/XML/tests +@dirrm %%HORDIR%%/lib/XML +@dirrmtry %%HORDIR%%/lib/data +@dirrm %%HORDIR%%/lib/docs +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/bs_BA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bs_BA +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fa_IR +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/gl_ES +@dirrm %%HORDIR%%/locale/he_IL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/he_IL +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDIR%%/locale/id_ID +@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%HORDIR%%/locale/is_IS +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/km_KH/LC_MESSAGES +@dirrm %%HORDIR%%/locale/km_KH +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/mk_MK +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/uk_UA +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/ldap +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/services/download +@dirrm %%HORDIR%%/services/editor/htmlarea/images +@dirrm %%HORDIR%%/services/editor/htmlarea/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/AnselImage +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ListType/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ListType +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/TableOperations +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins +@dirrm %%HORDIR%%/services/editor/htmlarea/popups +@dirrm %%HORDIR%%/services/editor/htmlarea +@dirrm %%HORDIR%%/services/editor +@dirrm %%HORDIR%%/services/help +@dirrm %%HORDIR%%/services/images +@dirrm %%HORDIR%%/services/obrowser +@dirrm %%HORDIR%%/services/portal +@dirrm %%HORDIR%%/services/prefs +@dirrm %%HORDIR%%/services/shares +@dirrm %%HORDIR%%/services +@dirrm %%HORDIR%%/templates/admin/groups +@dirrm %%HORDIR%%/templates/admin/setup +@dirrm %%HORDIR%%/templates/admin/user +@dirrm %%HORDIR%%/templates/admin +@dirrm %%HORDIR%%/templates/contents +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/help +@dirrm %%HORDIR%%/templates/index +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/login +@dirrm %%HORDIR%%/templates/maintenance +@dirrm %%HORDIR%%/templates/menu +@dirrm %%HORDIR%%/templates/portal +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/problem +@dirrm %%HORDIR%%/templates/rpcsum +@dirrm %%HORDIR%%/templates/shares +@dirrm %%HORDIR%%/templates/test +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/NeXTgrey +@dirrm %%HORDIR%%/themes/azur +@dirrm %%HORDIR%%/themes/barbie +@dirrm %%HORDIR%%/themes/bluemoon +@dirrm %%HORDIR%%/themes/bluewhite +@dirrm %%HORDIR%%/themes/brown +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/camouflage/graphics +@dirrm %%HORDIR%%/themes/camouflage +@dirrm %%HORDIR%%/themes/cornflower/graphics +@dirrm %%HORDIR%%/themes/cornflower +@dirrm %%HORDIR%%/themes/gennevilliers +@dirrm %%HORDIR%%/themes/graphics/alerts +@dirrm %%HORDIR%%/themes/graphics/avatars +@dirrm %%HORDIR%%/themes/graphics/block/moon +@dirrm %%HORDIR%%/themes/graphics/block/sunrise +@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom/23x23 +@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom/32x32 +@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom +@dirrm %%HORDIR%%/themes/graphics/block +@dirrm %%HORDIR%%/themes/graphics/emoticons +@dirrm %%HORDIR%%/themes/graphics/flags +@dirrm %%HORDIR%%/themes/graphics/image +@dirrm %%HORDIR%%/themes/graphics/mime +@dirrm %%HORDIR%%/themes/graphics/mobile +@dirrm %%HORDIR%%/themes/graphics/nav +@dirrm %%HORDIR%%/themes/graphics/tree +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/green +@dirrm %%HORDIR%%/themes/grey +@dirrm %%HORDIR%%/themes/hi-contrast +@dirrm %%HORDIR%%/themes/ideas/graphics +@dirrm %%HORDIR%%/themes/ideas +@dirrm %%HORDIR%%/themes/kolab/graphics +@dirrm %%HORDIR%%/themes/kolab +@dirrm %%HORDIR%%/themes/lavander +@dirrm %%HORDIR%%/themes/lightblue/graphics +@dirrm %%HORDIR%%/themes/lightblue +@dirrm %%HORDIR%%/themes/luc/graphics +@dirrm %%HORDIR%%/themes/luc +@dirrm %%HORDIR%%/themes/lucblue +@dirrm %%HORDIR%%/themes/mobile +@dirrm %%HORDIR%%/themes/mozilla/graphics +@dirrm %%HORDIR%%/themes/mozilla +@dirrm %%HORDIR%%/themes/postnuke +@dirrm %%HORDIR%%/themes/print +@dirrm %%HORDIR%%/themes/purple +@dirrm %%HORDIR%%/themes/simplex/graphics +@dirrm %%HORDIR%%/themes/simplex +@dirrm %%HORDIR%%/themes +@dirrm %%HORDIR%%/util +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/www/horde-trean/Makefile b/www/horde-trean/Makefile index fe371ed215be..10b9e163918f 100644 --- a/www/horde-trean/Makefile +++ b/www/horde-trean/Makefile @@ -6,6 +6,7 @@ # PORTNAME= trean +DISTVERSIONPREFIX= DISTVERSION= 0.1.beta20070316 CATEGORIES= www MASTER_SITES= CENKES @@ -14,70 +15,10 @@ PKGNAMEPREFIX= horde- MAINTAINER= beech@alaskaparadise.com COMMENT= Bookmark manager -RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - +USE_HORDE= base pkg-message USE_BZIP2= yes -NO_BUILD= yes -USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_GETTEXT= yes -REINPLACE_ARGS= -i "" - PORTDOCS= CHANGES CREDITS INSTALL TODO README -CONFFILE= conf.xml .htaccess -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LTREANDIR= ${LHORDEDIR}/trean -PEARDIR?= ${LOCALBASE}/share/pear - -PLIST_SUB= TREANDIR=${LTREANDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= TREANDIR=${TREANDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} - -TREANDIR= ${PREFIX}/${LTREANDIR} -CONFDIR= ${TREANDIR}/config - -HOSTNAME?= `/bin/hostname` -SERVOS?= ${OPSYS}-${OSREL} - -PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h - -.include <bsd.port.pre.mk> - -.if ${APACHE_VERSION} >= 20 -HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes/ -.else -HORDE_INC= ${LOCALBASE}/etc/horde/ -.endif - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @${REINPLACE_CMD} -e "s:/usr/local:${LOCALBASE}:" ${WRKSRC}/config/conf.xml - @${SED} -e "s:/home/httpd/html/horde/trean:${TREANDIR}:" \ - ${FILESDIR}/httpd.conf.trean > ${WRKDIR}/httpd-trean.conf - -do-install: - @${INSTALL} -d ${TREANDIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${TREANDIR}/ - @${CP} -p ${WRKSRC}/*.php ${TREANDIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${INSTALL_DATA} ${WRKDIR}/httpd-trean.conf ${HORDE_INC}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${TREANDIR}/ - @${CHMOD} -R o-rwx ${CONFDIR}/ -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/www/horde-trean/files/httpd.conf.trean b/www/horde-trean/files/httpd.conf.trean deleted file mode 100644 index abf745462c19..000000000000 --- a/www/horde-trean/files/httpd.conf.trean +++ /dev/null @@ -1,31 +0,0 @@ -# This is included in Apache's httpd.conf for trean -# -# For security, don't serve pages from the trean configuration and -# library directories. -# -<Directory "/home/httpd/html/horde/trean/config"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/trean/lib"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/trean/locale"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/trean/po"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/trean/scripts"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/trean/templates"> - order deny,allow - deny from all -</Directory> -# End of trean configuration ================ - diff --git a/www/horde-trean/files/pkg-deinstall.in b/www/horde-trean/files/pkg-deinstall.in deleted file mode 100644 index 551e0645a691..000000000000 --- a/www/horde-trean/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup trean config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%TREANDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/www/horde-trean/files/pkg-install.in b/www/horde-trean/files/pkg-install.in deleted file mode 100644 index 03b0d3f08c38..000000000000 --- a/www/horde-trean/files/pkg-install.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%TREANDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/www/horde-trean/files/pkg-message.in b/www/horde-trean/files/pkg-message.in deleted file mode 100644 index 6269fa4b0bc1..000000000000 --- a/www/horde-trean/files/pkg-message.in +++ /dev/null @@ -1,11 +0,0 @@ -************************************************************************ -TREAN has been installed in %%TREANDIR%% with your blank -configuration files. - -Trean must be configured; if not, see `pkg_info -D -x horde'. - -Finally, you must login to Horde as a Horde Administrator to finish the -configuration. - -To protect your configuration files, you have to restart Apache. -************************************************************************ diff --git a/www/horde-trean/pkg-plist b/www/horde-trean/pkg-plist index 79b9a5e9bb26..69fd25044e24 100644 --- a/www/horde-trean/pkg-plist +++ b/www/horde-trean/pkg-plist @@ -1,144 +1,144 @@ -%%TREANDIR%%/add.php -%%TREANDIR%%/bookmark.php -%%TREANDIR%%/browse.php -%%TREANDIR%%/config/.cvsignore -%%TREANDIR%%/config/.htaccess -%%TREANDIR%%/config/conf.xml -%%TREANDIR%%/config/prefs.php.dist -%%TREANDIR%%/data.php -%%TREANDIR%%/edit.php -%%TREANDIR%%/favicon.php -%%TREANDIR%%/index.php -%%TREANDIR%%/js/src/star_rating.js -%%TREANDIR%%/js/star_rating.js -%%TREANDIR%%/lib/Block/bookmarks.php -%%TREANDIR%%/lib/Block/highestrated.php -%%TREANDIR%%/lib/Block/mostclicked.php -%%TREANDIR%%/lib/Block/tree_menu.php -%%TREANDIR%%/lib/Bookmarks.php -%%TREANDIR%%/lib/Forms/Search.php -%%TREANDIR%%/lib/Trean.php -%%TREANDIR%%/lib/Views/BookmarkList.php -%%TREANDIR%%/lib/api.php -%%TREANDIR%%/lib/base.php -%%TREANDIR%%/lib/version.php -%%TREANDIR%%/locale/de_DE/LC_MESSAGES/trean.mo -%%TREANDIR%%/locale/en_US/help.xml -%%TREANDIR%%/locale/es_ES/LC_MESSAGES/trean.mo -%%TREANDIR%%/locale/fi_FI/LC_MESSAGES/trean.mo -%%TREANDIR%%/locale/fi_FI/help.xml -%%TREANDIR%%/locale/fr_FR/LC_MESSAGES/trean.mo -%%TREANDIR%%/locale/it_IT/LC_MESSAGES/trean.mo -%%TREANDIR%%/locale/nb_NO/LC_MESSAGES/trean.mo -%%TREANDIR%%/locale/nl_NL/LC_MESSAGES/trean.mo -%%TREANDIR%%/locale/sl_SI/LC_MESSAGES/trean.mo -%%TREANDIR%%/locale/sv_SE/LC_MESSAGES/trean.mo -%%TREANDIR%%/locale/zh_TW/LC_MESSAGES/trean.mo -%%TREANDIR%%/perms.php -%%TREANDIR%%/po/de_DE.po -%%TREANDIR%%/po/es_ES.po -%%TREANDIR%%/po/fi_FI.po -%%TREANDIR%%/po/fr_FR.po -%%TREANDIR%%/po/it_IT.po -%%TREANDIR%%/po/nb_NO.po -%%TREANDIR%%/po/nl_NL.po -%%TREANDIR%%/po/sl_SI.po -%%TREANDIR%%/po/sv_SE.po -%%TREANDIR%%/po/trean.pot -%%TREANDIR%%/po/zh_TW.po -%%TREANDIR%%/redirect.php -%%TREANDIR%%/reports.php -%%TREANDIR%%/rss.php -%%TREANDIR%%/scripts/check_links.php -%%TREANDIR%%/scripts/sql/trean.sql -%%TREANDIR%%/scripts/upgrades/2006-12-29_cleanup.php -%%TREANDIR%%/scripts/upgrades/2006-12-29_sql_bookmarks.php -%%TREANDIR%%/search.php -%%TREANDIR%%/templates/add/add.inc -%%TREANDIR%%/templates/block/1line.inc -%%TREANDIR%%/templates/block/2line.inc -%%TREANDIR%%/templates/block/standard.inc -%%TREANDIR%%/templates/browse.php -%%TREANDIR%%/templates/common-header.inc -%%TREANDIR%%/templates/data/export.inc -%%TREANDIR%%/templates/data/import.inc -%%TREANDIR%%/templates/edit/bookmark.inc -%%TREANDIR%%/templates/edit/folder.inc -%%TREANDIR%%/templates/edit/footer.inc -%%TREANDIR%%/templates/edit/header.inc -%%TREANDIR%%/templates/menu.inc -%%TREANDIR%%/templates/reports.php -%%TREANDIR%%/templates/search.php -%%TREANDIR%%/templates/star_rating_helper.php -%%TREANDIR%%/templates/views/BookmarkList.php -%%TREANDIR%%/test.php -%%TREANDIR%%/themes/graphics/add.png -%%TREANDIR%%/themes/graphics/az.png -%%TREANDIR%%/themes/graphics/delete.png -%%TREANDIR%%/themes/graphics/edit.png -%%TREANDIR%%/themes/graphics/favicon.ico -%%TREANDIR%%/themes/graphics/folders/folder_create.png -%%TREANDIR%%/themes/graphics/folders/folder_delete.png -%%TREANDIR%%/themes/graphics/folders/folder_edit.png -%%TREANDIR%%/themes/graphics/http/1xx.png -%%TREANDIR%%/themes/graphics/http/2xx.png -%%TREANDIR%%/themes/graphics/http/3xx.png -%%TREANDIR%%/themes/graphics/http/4xx.png -%%TREANDIR%%/themes/graphics/http/5xx.png -%%TREANDIR%%/themes/graphics/http/error.png -%%TREANDIR%%/themes/graphics/minus.png -%%TREANDIR%%/themes/graphics/plus.png -%%TREANDIR%%/themes/graphics/protocol/ftp.png -%%TREANDIR%%/themes/graphics/protocol/http.png -%%TREANDIR%%/themes/graphics/protocol/https.png -%%TREANDIR%%/themes/graphics/rating-star.gif -%%TREANDIR%%/themes/graphics/reports.png -%%TREANDIR%%/themes/graphics/trean.png -%%TREANDIR%%/themes/graphics/za.png -%%TREANDIR%%/themes/screen.css -%%HORDE_INC%%httpd-trean.conf -@dirrm %%TREANDIR%%/themes/graphics/protocol -@dirrm %%TREANDIR%%/themes/graphics/http -@dirrm %%TREANDIR%%/themes/graphics/folders -@dirrm %%TREANDIR%%/themes/graphics -@dirrm %%TREANDIR%%/themes -@dirrm %%TREANDIR%%/templates/views -@dirrm %%TREANDIR%%/templates/edit -@dirrm %%TREANDIR%%/templates/data -@dirrm %%TREANDIR%%/templates/block -@dirrm %%TREANDIR%%/templates/add -@dirrm %%TREANDIR%%/templates -@dirrm %%TREANDIR%%/scripts/upgrades -@dirrm %%TREANDIR%%/scripts/sql -@dirrm %%TREANDIR%%/scripts -@dirrm %%TREANDIR%%/po -@dirrm %%TREANDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/zh_TW -@dirrm %%TREANDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/sv_SE -@dirrm %%TREANDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/sl_SI -@dirrm %%TREANDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/nl_NL -@dirrm %%TREANDIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/nb_NO -@dirrm %%TREANDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/it_IT -@dirrm %%TREANDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/fr_FR -@dirrm %%TREANDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/fi_FI -@dirrm %%TREANDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/es_ES -@dirrm %%TREANDIR%%/locale/en_US -@dirrm %%TREANDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%TREANDIR%%/locale/de_DE -@dirrm %%TREANDIR%%/locale -@dirrm %%TREANDIR%%/lib/Views -@dirrm %%TREANDIR%%/lib/Forms -@dirrm %%TREANDIR%%/lib/Block -@dirrm %%TREANDIR%%/lib -@dirrm %%TREANDIR%%/js/src -@dirrm %%TREANDIR%%/js -@dirrm %%TREANDIR%%/config -@dirrm %%TREANDIR%% +%%HORDIR%%/add.php +%%HORDIR%%/bookmark.php +%%HORDIR%%/browse.php +%%HORDIR%%/config/.cvsignore +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/edit.php +%%HORDIR%%/favicon.php +%%HORDIR%%/index.php +%%HORDIR%%/js/src/star_rating.js +%%HORDIR%%/js/star_rating.js +%%HORDIR%%/lib/Block/bookmarks.php +%%HORDIR%%/lib/Block/highestrated.php +%%HORDIR%%/lib/Block/mostclicked.php +%%HORDIR%%/lib/Block/tree_menu.php +%%HORDIR%%/lib/Bookmarks.php +%%HORDIR%%/lib/Forms/Search.php +%%HORDIR%%/lib/Trean.php +%%HORDIR%%/lib/Views/BookmarkList.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/de_DE/LC_MESSAGES/trean.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/trean.mo +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/trean.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/trean.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/trean.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/trean.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/trean.mo +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/trean.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/trean.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/trean.mo +%%HORDIR%%/perms.php +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/trean.pot +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/redirect.php +%%HORDIR%%/reports.php +%%HORDIR%%/rss.php +%%HORDIR%%/scripts/check_links.php +%%HORDIR%%/scripts/sql/trean.sql +%%HORDIR%%/scripts/upgrades/2006-12-29_cleanup.php +%%HORDIR%%/scripts/upgrades/2006-12-29_sql_bookmarks.php +%%HORDIR%%/search.php +%%HORDIR%%/templates/add/add.inc +%%HORDIR%%/templates/block/1line.inc +%%HORDIR%%/templates/block/2line.inc +%%HORDIR%%/templates/block/standard.inc +%%HORDIR%%/templates/browse.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/edit/bookmark.inc +%%HORDIR%%/templates/edit/folder.inc +%%HORDIR%%/templates/edit/footer.inc +%%HORDIR%%/templates/edit/header.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/reports.php +%%HORDIR%%/templates/search.php +%%HORDIR%%/templates/star_rating_helper.php +%%HORDIR%%/templates/views/BookmarkList.php +%%HORDIR%%/test.php +%%HORDIR%%/themes/graphics/add.png +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/delete.png +%%HORDIR%%/themes/graphics/edit.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/folders/folder_create.png +%%HORDIR%%/themes/graphics/folders/folder_delete.png +%%HORDIR%%/themes/graphics/folders/folder_edit.png +%%HORDIR%%/themes/graphics/http/1xx.png +%%HORDIR%%/themes/graphics/http/2xx.png +%%HORDIR%%/themes/graphics/http/3xx.png +%%HORDIR%%/themes/graphics/http/4xx.png +%%HORDIR%%/themes/graphics/http/5xx.png +%%HORDIR%%/themes/graphics/http/error.png +%%HORDIR%%/themes/graphics/minus.png +%%HORDIR%%/themes/graphics/plus.png +%%HORDIR%%/themes/graphics/protocol/ftp.png +%%HORDIR%%/themes/graphics/protocol/http.png +%%HORDIR%%/themes/graphics/protocol/https.png +%%HORDIR%%/themes/graphics/rating-star.gif +%%HORDIR%%/themes/graphics/reports.png +%%HORDIR%%/themes/graphics/trean.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/screen.css +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js/src +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Forms +@dirrm %%HORDIR%%/lib/Views +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/add +@dirrm %%HORDIR%%/templates/block +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/edit +@dirrm %%HORDIR%%/templates/views +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics/folders +@dirrm %%HORDIR%%/themes/graphics/http +@dirrm %%HORDIR%%/themes/graphics/protocol +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% diff --git a/www/horde4-base/Makefile b/www/horde4-base/Makefile index 4536d3060587..9718818300e0 100644 --- a/www/horde4-base/Makefile +++ b/www/horde4-base/Makefile @@ -7,13 +7,13 @@ PORTNAME= horde DISTVERSION= 3.1.4 +DISTVERSIONPREFIX= PORTREVISION= 1 CATEGORIES= www -MASTER_SITES= HORDE PKGNAMESUFFIX= -base MAINTAINER= beech@alaskaparadise.com -COMMENT= A common code-base used by Horde applications, written in PHP +COMMENT= Common code-base used by Horde applications, written in PHP #---------------------------------------------------------------------------- # You may define these options: @@ -80,13 +80,8 @@ RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ CONFLICTS= horde-2.* -NO_BUILD= yes USE_GETTEXT= yes # Already implied by USE_PHP =gettext, to pet portlint USE_PHP= ctype gettext session -SUB_FILES= pkg-message pkg-deinstall pkg-install -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -PKGINSTALL= ${WRKDIR}/pkg-install -PKGMESSAGE= ${WRKDIR}/pkg-message .if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp @@ -197,30 +192,8 @@ RUN_DEPENDS+= ${PEARDIR}/Services/Weather.php:${PORTSDIR}/misc/pear-Services_Wea RUN_DEPENDS+= ${LOCALBASE}/share/GeoIP/GeoIP.dat:${PORTSDIR}/net/GeoIP .endif -REINPLACE_ARGS= -i.beforeHorde PORTDOCS= README CHANGES CODING_STANDARDS CONTRIBUTING CREDITS HACKING INSTALL \ PERFORMANCE RELEASE_NOTES SECURITY TODO TRANSLATIONS UPGRADING -CONFFILE= conf.php hooks.php mime_drivers.php motd.php nls.php prefs.php registry.php -SUB_DIRS= admin config js lib locale po scripts services templates themes util - -LHORDEDIR?= www/horde -LHORDESBIN?= sbin - -PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN} -SUB_LIST+= HORDEDIR=${HORDEDIR} HORDESBIN=${HORDESBIN} \ - HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} - -HORDEDIR= ${PREFIX}/${LHORDEDIR} -HORDESBIN= ${PREFIX}/${LHORDESBIN} -CONFDIR= ${HORDEDIR}/config - -PEARDIR?= ${LOCALBASE}/share/pear -LOG_FILE?= /var/log/horde.log - -PATCHES2RM= po/translation.php config/conf.xml scripts/sql/README \ - config/mime_drivers.php.dist config/registry.php.dist -SEDIN2RM= lib/Horde/Auth/mcal.php config/conf.xml docs/INSTALL \ - config/mime_drivers.php.dist .include <bsd.port.pre.mk> @@ -233,13 +206,7 @@ USE_PHP+= mcal . endif .endif -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @${RM} ${PATCHES2RM:S|^|${WRKSRC}/|:S|$|.orig|} - @${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:"\ - ${WRKSRC}/config/mime_drivers.php.dist +pre-patch: .if !defined(WITHOUT_X11) . if !defined(WITHOUT_WV) @${REINPLACE_CMD} -e "s://UNCOMMENTIFWV::" ${WRKSRC}/config/mime_drivers.php.dist @@ -267,16 +234,10 @@ pre-configure: @${REINPLACE_CMD} -e "s:GeoIP lookup will not be performed.\"/>:GeoIP lookup will not be performed.\">${LOCALBASE}/share/GeoIP/GeoIP.dat</configstring>:" \ ${WRKSRC}/config/conf.xml .endif - @${REINPLACE_CMD} -e "s:/tmp/horde.log:${LOG_FILE}:" ${WRKSRC}/config/conf.xml @${REINPLACE_CMD} -e "s:/etc/mpasswd:${LOCALBASE}/etc/mpasswd:g" \ ${WRKSRC}/lib/Horde/Auth/mcal.php @${REINPLACE_CMD} -e "s:/usr/local/apache/htdocs:${PREFIX}/www:g" \ - ${WRKSRC}/docs/INSTALL - @${RM} ${SEDIN2RM:S|^|${WRKSRC}/|:S|$|.beforeHorde|} - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; && \ - ${FIND} . -name "*.beforeHorde" -delete) + ${WRKDIR}/docs/INSTALL pre-install: .if !defined(WITHOUT_SUPPORTED_DB) && exists(${LOCALBASE}/bin/php) @@ -302,41 +263,5 @@ pre-install: ${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL .endif -# Copy RCSID tag from conf.xml into conf.php to stop Horde complaining - @if ! ${GREP} -q -e "$$Horde.*conf\.xml" ${WRKSRC}/config/conf.php.dist; then \ - ${GREP} -h "$$Horde.*conf\.xml" ${WRKSRC} ${WRKSRC}/config/conf.xml \ - | ${SED} -e 's#^ *<!--#//#' -e 's# *--> *$$##g' \ - >> ${WRKSRC}/config/conf.php.dist; \ - fi - -do-install: - @${MKDIR} ${HORDEDIR} - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${HORDEDIR}/ - @${CP} -p ${WRKSRC}/*.php ${HORDEDIR} - @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh - @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDEDIR}/ - @${CHMOD} -R o-rwx ${HORDEDIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${HORDEDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${HORDEDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${TOUCH} ${LOG_FILE} - ${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE} - ${ECHO_CMD} "@exec ${TOUCH} ${LOG_FILE};${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE}"\ - >> ${TMPPLIST} - ${ECHO_CMD} "@unexec if [ ! -s ${LOG_FILE} ];then ${RM} -f ${LOG_FILE};fi"\ - >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" .include <bsd.port.post.mk> diff --git a/www/horde4-base/bsd.horde.mk b/www/horde4-base/bsd.horde.mk new file mode 100644 index 000000000000..7b24b0e9205f --- /dev/null +++ b/www/horde4-base/bsd.horde.mk @@ -0,0 +1,112 @@ +#-*- mode: makefile; tab-width: 4; -* +# ex:ts=4 +# +# Maintainers: Beech Rintoul <beech@alaskaparadise.com>, +# Andrew Pantyukhin <infofarmer@FreeBSD.org> +# + +MASTER_SITES?= HORDE +DISTVERSIONPREFIX?= h3- + +.if defined(USE_HORDE) && ${USE_HORDE:Mbase} +RUN_DEPENDS+= ${HORBAS}/rpc.php:${PORTSDIR}/www/horde-base +.endif + +#USE_BZIP2= yes +NO_BUILD= yes + +PEARDIR?= ${LOCALBASE}/share/pear +PORTREV_H?= ${LOCALBASE}/include/c-client/portrevision.h +HORBAS?= ${PREFIX}/www/horde +HORDIR?= ${HORBAS}${PORTNAME:S|^|/|:S|/horde||} +HORCFG?= ${HORDIR}/config +HORLOG?= /var/log/horde.log +PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall +PKGINSTALL?= ${WRKDIR}/pkg-install +PLIST_SUB+= HORDIR=${HORDIR:S|^${PREFIX}/||} HORBAS=${HORBAS:S|^${PREFIX}/||} +SUB_LIST+= HORDIR=${HORDIR} PORTSDIR=${PORTSDIR} HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} HORCFG=${HORCFG} \ + PORTNAME=${PORTNAME} +PKGMESSAGE?= ${WRKDIR}/pkg-message +.if !defined(USE_HORDE) || !${USE_HORDE:Mpkg-message} +SUB_FILES?= pkg-message +.endif + +.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) +RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp +WANT_PHP_CGI= yes +HORDEADMUSR?= horde +SUB_LIST+= WITH_SUPHP=yes +.else +WANT_PHP_WEB= yes +.endif + +HOSTNAME?= `/bin/hostname` +SERVOS?= ${OPSYS}-${OSREL} + +.if !target(post-extract) +post-extract: + @${RM} -f ${WRKSRC}/COPYING ${WRKSRC}/LICENSE + @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ + @${MV} ${WRKSRC}/docs ${WRKDIR}/ +.endif + +.if !target(post-patch) +post-patch: +. for file in pkg-deinstall pkg-install + @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${.CURDIR}/../../www/horde-base/files/${file}.in > ${WRKDIR}/${file} +. endfor +. if defined(USE_HORDE) && ${USE_HORDE:Mpkg-message} + @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${.CURDIR}/../../www/horde-base/files/pkg-message.common.in >\ + ${WRKDIR}/pkg-message +. endif + @${EGREP} -lr '(/usr/local|%%LOCALBASE%%|/tmp/horde.log)' ${WRKSRC}/config/ |\ + ${XARGS} ${REINPLACE_CMD} -Ee 's:(/usr/local|%%LOCALBASE%%):${LOCALBASE}:;s|/tmp/horde.log|${HORLOG}|' + @if [ -d ${WRKSRC}/scripts ]; then\ + ${EGREP} -lr '(/usr/local/bin/php|usr/bin/php)' ${WRKSRC}/scripts/ |\ + ${XARGS} ${REINPLACE_CMD} -Ee 's:(/usr/local/bin/php|/usr/bin/php):${LOCALBASE}/bin/php:'; fi +# Copy RCSID tag from conf.xml into conf.php to stop Horde complaining + @if [ -f ${WRKSRC}/config/conf.php.dist ] &&\ + ! ${GREP} -qe "$$Horde:.*conf\.xml" ${WRKSRC}/config/conf.php.dist; then \ + ${GREP} -hm1 "$$Horde:.*conf\.xml" ${WRKSRC}/config/conf.xml |\ + ${SED} -e 's#^ *<!--#//#;s# *--> *$$##g' \ + >> ${WRKSRC}/config/conf.php.dist; \ + fi +.endif + +.if !target(post-configure) +post-configure: + @${FIND} ${WRKSRC} -name \*.orig -delete -or -name \*.bak -delete +.endif + +.if !target(do-install) +do-install: + @${INSTALL} -d ${HORDIR}/ + @${CP} -Rp ${WRKSRC}/ ${HORDIR}/ + @${TOUCH} ${HORLOG} + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDIR}/ ${HORLOG} + @${CHMOD} -R o-rwx ${HORDIR}/ ${HORLOG} + @${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} %D/${HORDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} + @${ECHO_CMD} @exec ${CHMOD} -R o-rwx %D/${HORDIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} + @${ECHO_CMD} "@exec ${TOUCH} ${HORLOG};${CHOWN} ${WWWOWN}:${WWWGRP} ${HORLOG}" >> ${TMPPLIST} +.if ${HORBAS} == ${HORDIR} + @${ECHO_CMD} "@unexec if [ ! -s ${HORLOG} ];then ${RM} -f ${HORLOG};fi" >> ${TMPPLIST} +.endif +.ifndef NOPORTDOCS + @${INSTALL} -d ${DOCSDIR}/ + @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/docs/|} ${DOCSDIR}/ +.endif + @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + @${ECHO_MSG} + @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} +.endif + +horde-plist: extract + @${FIND} -s ${WRKSRC} -not -type d | ${SED} -e 's|^${WRKSRC}|%%HORDIR%%|' > ${PLIST} + @${FIND} -ds ${WRKSRC} -type d -not -name ${DISTNAME} -empty |\ + ${SED} -e 's|^${WRKSRC}|@exec mkdir -p %D/%%HORDIR%%|' >> ${PLIST} + @${FIND} -ds ${WRKSRC} -type d -not -name ${DISTNAME} |\ + ${SED} -e 's|^${WRKSRC}|@dirrm %%HORDIR%%|' |\ + ${SED} -Ee '/%(\/lib\/data|\/config)/s|dirrm|dirrmtry|' >> ${PLIST} + @${ECHO_CMD} @dirrmtry %%HORDIR%% >> ${PLIST} + @${ECHO_CMD} @dirrmtry %%HORBAS%% >> ${PLIST} diff --git a/www/horde4-base/files/pkg-deinstall.in b/www/horde4-base/files/pkg-deinstall.in index 7f9f6649e9fa..c9c309067789 100644 --- a/www/horde4-base/files/pkg-deinstall.in +++ b/www/horde4-base/files/pkg-deinstall.in @@ -6,24 +6,12 @@ PATH=/usr/sbin:/usr/bin:/bin ; export PATH handle_config() { - # Try to restore httpd.conf when deinstalling Horde - - if [ -f %%APACHE_CONF%%.beforeHorde ] ; then - echo "Restoring httpd.conf..." - cp %%APACHE_CONF%% %%APACHE_CONF%%.deinstHorde - sed -i.tmp -e "s:Include ${PKG_PREFIX}/etc/horde:# Include ${PKG_PREFIX}/etc/horde:g" \ - %%APACHE_CONF%% - rm %%APACHE_CONF%%.tmp - fi - - # Backup Horde config files, if needed. - if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%HORDEDIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 + for cf in %%HORDIR%%/config/*.dist; do + diff -bBqw $cf ${cf%.dist} >/dev/null 2>&1 case $? in 0) # original config file, delete - rm -f $cf + rm -f ${cf%.dist} ;; 1) # config file has been updated, leave it ;; @@ -41,18 +29,13 @@ case $2 in POST-DEINSTALL) if [ x%%HORDEADMUSR%% != x ]; then cat <<EOMSG -The horde port has been deleted. -If you are not upgrading and don't intend to use -Horde any more then you may wish to delete -the %%HORDEADMUSR%% account, which can be done with -the following command: +A horde port has been deleted. If you are not upgrading +and don't intend to use Horde any more then you may wish +to delete the %%HORDEADMUSR%% account, which can be done +with the following command: # pw userdel %%HORDEADMUSR%% EOMSG - if [ -d %%PREFIX%%/%%MYADMDIR%% ] ; then - echo " # rm -rf %%PREFIX%%/%%HORDEDIR%%/" - fi - echo - fi - ;; + fi + ;; esac diff --git a/www/horde4-base/files/pkg-install.in b/www/horde4-base/files/pkg-install.in index a2dc1e225389..2ecbe6d3f5ef 100644 --- a/www/horde4-base/files/pkg-install.in +++ b/www/horde4-base/files/pkg-install.in @@ -9,7 +9,7 @@ PATH=/usr/sbin:/usr/bin:/bin ; export PATH WITH_SUPHP=%%WITH_SUPHP%% -hordedir=%%HORDEDIR%% +hordedir=%%HORDIR%% hordeusr=%%HORDEADMUSR%% hordegrp=%%HORDEGRP%% @@ -104,9 +104,9 @@ case $2 in if [ -z "${PACKAGE_BUILDING}" ]; then # Copy over sample config files unless they already exist - for cf in `ls %%HORDEDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf + for cf in %%HORDIR%%/config/*.dist; do + if [ ! -f ${cf%.dist} ]; then + cp -p $cf ${cf%.dist} fi done fi diff --git a/www/horde4-base/files/pkg-message.common.in b/www/horde4-base/files/pkg-message.common.in new file mode 100644 index 000000000000..37de388ef932 --- /dev/null +++ b/www/horde4-base/files/pkg-message.common.in @@ -0,0 +1,9 @@ +************************************************************************ +%%PORTNAME%% has been installed in %%HORDIR%% with +blank configuration files. + +Horde must be configured; if not, see `pkg_info -Dx horde-base'. + +Finally, you must login to Horde as an Administrator to finish the +configuration. +************************************************************************ diff --git a/www/horde4-base/files/pkg-message.in b/www/horde4-base/files/pkg-message.in index 6620f9f27fe1..fa02fefea7bc 100644 --- a/www/horde4-base/files/pkg-message.in +++ b/www/horde4-base/files/pkg-message.in @@ -1,12 +1,12 @@ ************************************************************************ -Horde has been installed in %%HORDEDIR%% with your blank +Horde has been installed in %%HORDIR%% with your blank configuration files. WARNING! the first user will get logged in as an administrator! ******** If you want Horde to access a database, you have to run the -appropriate scripts located in %%HORDEDIR%%/scripts/sql. +appropriate scripts located in %%HORDIR%%/scripts/sql. 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. diff --git a/www/horde4-base/pkg-plist b/www/horde4-base/pkg-plist index 29e0d333d896..e3ab2a254991 100644 --- a/www/horde4-base/pkg-plist +++ b/www/horde4-base/pkg-plist @@ -1,1715 +1,1715 @@ -%%HORDESBIN%%/horde_set_perms.sh -%%HORDEDIR%%/admin/cmdshell.php -%%HORDEDIR%%/admin/datatree.php -%%HORDEDIR%%/admin/groups.php -%%HORDEDIR%%/admin/index.php -%%HORDEDIR%%/admin/locale/en_US/help.xml -%%HORDEDIR%%/admin/locale/fi_FI/help.xml -%%HORDEDIR%%/admin/locale/hu_HU/help.xml -%%HORDEDIR%%/admin/perms/addchild.php -%%HORDEDIR%%/admin/perms/delete.php -%%HORDEDIR%%/admin/perms/edit.php -%%HORDEDIR%%/admin/perms/index.php -%%HORDEDIR%%/admin/phpshell.php -%%HORDEDIR%%/admin/sessions.php -%%HORDEDIR%%/admin/setup/config.php -%%HORDEDIR%%/admin/setup/diff.php -%%HORDEDIR%%/admin/setup/index.php -%%HORDEDIR%%/admin/setup/scripts.php -%%HORDEDIR%%/admin/sqlshell.php -%%HORDEDIR%%/admin/templates.php -%%HORDEDIR%%/admin/user.php -%%HORDEDIR%%/config/.htaccess -%%HORDEDIR%%/config/conf.php.dist -%%HORDEDIR%%/config/conf.xml -%%HORDEDIR%%/config/hooks.php.dist -%%HORDEDIR%%/config/mime_drivers.php.dist -%%HORDEDIR%%/config/motd.php.dist -%%HORDEDIR%%/config/nls.php.dist -%%HORDEDIR%%/config/prefs.php.dist -%%HORDEDIR%%/config/registry.php.dist -%%HORDEDIR%%/index.php -%%HORDEDIR%%/js/addEvent.php -%%HORDEDIR%%/js/alphaImageLoader.php -%%HORDEDIR%%/js/enter_key_trap.js -%%HORDEDIR%%/js/form_assign.js -%%HORDEDIR%%/js/form_helpers.js -%%HORDEDIR%%/js/form_sections.js -%%HORDEDIR%%/js/hideable.js -%%HORDEDIR%%/js/horde.ie.js -%%HORDEDIR%%/js/horde.js -%%HORDEDIR%%/js/httpclient.js -%%HORDEDIR%%/js/ieEscGuard.js -%%HORDEDIR%%/js/image.js -%%HORDEDIR%%/js/open_colorpicker.js -%%HORDEDIR%%/js/popup.js -%%HORDEDIR%%/js/sorter.js -%%HORDEDIR%%/js/stripe.js -%%HORDEDIR%%/js/tables.js -%%HORDEDIR%%/js/tooltip.js -%%HORDEDIR%%/lib/.htaccess -%%HORDEDIR%%/lib/Block/account.php -%%HORDEDIR%%/lib/Block/color.php -%%HORDEDIR%%/lib/Block/fortune.php -%%HORDEDIR%%/lib/Block/google.php -%%HORDEDIR%%/lib/Block/iframe.php -%%HORDEDIR%%/lib/Block/metar.php -%%HORDEDIR%%/lib/Block/moon.php -%%HORDEDIR%%/lib/Block/sunrise.php -%%HORDEDIR%%/lib/Block/time.php -%%HORDEDIR%%/lib/Block/weatherdotcom.php -%%HORDEDIR%%/lib/Block/weatherdotcom_strings.php -%%HORDEDIR%%/lib/File/CSV.php -%%HORDEDIR%%/lib/File/PDF.php -%%HORDEDIR%%/lib/File/PDF/fonts/courier.php -%%HORDEDIR%%/lib/File/PDF/fonts/helvetica.php -%%HORDEDIR%%/lib/File/PDF/fonts/helveticab.php -%%HORDEDIR%%/lib/File/PDF/fonts/helveticabi.php -%%HORDEDIR%%/lib/File/PDF/fonts/helveticai.php -%%HORDEDIR%%/lib/File/PDF/fonts/symbol.php -%%HORDEDIR%%/lib/File/PDF/fonts/times.php -%%HORDEDIR%%/lib/File/PDF/fonts/timesb.php -%%HORDEDIR%%/lib/File/PDF/fonts/timesbi.php -%%HORDEDIR%%/lib/File/PDF/fonts/timesi.php -%%HORDEDIR%%/lib/File/PDF/fonts/zapfdingbats.php -%%HORDEDIR%%/lib/Horde.php -%%HORDEDIR%%/lib/Horde/Array.php -%%HORDEDIR%%/lib/Horde/Auth.php -%%HORDEDIR%%/lib/Horde/Auth/Signup.php -%%HORDEDIR%%/lib/Horde/Auth/application.php -%%HORDEDIR%%/lib/Horde/Auth/auto.php -%%HORDEDIR%%/lib/Horde/Auth/composite.php -%%HORDEDIR%%/lib/Horde/Auth/customsql.php -%%HORDEDIR%%/lib/Horde/Auth/cyrsql.php -%%HORDEDIR%%/lib/Horde/Auth/cyrus.php -%%HORDEDIR%%/lib/Horde/Auth/ftp.php -%%HORDEDIR%%/lib/Horde/Auth/http.php -%%HORDEDIR%%/lib/Horde/Auth/imap.php -%%HORDEDIR%%/lib/Horde/Auth/imsp.php -%%HORDEDIR%%/lib/Horde/Auth/ipbasic.php -%%HORDEDIR%%/lib/Horde/Auth/ipmap.php -%%HORDEDIR%%/lib/Horde/Auth/kolab.php -%%HORDEDIR%%/lib/Horde/Auth/krb5.php -%%HORDEDIR%%/lib/Horde/Auth/ldap.php -%%HORDEDIR%%/lib/Horde/Auth/login.php -%%HORDEDIR%%/lib/Horde/Auth/mcal.php -%%HORDEDIR%%/lib/Horde/Auth/pam.php -%%HORDEDIR%%/lib/Horde/Auth/passwd.php -%%HORDEDIR%%/lib/Horde/Auth/peclsasl.php -%%HORDEDIR%%/lib/Horde/Auth/radius.php -%%HORDEDIR%%/lib/Horde/Auth/smb.php -%%HORDEDIR%%/lib/Horde/Auth/smbclient.php -%%HORDEDIR%%/lib/Horde/Auth/sql.php -%%HORDEDIR%%/lib/Horde/Block.php -%%HORDEDIR%%/lib/Horde/Block/Collection.php -%%HORDEDIR%%/lib/Horde/Block/Layout/Manager.php -%%HORDEDIR%%/lib/Horde/Block/Layout/View.php -%%HORDEDIR%%/lib/Horde/Block/UI.php -%%HORDEDIR%%/lib/Horde/Browser.php -%%HORDEDIR%%/lib/Horde/Browser/imode.php -%%HORDEDIR%%/lib/Horde/CLI.php -%%HORDEDIR%%/lib/Horde/Cache.php -%%HORDEDIR%%/lib/Horde/Cache/file.php -%%HORDEDIR%%/lib/Horde/Cache/zps4.php -%%HORDEDIR%%/lib/Horde/Cipher.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cbc.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/cfb64.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ecb.php -%%HORDEDIR%%/lib/Horde/Cipher/BlockMode/ofb64.php -%%HORDEDIR%%/lib/Horde/Cipher/blowfish.php -%%HORDEDIR%%/lib/Horde/Cipher/cast128.php -%%HORDEDIR%%/lib/Horde/Cipher/des.php -%%HORDEDIR%%/lib/Horde/Cipher/rc2.php -%%HORDEDIR%%/lib/Horde/Cipher/rc4.php -%%HORDEDIR%%/lib/Horde/Compress.php -%%HORDEDIR%%/lib/Horde/Compress/dbx.php -%%HORDEDIR%%/lib/Horde/Compress/gzip.php -%%HORDEDIR%%/lib/Horde/Compress/tar.php -%%HORDEDIR%%/lib/Horde/Compress/tnef.php -%%HORDEDIR%%/lib/Horde/Compress/zip.php -%%HORDEDIR%%/lib/Horde/Config.php -%%HORDEDIR%%/lib/Horde/Crypt.php -%%HORDEDIR%%/lib/Horde/Crypt/pgp.php -%%HORDEDIR%%/lib/Horde/Crypt/smime.php -%%HORDEDIR%%/lib/Horde/Data.php -%%HORDEDIR%%/lib/Horde/Data/csv.php -%%HORDEDIR%%/lib/Horde/Data/icalendar.php -%%HORDEDIR%%/lib/Horde/Data/imc.php -%%HORDEDIR%%/lib/Horde/Data/outlookcsv.php -%%HORDEDIR%%/lib/Horde/Data/tsv.php -%%HORDEDIR%%/lib/Horde/Data/vcard.php -%%HORDEDIR%%/lib/Horde/Data/vnote.php -%%HORDEDIR%%/lib/Horde/Data/vtodo.php -%%HORDEDIR%%/lib/Horde/DataTree.php -%%HORDEDIR%%/lib/Horde/DataTree/null.php -%%HORDEDIR%%/lib/Horde/DataTree/sql.php -%%HORDEDIR%%/lib/Horde/Date.php -%%HORDEDIR%%/lib/Horde/Editor.php -%%HORDEDIR%%/lib/Horde/Editor/htmlarea.php -%%HORDEDIR%%/lib/Horde/Form.php -%%HORDEDIR%%/lib/Horde/Form/Action.php -%%HORDEDIR%%/lib/Horde/Form/Action/conditional_enable.php -%%HORDEDIR%%/lib/Horde/Form/Action/conditional_setvalue.php -%%HORDEDIR%%/lib/Horde/Form/Action/reload.php -%%HORDEDIR%%/lib/Horde/Form/Action/submit.php -%%HORDEDIR%%/lib/Horde/Form/Action/sum_fields.php -%%HORDEDIR%%/lib/Horde/Form/Action/updatefield.php -%%HORDEDIR%%/lib/Horde/Form/Renderer.php -%%HORDEDIR%%/lib/Horde/Form/Type/tableset.php -%%HORDEDIR%%/lib/Horde/Graph.php -%%HORDEDIR%%/lib/Horde/Graph/Chart/pie.php -%%HORDEDIR%%/lib/Horde/Graph/Chart/pie3d.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/bar.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/bargrouped.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/barstacked.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/line.php -%%HORDEDIR%%/lib/Horde/Graph/Plot/scatter.php -%%HORDEDIR%%/lib/Horde/Group.php -%%HORDEDIR%%/lib/Horde/Group/hooks.php -%%HORDEDIR%%/lib/Horde/Group/ldap.php -%%HORDEDIR%%/lib/Horde/Help.php -%%HORDEDIR%%/lib/Horde/History.php -%%HORDEDIR%%/lib/Horde/IMAP/ACL.php -%%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc2086.php -%%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc4314.php -%%HORDEDIR%%/lib/Horde/IMAP/Admin.php -%%HORDEDIR%%/lib/Horde/IMAP/Cache.php -%%HORDEDIR%%/lib/Horde/IMAP/Search.php -%%HORDEDIR%%/lib/Horde/IMAP/Sort.php -%%HORDEDIR%%/lib/Horde/IMAP/Thread.php -%%HORDEDIR%%/lib/Horde/IMAP/Tree.php -%%HORDEDIR%%/lib/Horde/Identity.php -%%HORDEDIR%%/lib/Horde/Image.php -%%HORDEDIR%%/lib/Horde/Image/gd.php -%%HORDEDIR%%/lib/Horde/Image/im.php -%%HORDEDIR%%/lib/Horde/Image/png.php -%%HORDEDIR%%/lib/Horde/Image/rgb.php -%%HORDEDIR%%/lib/Horde/Image/svg.php -%%HORDEDIR%%/lib/Horde/Image/swf.php -%%HORDEDIR%%/lib/Horde/Kolab.php -%%HORDEDIR%%/lib/Horde/LDAP.php -%%HORDEDIR%%/lib/Horde/MIME.php -%%HORDEDIR%%/lib/Horde/MIME/Contents.php -%%HORDEDIR%%/lib/Horde/MIME/Headers.php -%%HORDEDIR%%/lib/Horde/MIME/MDN.php -%%HORDEDIR%%/lib/Horde/MIME/Magic.php -%%HORDEDIR%%/lib/Horde/MIME/Message.php -%%HORDEDIR%%/lib/Horde/MIME/Part.php -%%HORDEDIR%%/lib/Horde/MIME/Structure.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/css.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/deb.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/default.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/enriched.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/enscript.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/html.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/images.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/msexcel.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/mspowerpoint.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/msword.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/common.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/global_document.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/main_html.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/palm.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_header.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_inlined.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/style_mapping.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_cells.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_columns.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo/table_rows.xsl -%%HORDEDIR%%/lib/Horde/MIME/Viewer/pdf.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/php.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/plain.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/rar.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/report.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/rfc822.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/richtext.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/rpm.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/security.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/simple.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/source.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/srchighlite.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/tgz.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/tnef.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/vcard.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/webcpp.php -%%HORDEDIR%%/lib/Horde/MIME/Viewer/zip.php -%%HORDEDIR%%/lib/Horde/MIME/mime.magic.php -%%HORDEDIR%%/lib/Horde/MIME/mime.mapping.php -%%HORDEDIR%%/lib/Horde/Maintenance.php -%%HORDEDIR%%/lib/Horde/Menu.php -%%HORDEDIR%%/lib/Horde/Mobile.php -%%HORDEDIR%%/lib/Horde/Mobile/Renderer.php -%%HORDEDIR%%/lib/Horde/Mobile/Renderer/html.php -%%HORDEDIR%%/lib/Horde/Mobile/Renderer/wml.php -%%HORDEDIR%%/lib/Horde/NLS.php -%%HORDEDIR%%/lib/Horde/NLS/GeoIP.php -%%HORDEDIR%%/lib/Horde/NLS/carsigns.php -%%HORDEDIR%%/lib/Horde/NLS/coordinates.php -%%HORDEDIR%%/lib/Horde/NLS/countries.php -%%HORDEDIR%%/lib/Horde/NLS/tld.php -%%HORDEDIR%%/lib/Horde/Notification.php -%%HORDEDIR%%/lib/Horde/Notification/Event.php -%%HORDEDIR%%/lib/Horde/Notification/Listener.php -%%HORDEDIR%%/lib/Horde/Notification/Listener/audio.php -%%HORDEDIR%%/lib/Horde/Notification/Listener/javascript.php -%%HORDEDIR%%/lib/Horde/Notification/Listener/mobile.php -%%HORDEDIR%%/lib/Horde/Notification/Listener/status.php -%%HORDEDIR%%/lib/Horde/Perms.php -%%HORDEDIR%%/lib/Horde/Perms/UI.php -%%HORDEDIR%%/lib/Horde/Perms/datatree.php -%%HORDEDIR%%/lib/Horde/Prefs.php -%%HORDEDIR%%/lib/Horde/Prefs/CategoryManager.php -%%HORDEDIR%%/lib/Horde/Prefs/UI.php -%%HORDEDIR%%/lib/Horde/Prefs/imsp.php -%%HORDEDIR%%/lib/Horde/Prefs/kolab.php -%%HORDEDIR%%/lib/Horde/Prefs/ldap.php -%%HORDEDIR%%/lib/Horde/Prefs/session.php -%%HORDEDIR%%/lib/Horde/Prefs/sql.php -%%HORDEDIR%%/lib/Horde/RPC.php -%%HORDEDIR%%/lib/Horde/RPC/rest.php -%%HORDEDIR%%/lib/Horde/RPC/soap.php -%%HORDEDIR%%/lib/Horde/RPC/syncml.php -%%HORDEDIR%%/lib/Horde/RPC/syncml_wbxml.php -%%HORDEDIR%%/lib/Horde/RPC/webdav.php -%%HORDEDIR%%/lib/Horde/RPC/xmlrpc.php -%%HORDEDIR%%/lib/Horde/Registry.php -%%HORDEDIR%%/lib/Horde/SQL.php -%%HORDEDIR%%/lib/Horde/SQL/Keywords.php -%%HORDEDIR%%/lib/Horde/Scheduler.php -%%HORDEDIR%%/lib/Horde/Scheduler/cron.php -%%HORDEDIR%%/lib/Horde/Secret.php -%%HORDEDIR%%/lib/Horde/Serialize.php -%%HORDEDIR%%/lib/Horde/SessionHandler.php -%%HORDEDIR%%/lib/Horde/SessionHandler/dbm.php -%%HORDEDIR%%/lib/Horde/SessionHandler/ldap.php -%%HORDEDIR%%/lib/Horde/SessionHandler/memcache.php -%%HORDEDIR%%/lib/Horde/SessionHandler/mysql.php -%%HORDEDIR%%/lib/Horde/SessionHandler/none.php -%%HORDEDIR%%/lib/Horde/SessionHandler/oci8.php -%%HORDEDIR%%/lib/Horde/SessionHandler/pgsql.php -%%HORDEDIR%%/lib/Horde/SessionHandler/sapdb.php -%%HORDEDIR%%/lib/Horde/SessionHandler/sql.php -%%HORDEDIR%%/lib/Horde/SessionObjects.php -%%HORDEDIR%%/lib/Horde/Share.php -%%HORDEDIR%%/lib/Horde/String.php -%%HORDEDIR%%/lib/Horde/Template.php -%%HORDEDIR%%/lib/Horde/Text.php -%%HORDEDIR%%/lib/Horde/Text/Filter.php -%%HORDEDIR%%/lib/Horde/Text/Filter/bbcode.php -%%HORDEDIR%%/lib/Horde/Text/Filter/cleanascii.php -%%HORDEDIR%%/lib/Horde/Text/Filter/dimsignature.php -%%HORDEDIR%%/lib/Horde/Text/Filter/emails.php -%%HORDEDIR%%/lib/Horde/Text/Filter/emoticons.php -%%HORDEDIR%%/lib/Horde/Text/Filter/environment.php -%%HORDEDIR%%/lib/Horde/Text/Filter/highlightquotes.php -%%HORDEDIR%%/lib/Horde/Text/Filter/html2text.php -%%HORDEDIR%%/lib/Horde/Text/Filter/linkurls.php -%%HORDEDIR%%/lib/Horde/Text/Filter/rst.php -%%HORDEDIR%%/lib/Horde/Text/Filter/simplemarkup.php -%%HORDEDIR%%/lib/Horde/Text/Filter/space2html.php -%%HORDEDIR%%/lib/Horde/Text/Filter/tabs2spaces.php -%%HORDEDIR%%/lib/Horde/Text/Filter/text2html.php -%%HORDEDIR%%/lib/Horde/Text/Filter/words.php -%%HORDEDIR%%/lib/Horde/Text/Filter/xss.php -%%HORDEDIR%%/lib/Horde/Token.php -%%HORDEDIR%%/lib/Horde/Token/file.php -%%HORDEDIR%%/lib/Horde/Token/sql.php -%%HORDEDIR%%/lib/Horde/Tree.php -%%HORDEDIR%%/lib/Horde/Tree/html.php -%%HORDEDIR%%/lib/Horde/Tree/javascript.php -%%HORDEDIR%%/lib/Horde/Tree/select.php -%%HORDEDIR%%/lib/Horde/UI/Language.php -%%HORDEDIR%%/lib/Horde/UI/Pager.php -%%HORDEDIR%%/lib/Horde/UI/Tabs.php -%%HORDEDIR%%/lib/Horde/UI/VarRenderer.php -%%HORDEDIR%%/lib/Horde/UI/VarRenderer/html.php -%%HORDEDIR%%/lib/Horde/UI/VarRenderer/tableset_html.php -%%HORDEDIR%%/lib/Horde/UI/Widget.php -%%HORDEDIR%%/lib/Horde/Util.php -%%HORDEDIR%%/lib/Horde/VC.php -%%HORDEDIR%%/lib/Horde/VC/cvs.php -%%HORDEDIR%%/lib/Horde/VC/rcs.php -%%HORDEDIR%%/lib/Horde/VC/svn.php -%%HORDEDIR%%/lib/Horde/Variables.php -%%HORDEDIR%%/lib/Horde/iCalendar.php -%%HORDEDIR%%/lib/Horde/iCalendar/valarm.php -%%HORDEDIR%%/lib/Horde/iCalendar/vcard.php -%%HORDEDIR%%/lib/Horde/iCalendar/vevent.php -%%HORDEDIR%%/lib/Horde/iCalendar/vfreebusy.php -%%HORDEDIR%%/lib/Horde/iCalendar/vjournal.php -%%HORDEDIR%%/lib/Horde/iCalendar/vnote.php -%%HORDEDIR%%/lib/Horde/iCalendar/vtimezone.php -%%HORDEDIR%%/lib/Horde/iCalendar/vtodo.php -%%HORDEDIR%%/lib/Net/IMSP.php -%%HORDEDIR%%/lib/Net/IMSP/Auth.php -%%HORDEDIR%%/lib/Net/IMSP/Auth/cram_md5.php -%%HORDEDIR%%/lib/Net/IMSP/Auth/imtest.php -%%HORDEDIR%%/lib/Net/IMSP/Auth/plaintext.php -%%HORDEDIR%%/lib/Net/IMSP/Book.php -%%HORDEDIR%%/lib/Net/IMSP/Options.php -%%HORDEDIR%%/lib/Net/IMSP/Utils.php -%%HORDEDIR%%/lib/Net/SMS.php -%%HORDEDIR%%/lib/Net/SMS/clickatell_http.php -%%HORDEDIR%%/lib/Net/SMS/generic_smtp.php -%%HORDEDIR%%/lib/Net/SMS/sms2email_http.php -%%HORDEDIR%%/lib/Net/SMS/vodafoneitaly_smtp.php -%%HORDEDIR%%/lib/Net/SMS/win_http.php -%%HORDEDIR%%/lib/SyncML.php -%%HORDEDIR%%/lib/SyncML/Backend.php -%%HORDEDIR%%/lib/SyncML/Command.php -%%HORDEDIR%%/lib/SyncML/Command/Alert.php -%%HORDEDIR%%/lib/SyncML/Command/Final.php -%%HORDEDIR%%/lib/SyncML/Command/Get.php -%%HORDEDIR%%/lib/SyncML/Command/Map.php -%%HORDEDIR%%/lib/SyncML/Command/Put.php -%%HORDEDIR%%/lib/SyncML/Command/Results.php -%%HORDEDIR%%/lib/SyncML/Command/Status.php -%%HORDEDIR%%/lib/SyncML/Command/Sync.php -%%HORDEDIR%%/lib/SyncML/Command/SyncElement.php -%%HORDEDIR%%/lib/SyncML/Constants.php -%%HORDEDIR%%/lib/SyncML/Device.php -%%HORDEDIR%%/lib/SyncML/Device/Nokia.php -%%HORDEDIR%%/lib/SyncML/Device/P800.php -%%HORDEDIR%%/lib/SyncML/Device/Sync4j.php -%%HORDEDIR%%/lib/SyncML/Device/Synthesis.php -%%HORDEDIR%%/lib/SyncML/DeviceInfo.php -%%HORDEDIR%%/lib/SyncML/State.php -%%HORDEDIR%%/lib/SyncML/Sync.php -%%HORDEDIR%%/lib/Test.php -%%HORDEDIR%%/lib/Text/Diff.php -%%HORDEDIR%%/lib/Text/Diff/Renderer.php -%%HORDEDIR%%/lib/Text/Diff/Renderer/inline.php -%%HORDEDIR%%/lib/Text/Diff/Renderer/unified.php -%%HORDEDIR%%/lib/Text/Diff3.php -%%HORDEDIR%%/lib/Text/Flowed.php -%%HORDEDIR%%/lib/Text/reST.php -%%HORDEDIR%%/lib/Text/reST/Formatter.php -%%HORDEDIR%%/lib/Text/reST/Formatter/html.php -%%HORDEDIR%%/lib/Text/reST/Parser.php -%%HORDEDIR%%/lib/VFS.php -%%HORDEDIR%%/lib/VFS/Browser.php -%%HORDEDIR%%/lib/VFS/GC.php -%%HORDEDIR%%/lib/VFS/ISOWriter.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/copy.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy/direct.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/copy.php -%%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/direct.php -%%HORDEDIR%%/lib/VFS/ISOWriter/mkisofs.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/smb.php -%%HORDEDIR%%/lib/VFS/sql.php -%%HORDEDIR%%/lib/VFS/sql_file.php -%%HORDEDIR%%/lib/XML/SVG.php -%%HORDEDIR%%/lib/XML/WBXML.php -%%HORDEDIR%%/lib/XML/WBXML/ContentHandler.php -%%HORDEDIR%%/lib/XML/WBXML/DTD.php -%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncML.php -%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLDevInf.php -%%HORDEDIR%%/lib/XML/WBXML/DTD/SyncMLMetInf.php -%%HORDEDIR%%/lib/XML/WBXML/DTDManager.php -%%HORDEDIR%%/lib/XML/WBXML/Decoder.php -%%HORDEDIR%%/lib/XML/WBXML/Encoder.php -%%HORDEDIR%%/lib/api.php -%%HORDEDIR%%/lib/base.php -%%HORDEDIR%%/lib/core.php -%%HORDEDIR%%/lib/prefs.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/bg_BG/help.xml -%%HORDEDIR%%/locale/bs_BA/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ca_ES/help.xml -%%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/cs_CZ/help.xml -%%HORDEDIR%%/locale/da_DK/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/da_DK/help.xml -%%HORDEDIR%%/locale/de_DE/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/de_DE/help.xml -%%HORDEDIR%%/locale/el_GR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/el_GR/help.xml -%%HORDEDIR%%/locale/en_US/help.xml -%%HORDEDIR%%/locale/es_ES/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/es_ES/help.xml -%%HORDEDIR%%/locale/et_EE/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/et_EE/help.xml -%%HORDEDIR%%/locale/fa_IR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/fa_IR/help.xml -%%HORDEDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/fi_FI/help.xml -%%HORDEDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/fr_FR/help.xml -%%HORDEDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/he_IL/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/hu_HU/help.xml -%%HORDEDIR%%/locale/id_ID/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/is_IS/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/it_IT/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/it_IT/help.xml -%%HORDEDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ja_JP/help.xml -%%HORDEDIR%%/locale/km_KH/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ko_KR/help.xml -%%HORDEDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/lt_LT/help.xml -%%HORDEDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/nb_NO/help.xml -%%HORDEDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/nl_NL/help.xml -%%HORDEDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/nn_NO/help.xml -%%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_BR/help.xml -%%HORDEDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/pt_PT/help.xml -%%HORDEDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/ru_RU/help.xml -%%HORDEDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/sk_SK/help.xml -%%HORDEDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/sl_SI/help.xml -%%HORDEDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/sv_SE/help.xml -%%HORDEDIR%%/locale/tr_TR/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/tr_TR/help.xml -%%HORDEDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/uk_UA/help.xml -%%HORDEDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/zh_CN/help.xml -%%HORDEDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo -%%HORDEDIR%%/locale/zh_TW/help.xml -%%HORDEDIR%%/login.php -%%HORDEDIR%%/po/.htaccess -%%HORDEDIR%%/po/README -%%HORDEDIR%%/po/ar_SY.po -%%HORDEDIR%%/po/bg_BG.po -%%HORDEDIR%%/po/bs_BA.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/fa_IR.po -%%HORDEDIR%%/po/fi_FI.po -%%HORDEDIR%%/po/fr_FR.po -%%HORDEDIR%%/po/gl_ES.po -%%HORDEDIR%%/po/he_IL.po -%%HORDEDIR%%/po/horde.pot -%%HORDEDIR%%/po/hu_HU.po -%%HORDEDIR%%/po/id_ID.po -%%HORDEDIR%%/po/is_IS.po -%%HORDEDIR%%/po/it_IT.po -%%HORDEDIR%%/po/ja_JP.po -%%HORDEDIR%%/po/km_KH.po -%%HORDEDIR%%/po/ko_KR.po -%%HORDEDIR%%/po/lt_LT.po -%%HORDEDIR%%/po/lv_LV.po -%%HORDEDIR%%/po/mk_MK.po -%%HORDEDIR%%/po/nb_NO.po -%%HORDEDIR%%/po/nl_NL.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/sk_SK.po -%%HORDEDIR%%/po/sl_SI.po -%%HORDEDIR%%/po/sv_SE.po -%%HORDEDIR%%/po/tr_TR.po -%%HORDEDIR%%/po/translation.php -%%HORDEDIR%%/po/uk_UA.po -%%HORDEDIR%%/po/zh_CN.po -%%HORDEDIR%%/po/zh_TW.po -%%HORDEDIR%%/rpc.php -%%HORDEDIR%%/scripts/.htaccess -%%HORDEDIR%%/scripts/SCRIPTS -%%HORDEDIR%%/scripts/cookie_login.php -%%HORDEDIR%%/scripts/count_sessions.php -%%HORDEDIR%%/scripts/create-symlinks.php -%%HORDEDIR%%/scripts/get_login.php -%%HORDEDIR%%/scripts/http_login_refer.php -%%HORDEDIR%%/scripts/ldap/horde.schema -%%HORDEDIR%%/scripts/remove_prefs.php -%%HORDEDIR%%/scripts/set_perms.sh -%%HORDEDIR%%/scripts/sql/README -%%HORDEDIR%%/scripts/sql/README.OCI8 -%%HORDEDIR%%/scripts/sql/create.sql -%%HORDEDIR%%/scripts/sql/create.msde.sql -%%HORDEDIR%%/scripts/sql/create.mysql.sql -%%HORDEDIR%%/scripts/sql/create.oci8.sql -%%HORDEDIR%%/scripts/sql/create.pgsql.sql -%%HORDEDIR%%/scripts/sql/create.sybase.sql -%%HORDEDIR%%/scripts/sql/create.xml -%%HORDEDIR%%/scripts/sql/horde_datatree.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_datatree.mysql.sql -%%HORDEDIR%%/scripts/sql/horde_datatree.sql -%%HORDEDIR%%/scripts/sql/horde_histories.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_histories.sql -%%HORDEDIR%%/scripts/sql/horde_log.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_log.sql -%%HORDEDIR%%/scripts/sql/horde_muvfs.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_muvfs.sql -%%HORDEDIR%%/scripts/sql/horde_prefs.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_prefs.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.mysql.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.oci8.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.pgsql.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sapdb.sql -%%HORDEDIR%%/scripts/sql/horde_sessionhandler.sql -%%HORDEDIR%%/scripts/sql/horde_tokens.sql -%%HORDEDIR%%/scripts/sql/horde_users.sql -%%HORDEDIR%%/scripts/sql/horde_vfs.mssql.sql -%%HORDEDIR%%/scripts/sql/horde_vfs.oci8.sql -%%HORDEDIR%%/scripts/sql/horde_vfs.pgsql.sql -%%HORDEDIR%%/scripts/sql/horde_vfs.sql -%%HORDEDIR%%/scripts/sql/script.initial_horde_user.sql -%%HORDEDIR%%/scripts/temp-cleanup.cron -%%HORDEDIR%%/scripts/upgrades/2006-06-29_horde_prefs_indexes.sql -%%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql -%%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.oci8.sql -%%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.pgsql.sql -%%HORDEDIR%%/scripts/upgrades/2005-09-22_horde_prefs_varchar2.oci8.sql -%%HORDEDIR%%/scripts/upgrades/3.0_to_3.1.sql -%%HORDEDIR%%/scripts/upgrades/3.0_to_3.1.mysql.sql -%%HORDEDIR%%/scripts/upgrades/3.0_to_3.1.oci8.sql -%%HORDEDIR%%/scripts/upgrades/migrate_user_categories.php -%%HORDEDIR%%/scripts/upgrades/move_history_out_of_datatree.php -%%HORDEDIR%%/services/cacheview.php -%%HORDEDIR%%/services/changepassword.php -%%HORDEDIR%%/services/download/index.php -%%HORDEDIR%%/services/editor/htmlarea/dialog.js -%%HORDEDIR%%/services/editor/htmlarea/htmlarea.css -%%HORDEDIR%%/services/editor/htmlarea/htmlarea.js -%%HORDEDIR%%/services/editor/htmlarea/images/ed_about.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_center.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_justify.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_left.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_align_right.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_blank.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_charmap.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_bg.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_color_fg.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_copy.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_custom.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_cut.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_delete.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_bold.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_italic.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_strike.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sub.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_sup.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_format_underline.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_help.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_hr.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_html.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_image.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_less.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_indent_more.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_killword.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_left_to_right.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_link.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_bullet.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_list_num.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_paste.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_redo.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_right_to_left.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_rmformat.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_save.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_show_border.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_splitcel.gif -%%HORDEDIR%%/services/editor/htmlarea/images/ed_undo.gif -%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_maximize.gif -%%HORDEDIR%%/services/editor/htmlarea/images/fullscreen_minimize.gif -%%HORDEDIR%%/services/editor/htmlarea/images/insert_table.gif -%%HORDEDIR%%/services/editor/htmlarea/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/ansel-image.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/insert_image.php -%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/showimage.html -%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/context-menu.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/menu.css -%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/list-type.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang/en.js -%%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/table-operations.js -%%HORDEDIR%%/services/editor/htmlarea/popupdiv.js -%%HORDEDIR%%/services/editor/htmlarea/popups/about.html -%%HORDEDIR%%/services/editor/htmlarea/popups/blank.html -%%HORDEDIR%%/services/editor/htmlarea/popups/fullscreen.html -%%HORDEDIR%%/services/editor/htmlarea/popups/insert_image.html -%%HORDEDIR%%/services/editor/htmlarea/popups/insert_table.html -%%HORDEDIR%%/services/editor/htmlarea/popups/link.html -%%HORDEDIR%%/services/editor/htmlarea/popups/popup.js -%%HORDEDIR%%/services/editor/htmlarea/popups/select_color.html -%%HORDEDIR%%/services/editor/htmlarea/popupwin.js -%%HORDEDIR%%/services/go.php -%%HORDEDIR%%/services/help/index.php -%%HORDEDIR%%/services/images/colorpicker.php -%%HORDEDIR%%/services/images/pixel.php -%%HORDEDIR%%/services/images/view.php -%%HORDEDIR%%/services/javascript.php -%%HORDEDIR%%/services/keyboard.php -%%HORDEDIR%%/services/language.php -%%HORDEDIR%%/services/maintenance.php -%%HORDEDIR%%/services/obrowser/index.php -%%HORDEDIR%%/services/portal/edit.php -%%HORDEDIR%%/services/portal/index.php -%%HORDEDIR%%/services/portal/mobile.php -%%HORDEDIR%%/services/portal/rpcsum.php -%%HORDEDIR%%/services/portal/sidebar.php -%%HORDEDIR%%/services/prefs.php -%%HORDEDIR%%/services/prefs/index.php -%%HORDEDIR%%/services/problem.php -%%HORDEDIR%%/services/resetpassword.php -%%HORDEDIR%%/services/shares/edit.php -%%HORDEDIR%%/signup.php -%%HORDEDIR%%/templates/.htaccess -%%HORDEDIR%%/templates/admin/common-header.inc -%%HORDEDIR%%/templates/admin/groups/addchild.inc -%%HORDEDIR%%/templates/admin/groups/delete.inc -%%HORDEDIR%%/templates/admin/groups/edit.inc -%%HORDEDIR%%/templates/admin/setup/config.html -%%HORDEDIR%%/templates/admin/setup/diff.html -%%HORDEDIR%%/templates/admin/setup/index.html -%%HORDEDIR%%/templates/admin/user/add.inc -%%HORDEDIR%%/templates/admin/user/approve.inc -%%HORDEDIR%%/templates/admin/user/clear.inc -%%HORDEDIR%%/templates/admin/user/list.inc -%%HORDEDIR%%/templates/admin/user/noadd.inc -%%HORDEDIR%%/templates/admin/user/nolist.inc -%%HORDEDIR%%/templates/admin/user/remove.inc -%%HORDEDIR%%/templates/admin/user/removequeued.inc -%%HORDEDIR%%/templates/admin/user/update.inc -%%HORDEDIR%%/templates/common-footer.inc -%%HORDEDIR%%/templates/common-header.inc -%%HORDEDIR%%/templates/contents/open_view_win.js -%%HORDEDIR%%/templates/data/csvinfo.inc -%%HORDEDIR%%/templates/data/csvmap.inc -%%HORDEDIR%%/templates/data/date.inc -%%HORDEDIR%%/templates/data/datemap.inc -%%HORDEDIR%%/templates/data/datetime.inc -%%HORDEDIR%%/templates/data/time.inc -%%HORDEDIR%%/templates/data/tsvinfo.inc -%%HORDEDIR%%/templates/help/about.inc -%%HORDEDIR%%/templates/help/index.inc -%%HORDEDIR%%/templates/help/menu.inc -%%HORDEDIR%%/templates/index/frames_index.inc -%%HORDEDIR%%/templates/javascript/htmlarea.js -%%HORDEDIR%%/templates/javascript/htmlarea_anselimage_lang.js -%%HORDEDIR%%/templates/javascript/htmlarea_context_lang.js -%%HORDEDIR%%/templates/javascript/htmlarea_lang.js -%%HORDEDIR%%/templates/javascript/htmlarea_listtype_lang.js -%%HORDEDIR%%/templates/javascript/htmlarea_table_lang.js -%%HORDEDIR%%/templates/javascript/keybindings.js -%%HORDEDIR%%/templates/javascript/open_calendar.js -%%HORDEDIR%%/templates/javascript/open_google_win.js -%%HORDEDIR%%/templates/javascript/open_html_helper.js -%%HORDEDIR%%/templates/javascript/print.js -%%HORDEDIR%%/templates/javascript/quoteBlocks.js -%%HORDEDIR%%/templates/javascript/tree.js -%%HORDEDIR%%/templates/login/login.inc -%%HORDEDIR%%/templates/login/mobile.inc -%%HORDEDIR%%/templates/maintenance/maintenance.html -%%HORDEDIR%%/templates/menu/menu.inc -%%HORDEDIR%%/templates/portal/add.inc -%%HORDEDIR%%/templates/portal/block.inc -%%HORDEDIR%%/templates/portal/edit.inc -%%HORDEDIR%%/templates/portal/layout.inc -%%HORDEDIR%%/templates/portal/menu.inc -%%HORDEDIR%%/templates/portal/sidebar.inc -%%HORDEDIR%%/templates/prefs/app.inc -%%HORDEDIR%%/templates/prefs/begin.inc -%%HORDEDIR%%/templates/prefs/categorymanagement.inc -%%HORDEDIR%%/templates/prefs/checkbox.inc -%%HORDEDIR%%/templates/prefs/deleteidentity.inc -%%HORDEDIR%%/templates/prefs/end.inc -%%HORDEDIR%%/templates/prefs/enum.inc -%%HORDEDIR%%/templates/prefs/identityselect.inc -%%HORDEDIR%%/templates/prefs/link.inc -%%HORDEDIR%%/templates/prefs/multienum.inc -%%HORDEDIR%%/templates/prefs/number.inc -%%HORDEDIR%%/templates/prefs/overview.inc -%%HORDEDIR%%/templates/prefs/password.inc -%%HORDEDIR%%/templates/prefs/select.inc -%%HORDEDIR%%/templates/prefs/text.inc -%%HORDEDIR%%/templates/prefs/textarea.inc -%%HORDEDIR%%/templates/problem/problem.inc -%%HORDEDIR%%/templates/rpcsum/rpcsum.inc -%%HORDEDIR%%/templates/shares/edit.inc -%%HORDEDIR%%/templates/test/extensions.inc -%%HORDEDIR%%/templates/test/footer.inc -%%HORDEDIR%%/templates/test/header.inc -%%HORDEDIR%%/templates/test/php_version.inc -%%HORDEDIR%%/templates/test/version.inc -%%HORDEDIR%%/test.php -%%HORDEDIR%%/themes/NeXTgrey/info.php -%%HORDEDIR%%/themes/NeXTgrey/screen.css -%%HORDEDIR%%/themes/azur/info.php -%%HORDEDIR%%/themes/azur/screen.css -%%HORDEDIR%%/themes/barbie/info.php -%%HORDEDIR%%/themes/barbie/screen.css -%%HORDEDIR%%/themes/bluemoon/info.php -%%HORDEDIR%%/themes/bluemoon/screen.css -%%HORDEDIR%%/themes/bluewhite/info.php -%%HORDEDIR%%/themes/bluewhite/screen.css -%%HORDEDIR%%/themes/brown/info.php -%%HORDEDIR%%/themes/brown/screen.css -%%HORDEDIR%%/themes/burntorange/info.php -%%HORDEDIR%%/themes/burntorange/screen.css -%%HORDEDIR%%/themes/camouflage/graphics/menu.png -%%HORDEDIR%%/themes/camouflage/info.php -%%HORDEDIR%%/themes/camouflage/screen.css -%%HORDEDIR%%/themes/cornflower/graphics/tab_bottom.gif -%%HORDEDIR%%/themes/cornflower/graphics/tab_left.gif -%%HORDEDIR%%/themes/cornflower/graphics/tab_right.gif -%%HORDEDIR%%/themes/cornflower/info.php -%%HORDEDIR%%/themes/cornflower/screen.css -%%HORDEDIR%%/themes/gennevilliers/info.php -%%HORDEDIR%%/themes/gennevilliers/screen.css -%%HORDEDIR%%/themes/graphics/administration.png -%%HORDEDIR%%/themes/graphics/alerts/error.png -%%HORDEDIR%%/themes/graphics/alerts/message.png -%%HORDEDIR%%/themes/graphics/alerts/success.png -%%HORDEDIR%%/themes/graphics/alerts/warning.png -%%HORDEDIR%%/themes/graphics/avatars/alien.jpg -%%HORDEDIR%%/themes/graphics/avatars/aly.jpg -%%HORDEDIR%%/themes/graphics/avatars/angryboy.gif -%%HORDEDIR%%/themes/graphics/avatars/ape.jpg -%%HORDEDIR%%/themes/graphics/avatars/au.jpg -%%HORDEDIR%%/themes/graphics/avatars/baby.gif -%%HORDEDIR%%/themes/graphics/avatars/barbarian.jpg -%%HORDEDIR%%/themes/graphics/avatars/bart.gif -%%HORDEDIR%%/themes/graphics/avatars/batman.gif -%%HORDEDIR%%/themes/graphics/avatars/bert.jpg -%%HORDEDIR%%/themes/graphics/avatars/bert2.jpg -%%HORDEDIR%%/themes/graphics/avatars/bobafett.gif -%%HORDEDIR%%/themes/graphics/avatars/boo.jpg -%%HORDEDIR%%/themes/graphics/avatars/boyandmower.gif -%%HORDEDIR%%/themes/graphics/avatars/boyandpc.gif -%%HORDEDIR%%/themes/graphics/avatars/bret.jpg -%%HORDEDIR%%/themes/graphics/avatars/bunny.gif -%%HORDEDIR%%/themes/graphics/avatars/charlie_brown.gif -%%HORDEDIR%%/themes/graphics/avatars/clown.jpg -%%HORDEDIR%%/themes/graphics/avatars/cocky.jpg -%%HORDEDIR%%/themes/graphics/avatars/devil.gif -%%HORDEDIR%%/themes/graphics/avatars/digimon.gif -%%HORDEDIR%%/themes/graphics/avatars/dilbert.gif -%%HORDEDIR%%/themes/graphics/avatars/dino.gif -%%HORDEDIR%%/themes/graphics/avatars/dog.gif -%%HORDEDIR%%/themes/graphics/avatars/duck.gif -%%HORDEDIR%%/themes/graphics/avatars/einstein.jpg -%%HORDEDIR%%/themes/graphics/avatars/elmerfudd.gif -%%HORDEDIR%%/themes/graphics/avatars/elmo.jpg -%%HORDEDIR%%/themes/graphics/avatars/evil.jpg -%%HORDEDIR%%/themes/graphics/avatars/female1.jpg -%%HORDEDIR%%/themes/graphics/avatars/female2.jpg -%%HORDEDIR%%/themes/graphics/avatars/franc.jpg -%%HORDEDIR%%/themes/graphics/avatars/fredflinstone.gif -%%HORDEDIR%%/themes/graphics/avatars/garfield.gif -%%HORDEDIR%%/themes/graphics/avatars/gopher.gif -%%HORDEDIR%%/themes/graphics/avatars/greenhead.gif -%%HORDEDIR%%/themes/graphics/avatars/gremlin.jpg -%%HORDEDIR%%/themes/graphics/avatars/grover.jpg -%%HORDEDIR%%/themes/graphics/avatars/homer.gif -%%HORDEDIR%%/themes/graphics/avatars/hump.jpg -%%HORDEDIR%%/themes/graphics/avatars/iceskatekid.gif -%%HORDEDIR%%/themes/graphics/avatars/jeri.jpg -%%HORDEDIR%%/themes/graphics/avatars/kid.gif -%%HORDEDIR%%/themes/graphics/avatars/kirk.jpg -%%HORDEDIR%%/themes/graphics/avatars/kryton.jpg -%%HORDEDIR%%/themes/graphics/avatars/linux.gif -%%HORDEDIR%%/themes/graphics/avatars/lisa.gif -%%HORDEDIR%%/themes/graphics/avatars/lovebird.gif -%%HORDEDIR%%/themes/graphics/avatars/male1.jpg -%%HORDEDIR%%/themes/graphics/avatars/male2.jpg -%%HORDEDIR%%/themes/graphics/avatars/man.jpg -%%HORDEDIR%%/themes/graphics/avatars/marge.gif -%%HORDEDIR%%/themes/graphics/avatars/maul.gif -%%HORDEDIR%%/themes/graphics/avatars/melon.jpg -%%HORDEDIR%%/themes/graphics/avatars/mib.gif -%%HORDEDIR%%/themes/graphics/avatars/monkey.jpg -%%HORDEDIR%%/themes/graphics/avatars/neo.jpg -%%HORDEDIR%%/themes/graphics/avatars/ninja.jpg -%%HORDEDIR%%/themes/graphics/avatars/paintingbird.gif -%%HORDEDIR%%/themes/graphics/avatars/picard.jpg -%%HORDEDIR%%/themes/graphics/avatars/puff.jpg -%%HORDEDIR%%/themes/graphics/avatars/redcreature.gif -%%HORDEDIR%%/themes/graphics/avatars/rei.jpg -%%HORDEDIR%%/themes/graphics/avatars/rei2.jpg -%%HORDEDIR%%/themes/graphics/avatars/ryu.gif -%%HORDEDIR%%/themes/graphics/avatars/sexy.gif -%%HORDEDIR%%/themes/graphics/avatars/smiley.gif -%%HORDEDIR%%/themes/graphics/avatars/smurfs.gif -%%HORDEDIR%%/themes/graphics/avatars/sonic.gif -%%HORDEDIR%%/themes/graphics/avatars/speedy.gif -%%HORDEDIR%%/themes/graphics/avatars/stan.jpg -%%HORDEDIR%%/themes/graphics/avatars/superman.gif -%%HORDEDIR%%/themes/graphics/avatars/sylvester.gif -%%HORDEDIR%%/themes/graphics/avatars/thomas.gif -%%HORDEDIR%%/themes/graphics/avatars/tigger.gif -%%HORDEDIR%%/themes/graphics/avatars/trin.jpg -%%HORDEDIR%%/themes/graphics/avatars/us.jpg -%%HORDEDIR%%/themes/graphics/avatars/vampire.jpg -%%HORDEDIR%%/themes/graphics/avatars/vampire2.jpg -%%HORDEDIR%%/themes/graphics/avatars/wacko.gif -%%HORDEDIR%%/themes/graphics/avatars/winnie.gif -%%HORDEDIR%%/themes/graphics/avatars/wizard.jpg -%%HORDEDIR%%/themes/graphics/avatars/wolverine.jpg -%%HORDEDIR%%/themes/graphics/avatars/woman.jpg -%%HORDEDIR%%/themes/graphics/avatars/woodie.jpg -%%HORDEDIR%%/themes/graphics/avatars/xena.gif -%%HORDEDIR%%/themes/graphics/az.png -%%HORDEDIR%%/themes/graphics/blank.gif -%%HORDEDIR%%/themes/graphics/block.png -%%HORDEDIR%%/themes/graphics/block/down.png -%%HORDEDIR%%/themes/graphics/block/large_down.png -%%HORDEDIR%%/themes/graphics/block/large_left.png -%%HORDEDIR%%/themes/graphics/block/large_right.png -%%HORDEDIR%%/themes/graphics/block/large_up.png -%%HORDEDIR%%/themes/graphics/block/left.png -%%HORDEDIR%%/themes/graphics/block/moon/firstquarter.png -%%HORDEDIR%%/themes/graphics/block/moon/fullmoon.png -%%HORDEDIR%%/themes/graphics/block/moon/lastquarter.png -%%HORDEDIR%%/themes/graphics/block/moon/newmoon.png -%%HORDEDIR%%/themes/graphics/block/right.png -%%HORDEDIR%%/themes/graphics/block/sunrise/sunrise.png -%%HORDEDIR%%/themes/graphics/block/sunrise/sunset.png -%%HORDEDIR%%/themes/graphics/block/up.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/0.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/1.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/10.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/11.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/12.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/13.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/14.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/15.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/16.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/17.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/18.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/19.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/2.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/20.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/21.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/22.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/23.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/24.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/25.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/26.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/27.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/28.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/29.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/3.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/30.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/31.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/32.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/33.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/34.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/35.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/36.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/37.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/38.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/39.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/4.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/40.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/41.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/42.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/43.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/44.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/45.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/46.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/47.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/5.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/6.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/7.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/8.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/9.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23/na.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/0.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/1.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/10.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/11.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/12.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/13.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/14.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/15.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/16.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/17.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/18.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/19.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/2.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/20.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/21.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/22.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/23.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/24.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/25.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/26.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/27.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/28.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/29.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/3.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/30.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/31.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/32.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/33.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/34.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/35.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/36.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/37.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/38.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/39.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/4.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/40.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/41.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/42.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/43.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/44.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/45.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/46.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/47.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/5.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/6.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/7.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/8.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/9.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/TWClogo_32px.png -%%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32/na.png -%%HORDEDIR%%/themes/graphics/calendar.png -%%HORDEDIR%%/themes/graphics/close.png -%%HORDEDIR%%/themes/graphics/colorpicker.png -%%HORDEDIR%%/themes/graphics/colorscale.png -%%HORDEDIR%%/themes/graphics/config.png -%%HORDEDIR%%/themes/graphics/data.png -%%HORDEDIR%%/themes/graphics/datatree.png -%%HORDEDIR%%/themes/graphics/delete-small.png -%%HORDEDIR%%/themes/graphics/delete.png -%%HORDEDIR%%/themes/graphics/devel.png -%%HORDEDIR%%/themes/graphics/download.png -%%HORDEDIR%%/themes/graphics/edit-small.png -%%HORDEDIR%%/themes/graphics/edit.png -%%HORDEDIR%%/themes/graphics/emoticons/angel.png -%%HORDEDIR%%/themes/graphics/emoticons/angelwink.png -%%HORDEDIR%%/themes/graphics/emoticons/angry.png -%%HORDEDIR%%/themes/graphics/emoticons/annoyed.png -%%HORDEDIR%%/themes/graphics/emoticons/asleep.png -%%HORDEDIR%%/themes/graphics/emoticons/bigfrown.png -%%HORDEDIR%%/themes/graphics/emoticons/biggrin.png -%%HORDEDIR%%/themes/graphics/emoticons/blush.png -%%HORDEDIR%%/themes/graphics/emoticons/clown.png -%%HORDEDIR%%/themes/graphics/emoticons/confused.png -%%HORDEDIR%%/themes/graphics/emoticons/cool.png -%%HORDEDIR%%/themes/graphics/emoticons/coolgrin.png -%%HORDEDIR%%/themes/graphics/emoticons/cooltongue.png -%%HORDEDIR%%/themes/graphics/emoticons/dazed.png -%%HORDEDIR%%/themes/graphics/emoticons/devil.png -%%HORDEDIR%%/themes/graphics/emoticons/deviltongue.png -%%HORDEDIR%%/themes/graphics/emoticons/disappointed.png -%%HORDEDIR%%/themes/graphics/emoticons/embarrassed.png -%%HORDEDIR%%/themes/graphics/emoticons/enraged.png -%%HORDEDIR%%/themes/graphics/emoticons/frown.png -%%HORDEDIR%%/themes/graphics/emoticons/frustrated.png -%%HORDEDIR%%/themes/graphics/emoticons/grin.png -%%HORDEDIR%%/themes/graphics/emoticons/hangover.png -%%HORDEDIR%%/themes/graphics/emoticons/hippie.png -%%HORDEDIR%%/themes/graphics/emoticons/hippiegrin.png -%%HORDEDIR%%/themes/graphics/emoticons/hippietongue.png -%%HORDEDIR%%/themes/graphics/emoticons/hurt.png -%%HORDEDIR%%/themes/graphics/emoticons/indifferent.png -%%HORDEDIR%%/themes/graphics/emoticons/love.png -%%HORDEDIR%%/themes/graphics/emoticons/mad.png -%%HORDEDIR%%/themes/graphics/emoticons/mrt.png -%%HORDEDIR%%/themes/graphics/emoticons/punk.png -%%HORDEDIR%%/themes/graphics/emoticons/punkmohawk.png -%%HORDEDIR%%/themes/graphics/emoticons/punktongue.png -%%HORDEDIR%%/themes/graphics/emoticons/raspberry.png -%%HORDEDIR%%/themes/graphics/emoticons/sad.png -%%HORDEDIR%%/themes/graphics/emoticons/shout.png -%%HORDEDIR%%/themes/graphics/emoticons/smile.png -%%HORDEDIR%%/themes/graphics/emoticons/tired.png -%%HORDEDIR%%/themes/graphics/emoticons/tongueout.png -%%HORDEDIR%%/themes/graphics/emoticons/vampire.png -%%HORDEDIR%%/themes/graphics/emoticons/wink.png -%%HORDEDIR%%/themes/graphics/emoticons/winkgrin.png -%%HORDEDIR%%/themes/graphics/emoticons/winktongue.png -%%HORDEDIR%%/themes/graphics/emoticons/winktongueout.png -%%HORDEDIR%%/themes/graphics/emoticons/worried.png -%%HORDEDIR%%/themes/graphics/favicon.ico -%%HORDEDIR%%/themes/graphics/flags/af.png -%%HORDEDIR%%/themes/graphics/flags/al.png -%%HORDEDIR%%/themes/graphics/flags/am.png -%%HORDEDIR%%/themes/graphics/flags/an.png -%%HORDEDIR%%/themes/graphics/flags/ao.png -%%HORDEDIR%%/themes/graphics/flags/ar.png -%%HORDEDIR%%/themes/graphics/flags/at.png -%%HORDEDIR%%/themes/graphics/flags/au.png -%%HORDEDIR%%/themes/graphics/flags/aw.png -%%HORDEDIR%%/themes/graphics/flags/az.png -%%HORDEDIR%%/themes/graphics/flags/ba.png -%%HORDEDIR%%/themes/graphics/flags/bb.png -%%HORDEDIR%%/themes/graphics/flags/bd.png -%%HORDEDIR%%/themes/graphics/flags/be.png -%%HORDEDIR%%/themes/graphics/flags/bf.png -%%HORDEDIR%%/themes/graphics/flags/bg.png -%%HORDEDIR%%/themes/graphics/flags/bh.png -%%HORDEDIR%%/themes/graphics/flags/bi.png -%%HORDEDIR%%/themes/graphics/flags/bj.png -%%HORDEDIR%%/themes/graphics/flags/bm.png -%%HORDEDIR%%/themes/graphics/flags/bn.png -%%HORDEDIR%%/themes/graphics/flags/bo.png -%%HORDEDIR%%/themes/graphics/flags/br.png -%%HORDEDIR%%/themes/graphics/flags/bs.png -%%HORDEDIR%%/themes/graphics/flags/bt.png -%%HORDEDIR%%/themes/graphics/flags/bw.png -%%HORDEDIR%%/themes/graphics/flags/by.png -%%HORDEDIR%%/themes/graphics/flags/bz.png -%%HORDEDIR%%/themes/graphics/flags/ca.png -%%HORDEDIR%%/themes/graphics/flags/cf.png -%%HORDEDIR%%/themes/graphics/flags/cg.png -%%HORDEDIR%%/themes/graphics/flags/ch.png -%%HORDEDIR%%/themes/graphics/flags/ci.png -%%HORDEDIR%%/themes/graphics/flags/ck.png -%%HORDEDIR%%/themes/graphics/flags/cl.png -%%HORDEDIR%%/themes/graphics/flags/cm.png -%%HORDEDIR%%/themes/graphics/flags/cn.png -%%HORDEDIR%%/themes/graphics/flags/co.png -%%HORDEDIR%%/themes/graphics/flags/cr.png -%%HORDEDIR%%/themes/graphics/flags/cu.png -%%HORDEDIR%%/themes/graphics/flags/cv.png -%%HORDEDIR%%/themes/graphics/flags/cy.png -%%HORDEDIR%%/themes/graphics/flags/cz.png -%%HORDEDIR%%/themes/graphics/flags/de.png -%%HORDEDIR%%/themes/graphics/flags/dk.png -%%HORDEDIR%%/themes/graphics/flags/dz.png -%%HORDEDIR%%/themes/graphics/flags/ec.png -%%HORDEDIR%%/themes/graphics/flags/ee.png -%%HORDEDIR%%/themes/graphics/flags/eg.png -%%HORDEDIR%%/themes/graphics/flags/er.png -%%HORDEDIR%%/themes/graphics/flags/es.png -%%HORDEDIR%%/themes/graphics/flags/et.png -%%HORDEDIR%%/themes/graphics/flags/fi.png -%%HORDEDIR%%/themes/graphics/flags/fj.png -%%HORDEDIR%%/themes/graphics/flags/fo.png -%%HORDEDIR%%/themes/graphics/flags/fr.png -%%HORDEDIR%%/themes/graphics/flags/ga.png -%%HORDEDIR%%/themes/graphics/flags/ge.png -%%HORDEDIR%%/themes/graphics/flags/gi.png -%%HORDEDIR%%/themes/graphics/flags/gl.png -%%HORDEDIR%%/themes/graphics/flags/gp.png -%%HORDEDIR%%/themes/graphics/flags/gr.png -%%HORDEDIR%%/themes/graphics/flags/gt.png -%%HORDEDIR%%/themes/graphics/flags/gu.png -%%HORDEDIR%%/themes/graphics/flags/gy.png -%%HORDEDIR%%/themes/graphics/flags/hk.png -%%HORDEDIR%%/themes/graphics/flags/hr.png -%%HORDEDIR%%/themes/graphics/flags/ht.png -%%HORDEDIR%%/themes/graphics/flags/hu.png -%%HORDEDIR%%/themes/graphics/flags/id.png -%%HORDEDIR%%/themes/graphics/flags/ie.png -%%HORDEDIR%%/themes/graphics/flags/il.png -%%HORDEDIR%%/themes/graphics/flags/in.png -%%HORDEDIR%%/themes/graphics/flags/iq.png -%%HORDEDIR%%/themes/graphics/flags/ir.png -%%HORDEDIR%%/themes/graphics/flags/is.png -%%HORDEDIR%%/themes/graphics/flags/it.png -%%HORDEDIR%%/themes/graphics/flags/jm.png -%%HORDEDIR%%/themes/graphics/flags/jo.png -%%HORDEDIR%%/themes/graphics/flags/jp.png -%%HORDEDIR%%/themes/graphics/flags/ke.png -%%HORDEDIR%%/themes/graphics/flags/kg.png -%%HORDEDIR%%/themes/graphics/flags/kh.png -%%HORDEDIR%%/themes/graphics/flags/ki.png -%%HORDEDIR%%/themes/graphics/flags/kp.png -%%HORDEDIR%%/themes/graphics/flags/kr.png -%%HORDEDIR%%/themes/graphics/flags/ky.png -%%HORDEDIR%%/themes/graphics/flags/kz.png -%%HORDEDIR%%/themes/graphics/flags/lb.png -%%HORDEDIR%%/themes/graphics/flags/lc.png -%%HORDEDIR%%/themes/graphics/flags/lk.png -%%HORDEDIR%%/themes/graphics/flags/lt.png -%%HORDEDIR%%/themes/graphics/flags/lu.png -%%HORDEDIR%%/themes/graphics/flags/lv.png -%%HORDEDIR%%/themes/graphics/flags/ly.png -%%HORDEDIR%%/themes/graphics/flags/ma.png -%%HORDEDIR%%/themes/graphics/flags/mc.png -%%HORDEDIR%%/themes/graphics/flags/md.png -%%HORDEDIR%%/themes/graphics/flags/mg.png -%%HORDEDIR%%/themes/graphics/flags/mn.png -%%HORDEDIR%%/themes/graphics/flags/mo.png -%%HORDEDIR%%/themes/graphics/flags/mp.png -%%HORDEDIR%%/themes/graphics/flags/ms.png -%%HORDEDIR%%/themes/graphics/flags/mt.png -%%HORDEDIR%%/themes/graphics/flags/mx.png -%%HORDEDIR%%/themes/graphics/flags/my.png -%%HORDEDIR%%/themes/graphics/flags/mz.png -%%HORDEDIR%%/themes/graphics/flags/na.png -%%HORDEDIR%%/themes/graphics/flags/nc.png -%%HORDEDIR%%/themes/graphics/flags/nf.png -%%HORDEDIR%%/themes/graphics/flags/nl.png -%%HORDEDIR%%/themes/graphics/flags/no.png -%%HORDEDIR%%/themes/graphics/flags/np.png -%%HORDEDIR%%/themes/graphics/flags/nr.png -%%HORDEDIR%%/themes/graphics/flags/nz.png -%%HORDEDIR%%/themes/graphics/flags/om.png -%%HORDEDIR%%/themes/graphics/flags/pa.png -%%HORDEDIR%%/themes/graphics/flags/pe.png -%%HORDEDIR%%/themes/graphics/flags/pf.png -%%HORDEDIR%%/themes/graphics/flags/ph.png -%%HORDEDIR%%/themes/graphics/flags/pk.png -%%HORDEDIR%%/themes/graphics/flags/pl.png -%%HORDEDIR%%/themes/graphics/flags/pm.png -%%HORDEDIR%%/themes/graphics/flags/pr.png -%%HORDEDIR%%/themes/graphics/flags/pt.png -%%HORDEDIR%%/themes/graphics/flags/py.png -%%HORDEDIR%%/themes/graphics/flags/qa.png -%%HORDEDIR%%/themes/graphics/flags/ro.png -%%HORDEDIR%%/themes/graphics/flags/ru.png -%%HORDEDIR%%/themes/graphics/flags/sa.png -%%HORDEDIR%%/themes/graphics/flags/sb.png -%%HORDEDIR%%/themes/graphics/flags/sd.png -%%HORDEDIR%%/themes/graphics/flags/se.png -%%HORDEDIR%%/themes/graphics/flags/sg.png -%%HORDEDIR%%/themes/graphics/flags/si.png -%%HORDEDIR%%/themes/graphics/flags/sk.png -%%HORDEDIR%%/themes/graphics/flags/sl.png -%%HORDEDIR%%/themes/graphics/flags/so.png -%%HORDEDIR%%/themes/graphics/flags/sr.png -%%HORDEDIR%%/themes/graphics/flags/sy.png -%%HORDEDIR%%/themes/graphics/flags/tc.png -%%HORDEDIR%%/themes/graphics/flags/tg.png -%%HORDEDIR%%/themes/graphics/flags/th.png -%%HORDEDIR%%/themes/graphics/flags/tn.png -%%HORDEDIR%%/themes/graphics/flags/to.png -%%HORDEDIR%%/themes/graphics/flags/tp.png -%%HORDEDIR%%/themes/graphics/flags/tr.png -%%HORDEDIR%%/themes/graphics/flags/tt.png -%%HORDEDIR%%/themes/graphics/flags/tv.png -%%HORDEDIR%%/themes/graphics/flags/tw.png -%%HORDEDIR%%/themes/graphics/flags/tz.png -%%HORDEDIR%%/themes/graphics/flags/ua.png -%%HORDEDIR%%/themes/graphics/flags/ug.png -%%HORDEDIR%%/themes/graphics/flags/uk.png -%%HORDEDIR%%/themes/graphics/flags/us.png -%%HORDEDIR%%/themes/graphics/flags/uy.png -%%HORDEDIR%%/themes/graphics/flags/va.png -%%HORDEDIR%%/themes/graphics/flags/ve.png -%%HORDEDIR%%/themes/graphics/flags/vg.png -%%HORDEDIR%%/themes/graphics/flags/vi.png -%%HORDEDIR%%/themes/graphics/flags/vn.png -%%HORDEDIR%%/themes/graphics/flags/ws.png -%%HORDEDIR%%/themes/graphics/flags/ye.png -%%HORDEDIR%%/themes/graphics/flags/yu.png -%%HORDEDIR%%/themes/graphics/flags/za.png -%%HORDEDIR%%/themes/graphics/flags/zw.png -%%HORDEDIR%%/themes/graphics/google.png -%%HORDEDIR%%/themes/graphics/group.png -%%HORDEDIR%%/themes/graphics/help.png -%%HORDEDIR%%/themes/graphics/help_index.png -%%HORDEDIR%%/themes/graphics/hide_panel.png -%%HORDEDIR%%/themes/graphics/horde-power1.png -%%HORDEDIR%%/themes/graphics/horde-power2.png -%%HORDEDIR%%/themes/graphics/horde-power3.png -%%HORDEDIR%%/themes/graphics/horde.png -%%HORDEDIR%%/themes/graphics/image/crop.png -%%HORDEDIR%%/themes/graphics/image/flip.png -%%HORDEDIR%%/themes/graphics/image/grayscale.png -%%HORDEDIR%%/themes/graphics/image/mirror.png -%%HORDEDIR%%/themes/graphics/image/ratio.png -%%HORDEDIR%%/themes/graphics/image/refresh.png -%%HORDEDIR%%/themes/graphics/image/rotate-180.png -%%HORDEDIR%%/themes/graphics/image/rotate-270.png -%%HORDEDIR%%/themes/graphics/image/rotate-90.png -%%HORDEDIR%%/themes/graphics/info.png -%%HORDEDIR%%/themes/graphics/info_icon.png -%%HORDEDIR%%/themes/graphics/keyboard.png -%%HORDEDIR%%/themes/graphics/layout.png -%%HORDEDIR%%/themes/graphics/lhand.png -%%HORDEDIR%%/themes/graphics/locked.png -%%HORDEDIR%%/themes/graphics/login.png -%%HORDEDIR%%/themes/graphics/logout.png -%%HORDEDIR%%/themes/graphics/map.png -%%HORDEDIR%%/themes/graphics/map_eu.png -%%HORDEDIR%%/themes/graphics/mime/audio.png -%%HORDEDIR%%/themes/graphics/mime/binary.png -%%HORDEDIR%%/themes/graphics/mime/compressed.png -%%HORDEDIR%%/themes/graphics/mime/deb.png -%%HORDEDIR%%/themes/graphics/mime/encryption.png -%%HORDEDIR%%/themes/graphics/mime/html.png -%%HORDEDIR%%/themes/graphics/mime/icalendar.png -%%HORDEDIR%%/themes/graphics/mime/image.png -%%HORDEDIR%%/themes/graphics/mime/mail.png -%%HORDEDIR%%/themes/graphics/mime/msexcel.png -%%HORDEDIR%%/themes/graphics/mime/mspowerpoint.png -%%HORDEDIR%%/themes/graphics/mime/msword.png -%%HORDEDIR%%/themes/graphics/mime/ooo_calc.png -%%HORDEDIR%%/themes/graphics/mime/ooo_draw.png -%%HORDEDIR%%/themes/graphics/mime/ooo_impress.png -%%HORDEDIR%%/themes/graphics/mime/ooo_math.png -%%HORDEDIR%%/themes/graphics/mime/ooo_writer.png -%%HORDEDIR%%/themes/graphics/mime/pdf.png -%%HORDEDIR%%/themes/graphics/mime/php.png -%%HORDEDIR%%/themes/graphics/mime/rpm.png -%%HORDEDIR%%/themes/graphics/mime/script-js.png -%%HORDEDIR%%/themes/graphics/mime/source-c.png -%%HORDEDIR%%/themes/graphics/mime/source-cpp.png -%%HORDEDIR%%/themes/graphics/mime/source-h.png -%%HORDEDIR%%/themes/graphics/mime/source-java.png -%%HORDEDIR%%/themes/graphics/mime/source-python.png -%%HORDEDIR%%/themes/graphics/mime/text.png -%%HORDEDIR%%/themes/graphics/mime/vcard.png -%%HORDEDIR%%/themes/graphics/mime/video.png -%%HORDEDIR%%/themes/graphics/mime/xml.png -%%HORDEDIR%%/themes/graphics/mobile.png -%%HORDEDIR%%/themes/graphics/mobile/bottom.jpg -%%HORDEDIR%%/themes/graphics/mobile/display.jpg -%%HORDEDIR%%/themes/graphics/mobile/left.jpg -%%HORDEDIR%%/themes/graphics/mobile/right.jpg -%%HORDEDIR%%/themes/graphics/mobile/top.jpg -%%HORDEDIR%%/themes/graphics/myaccount.png -%%HORDEDIR%%/themes/graphics/nav/bottom-grey.png -%%HORDEDIR%%/themes/graphics/nav/bottom.png -%%HORDEDIR%%/themes/graphics/nav/down-grey.png -%%HORDEDIR%%/themes/graphics/nav/down.png -%%HORDEDIR%%/themes/graphics/nav/first-grey.png -%%HORDEDIR%%/themes/graphics/nav/first.png -%%HORDEDIR%%/themes/graphics/nav/last-grey.png -%%HORDEDIR%%/themes/graphics/nav/last.png -%%HORDEDIR%%/themes/graphics/nav/left-grey.png -%%HORDEDIR%%/themes/graphics/nav/left.png -%%HORDEDIR%%/themes/graphics/nav/right-grey.png -%%HORDEDIR%%/themes/graphics/nav/right.png -%%HORDEDIR%%/themes/graphics/nav/top-grey.png -%%HORDEDIR%%/themes/graphics/nav/top.png -%%HORDEDIR%%/themes/graphics/nav/up-grey.png -%%HORDEDIR%%/themes/graphics/nav/up.png -%%HORDEDIR%%/themes/graphics/office.png -%%HORDEDIR%%/themes/graphics/organizing.png -%%HORDEDIR%%/themes/graphics/perms.png -%%HORDEDIR%%/themes/graphics/prefs.png -%%HORDEDIR%%/themes/graphics/print.png -%%HORDEDIR%%/themes/graphics/problem.png -%%HORDEDIR%%/themes/graphics/reload.png -%%HORDEDIR%%/themes/graphics/required.png -%%HORDEDIR%%/themes/graphics/rhand.png -%%HORDEDIR%%/themes/graphics/save.png -%%HORDEDIR%%/themes/graphics/search.png -%%HORDEDIR%%/themes/graphics/shadow.gif -%%HORDEDIR%%/themes/graphics/shadow.png -%%HORDEDIR%%/themes/graphics/shell.png -%%HORDEDIR%%/themes/graphics/show_panel.png -%%HORDEDIR%%/themes/graphics/sql.png -%%HORDEDIR%%/themes/graphics/tab_bottom.gif -%%HORDEDIR%%/themes/graphics/tree/blank.png -%%HORDEDIR%%/themes/graphics/tree/folder.png -%%HORDEDIR%%/themes/graphics/tree/folderopen.png -%%HORDEDIR%%/themes/graphics/tree/join.png -%%HORDEDIR%%/themes/graphics/tree/joinbottom-down.png -%%HORDEDIR%%/themes/graphics/tree/joinbottom.png -%%HORDEDIR%%/themes/graphics/tree/leaf.png -%%HORDEDIR%%/themes/graphics/tree/line.png -%%HORDEDIR%%/themes/graphics/tree/minus.png -%%HORDEDIR%%/themes/graphics/tree/minusbottom.png -%%HORDEDIR%%/themes/graphics/tree/minusonly.png -%%HORDEDIR%%/themes/graphics/tree/minustop.png -%%HORDEDIR%%/themes/graphics/tree/nullonly.png -%%HORDEDIR%%/themes/graphics/tree/plus.png -%%HORDEDIR%%/themes/graphics/tree/plusbottom.png -%%HORDEDIR%%/themes/graphics/tree/plusonly.png -%%HORDEDIR%%/themes/graphics/tree/plustop.png -%%HORDEDIR%%/themes/graphics/tree/rev-join.png -%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom-down.png -%%HORDEDIR%%/themes/graphics/tree/rev-joinbottom.png -%%HORDEDIR%%/themes/graphics/tree/rev-leaf.png -%%HORDEDIR%%/themes/graphics/tree/rev-line.png -%%HORDEDIR%%/themes/graphics/tree/rev-minus.png -%%HORDEDIR%%/themes/graphics/tree/rev-minusbottom.png -%%HORDEDIR%%/themes/graphics/tree/rev-minusonly.png -%%HORDEDIR%%/themes/graphics/tree/rev-minustop.png -%%HORDEDIR%%/themes/graphics/tree/rev-nullonly.png -%%HORDEDIR%%/themes/graphics/tree/rev-plus.png -%%HORDEDIR%%/themes/graphics/tree/rev-plusbottom.png -%%HORDEDIR%%/themes/graphics/tree/rev-plusonly.png -%%HORDEDIR%%/themes/graphics/tree/rev-plustop.png -%%HORDEDIR%%/themes/graphics/unlocked.png -%%HORDEDIR%%/themes/graphics/user.png -%%HORDEDIR%%/themes/graphics/website.png -%%HORDEDIR%%/themes/graphics/za.png -%%HORDEDIR%%/themes/green/info.php -%%HORDEDIR%%/themes/green/screen.css -%%HORDEDIR%%/themes/grey/info.php -%%HORDEDIR%%/themes/grey/screen.css -%%HORDEDIR%%/themes/hi-contrast/info.php -%%HORDEDIR%%/themes/hi-contrast/screen.css -%%HORDEDIR%%/themes/ideas/graphics/background.png -%%HORDEDIR%%/themes/ideas/graphics/left_menu_bottom.png -%%HORDEDIR%%/themes/ideas/graphics/left_menu_top.png -%%HORDEDIR%%/themes/ideas/graphics/menu_top.png -%%HORDEDIR%%/themes/ideas/info.php -%%HORDEDIR%%/themes/ideas/screen.css -%%HORDEDIR%%/themes/ie5mac.css -%%HORDEDIR%%/themes/ie6_or_less.css -%%HORDEDIR%%/themes/kolab/graphics/bg.png -%%HORDEDIR%%/themes/kolab/graphics/kolab.png -%%HORDEDIR%%/themes/kolab/graphics/kolablogo.png -%%HORDEDIR%%/themes/kolab/info.php -%%HORDEDIR%%/themes/kolab/screen.css -%%HORDEDIR%%/themes/lavander/info.php -%%HORDEDIR%%/themes/lavander/screen.css -%%HORDEDIR%%/themes/lightblue/graphics/menu.png -%%HORDEDIR%%/themes/lightblue/info.php -%%HORDEDIR%%/themes/lightblue/screen.css -%%HORDEDIR%%/themes/luc/graphics/currentTab_left.gif -%%HORDEDIR%%/themes/luc/graphics/currentTab_right.gif -%%HORDEDIR%%/themes/luc/graphics/tab_bottom.gif -%%HORDEDIR%%/themes/luc/graphics/tab_left.gif -%%HORDEDIR%%/themes/luc/graphics/tab_right.gif -%%HORDEDIR%%/themes/luc/info.php -%%HORDEDIR%%/themes/luc/screen.css -%%HORDEDIR%%/themes/lucblue/info.php -%%HORDEDIR%%/themes/lucblue/screen.css -%%HORDEDIR%%/themes/mobile/screen.css -%%HORDEDIR%%/themes/moz14.css -%%HORDEDIR%%/themes/mozilla/graphics/header.png -%%HORDEDIR%%/themes/mozilla/graphics/menu-active.png -%%HORDEDIR%%/themes/mozilla/graphics/menu.png -%%HORDEDIR%%/themes/mozilla/info.php -%%HORDEDIR%%/themes/mozilla/screen.css -%%HORDEDIR%%/themes/opera.css -%%HORDEDIR%%/themes/postnuke/info.php -%%HORDEDIR%%/themes/postnuke/screen.css -%%HORDEDIR%%/themes/print/screen.css -%%HORDEDIR%%/themes/purple/info.php -%%HORDEDIR%%/themes/purple/screen.css -%%HORDEDIR%%/themes/rtl.css -%%HORDEDIR%%/themes/safari.css -%%HORDEDIR%%/themes/screen.css -%%HORDEDIR%%/themes/simplex/graphics/background.png -%%HORDEDIR%%/themes/simplex/info.php -%%HORDEDIR%%/themes/simplex/screen.css -%%HORDEDIR%%/util/barcode.php -%%HORDEDIR%%/util/icon_browser.php -%%HORDEDIR%%/util/regex_test.php -@exec mkdir -p %D/%%HORDEDIR%%/lib/File/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/Horde/Text/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/Horde/docs/examples -@exec mkdir -p %D/%%HORDEDIR%%/lib/Horde/scripts -@exec mkdir -p %D/%%HORDEDIR%%/lib/Horde/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/Text/docs/examples -@exec mkdir -p %D/%%HORDEDIR%%/lib/Text/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/VFS/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/XML/docs/examples -@exec mkdir -p %D/%%HORDEDIR%%/lib/XML/tests -@exec mkdir -p %D/%%HORDEDIR%%/lib/data -@exec mkdir -p %D/%%HORDEDIR%%/lib/docs -@dirrm %%HORDEDIR%%/util -@dirrm %%HORDEDIR%%/themes/simplex/graphics -@dirrm %%HORDEDIR%%/themes/simplex -@dirrm %%HORDEDIR%%/themes/purple -@dirrm %%HORDEDIR%%/themes/print -@dirrm %%HORDEDIR%%/themes/postnuke -@dirrm %%HORDEDIR%%/themes/mozilla/graphics -@dirrm %%HORDEDIR%%/themes/mozilla -@dirrm %%HORDEDIR%%/themes/mobile -@dirrm %%HORDEDIR%%/themes/lucblue -@dirrm %%HORDEDIR%%/themes/luc/graphics -@dirrm %%HORDEDIR%%/themes/luc -@dirrm %%HORDEDIR%%/themes/lightblue/graphics -@dirrm %%HORDEDIR%%/themes/lightblue -@dirrm %%HORDEDIR%%/themes/lavander -@dirrm %%HORDEDIR%%/themes/kolab/graphics -@dirrm %%HORDEDIR%%/themes/kolab -@dirrm %%HORDEDIR%%/themes/ideas/graphics -@dirrm %%HORDEDIR%%/themes/ideas -@dirrm %%HORDEDIR%%/themes/hi-contrast -@dirrm %%HORDEDIR%%/themes/grey -@dirrm %%HORDEDIR%%/themes/green -@dirrm %%HORDEDIR%%/themes/graphics/tree -@dirrm %%HORDEDIR%%/themes/graphics/nav -@dirrm %%HORDEDIR%%/themes/graphics/mobile -@dirrm %%HORDEDIR%%/themes/graphics/mime -@dirrm %%HORDEDIR%%/themes/graphics/image -@dirrm %%HORDEDIR%%/themes/graphics/flags -@dirrm %%HORDEDIR%%/themes/graphics/emoticons -@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/32x32 -@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom/23x23 -@dirrm %%HORDEDIR%%/themes/graphics/block/weatherdotcom -@dirrm %%HORDEDIR%%/themes/graphics/block/sunrise -@dirrm %%HORDEDIR%%/themes/graphics/block/moon -@dirrm %%HORDEDIR%%/themes/graphics/block -@dirrm %%HORDEDIR%%/themes/graphics/avatars -@dirrm %%HORDEDIR%%/themes/graphics/alerts -@dirrm %%HORDEDIR%%/themes/graphics -@dirrm %%HORDEDIR%%/themes/gennevilliers -@dirrm %%HORDEDIR%%/themes/cornflower/graphics -@dirrm %%HORDEDIR%%/themes/cornflower -@dirrm %%HORDEDIR%%/themes/camouflage/graphics -@dirrm %%HORDEDIR%%/themes/camouflage -@dirrm %%HORDEDIR%%/themes/burntorange -@dirrm %%HORDEDIR%%/themes/brown -@dirrm %%HORDEDIR%%/themes/bluewhite -@dirrm %%HORDEDIR%%/themes/bluemoon -@dirrm %%HORDEDIR%%/themes/barbie -@dirrm %%HORDEDIR%%/themes/azur -@dirrm %%HORDEDIR%%/themes/NeXTgrey -@dirrm %%HORDEDIR%%/themes -@dirrm %%HORDEDIR%%/templates/test -@dirrm %%HORDEDIR%%/templates/shares -@dirrm %%HORDEDIR%%/templates/rpcsum -@dirrm %%HORDEDIR%%/templates/problem -@dirrm %%HORDEDIR%%/templates/prefs -@dirrm %%HORDEDIR%%/templates/portal -@dirrm %%HORDEDIR%%/templates/menu -@dirrm %%HORDEDIR%%/templates/maintenance -@dirrm %%HORDEDIR%%/templates/login -@dirrm %%HORDEDIR%%/templates/javascript -@dirrm %%HORDEDIR%%/templates/index -@dirrm %%HORDEDIR%%/templates/help -@dirrm %%HORDEDIR%%/templates/data -@dirrm %%HORDEDIR%%/templates/contents -@dirrm %%HORDEDIR%%/templates/admin/user -@dirrm %%HORDEDIR%%/templates/admin/setup -@dirrm %%HORDEDIR%%/templates/admin/groups -@dirrm %%HORDEDIR%%/templates/admin -@dirrm %%HORDEDIR%%/templates -@dirrm %%HORDEDIR%%/services/shares -@dirrm %%HORDEDIR%%/services/prefs -@dirrm %%HORDEDIR%%/services/portal -@dirrm %%HORDEDIR%%/services/obrowser -@dirrm %%HORDEDIR%%/services/images -@dirrm %%HORDEDIR%%/services/help -@dirrm %%HORDEDIR%%/services/editor/htmlarea/popups -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations/img -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/TableOperations -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ListType -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/ContextMenu -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins/AnselImage -@dirrm %%HORDEDIR%%/services/editor/htmlarea/plugins -@dirrm %%HORDEDIR%%/services/editor/htmlarea/lang -@dirrm %%HORDEDIR%%/services/editor/htmlarea/images -@dirrm %%HORDEDIR%%/services/editor/htmlarea -@dirrm %%HORDEDIR%%/services/editor -@dirrm %%HORDEDIR%%/services/download -@dirrm %%HORDEDIR%%/services -@dirrm %%HORDEDIR%%/scripts/upgrades -@dirrm %%HORDEDIR%%/scripts/sql -@dirrm %%HORDEDIR%%/scripts/ldap -@dirrm %%HORDEDIR%%/scripts -@dirrm %%HORDEDIR%%/po -@dirrm %%HORDEDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/zh_TW -@dirrm %%HORDEDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/zh_CN -@dirrm %%HORDEDIR%%/locale/uk_UA/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/uk_UA -@dirrm %%HORDEDIR%%/locale/tr_TR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/tr_TR -@dirrm %%HORDEDIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/sv_SE -@dirrm %%HORDEDIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/sl_SI -@dirrm %%HORDEDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/sk_SK -@dirrm %%HORDEDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ru_RU -@dirrm %%HORDEDIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ro_RO -@dirrm %%HORDEDIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/pt_PT -@dirrm %%HORDEDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/pt_BR -@dirrm %%HORDEDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/pl_PL -@dirrm %%HORDEDIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/nn_NO -@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/mk_MK/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/mk_MK -@dirrm %%HORDEDIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/lv_LV -@dirrm %%HORDEDIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/lt_LT -@dirrm %%HORDEDIR%%/locale/ko_KR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ko_KR -@dirrm %%HORDEDIR%%/locale/km_KH/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/km_KH -@dirrm %%HORDEDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ja_JP -@dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/it_IT -@dirrm %%HORDEDIR%%/locale/is_IS/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/is_IS -@dirrm %%HORDEDIR%%/locale/id_ID/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/id_ID -@dirrm %%HORDEDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/hu_HU -@dirrm %%HORDEDIR%%/locale/he_IL/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/he_IL -@dirrm %%HORDEDIR%%/locale/gl_ES/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/gl_ES -@dirrm %%HORDEDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/fr_FR -@dirrm %%HORDEDIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/fi_FI -@dirrm %%HORDEDIR%%/locale/fa_IR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/fa_IR -@dirrm %%HORDEDIR%%/locale/et_EE/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/et_EE -@dirrm %%HORDEDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/es_ES -@dirrm %%HORDEDIR%%/locale/en_US -@dirrm %%HORDEDIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/el_GR -@dirrm %%HORDEDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/de_DE -@dirrm %%HORDEDIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/da_DK -@dirrm %%HORDEDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/cs_CZ -@dirrm %%HORDEDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ca_ES -@dirrm %%HORDEDIR%%/locale/bs_BA/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/bs_BA -@dirrm %%HORDEDIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/bg_BG -@dirrm %%HORDEDIR%%/locale/ar_SY/LC_MESSAGES -@dirrm %%HORDEDIR%%/locale/ar_SY -@dirrm %%HORDEDIR%%/locale -@dirrm %%HORDEDIR%%/lib/docs -@dirrm %%HORDEDIR%%/lib/XML/tests -@dirrm %%HORDEDIR%%/lib/XML/docs/examples -@dirrm %%HORDEDIR%%/lib/XML/docs -@dirrm %%HORDEDIR%%/lib/XML/WBXML/DTD -@dirrm %%HORDEDIR%%/lib/XML/WBXML -@dirrm %%HORDEDIR%%/lib/XML -@dirrm %%HORDEDIR%%/lib/VFS/tests -@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealOutputStrategy -@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter/RealInputStrategy -@dirrm %%HORDEDIR%%/lib/VFS/ISOWriter -@dirrm %%HORDEDIR%%/lib/VFS -@dirrm %%HORDEDIR%%/lib/Text/tests -@dirrm %%HORDEDIR%%/lib/Text/reST/Formatter -@dirrm %%HORDEDIR%%/lib/Text/reST -@dirrm %%HORDEDIR%%/lib/Text/docs/examples -@dirrm %%HORDEDIR%%/lib/Text/docs -@dirrm %%HORDEDIR%%/lib/Text/Diff/Renderer -@dirrm %%HORDEDIR%%/lib/Text/Diff -@dirrm %%HORDEDIR%%/lib/Text -@dirrm %%HORDEDIR%%/lib/SyncML/Device -@dirrm %%HORDEDIR%%/lib/SyncML/Command -@dirrm %%HORDEDIR%%/lib/SyncML -@dirrm %%HORDEDIR%%/lib/Net/SMS -@dirrm %%HORDEDIR%%/lib/Net/IMSP/Auth -@dirrm %%HORDEDIR%%/lib/Net/IMSP -@dirrm %%HORDEDIR%%/lib/Net -@dirrm %%HORDEDIR%%/lib/Horde/tests -@dirrm %%HORDEDIR%%/lib/Horde/scripts -@dirrm %%HORDEDIR%%/lib/Horde/iCalendar -@dirrm %%HORDEDIR%%/lib/Horde/docs/examples -@dirrm %%HORDEDIR%%/lib/Horde/docs -@dirrm %%HORDEDIR%%/lib/Horde/VC -@dirrm %%HORDEDIR%%/lib/Horde/UI/VarRenderer -@dirrm %%HORDEDIR%%/lib/Horde/UI -@dirrm %%HORDEDIR%%/lib/Horde/Tree -@dirrm %%HORDEDIR%%/lib/Horde/Token -@dirrm %%HORDEDIR%%/lib/Horde/Text/tests -@dirrm %%HORDEDIR%%/lib/Horde/Text/Filter -@dirrm %%HORDEDIR%%/lib/Horde/Text -@dirrm %%HORDEDIR%%/lib/Horde/SessionHandler -@dirrm %%HORDEDIR%%/lib/Horde/Scheduler -@dirrm %%HORDEDIR%%/lib/Horde/SQL -@dirrm %%HORDEDIR%%/lib/Horde/RPC -@dirrm %%HORDEDIR%%/lib/Horde/Prefs -@dirrm %%HORDEDIR%%/lib/Horde/Perms -@dirrm %%HORDEDIR%%/lib/Horde/Notification/Listener -@dirrm %%HORDEDIR%%/lib/Horde/Notification -@dirrm %%HORDEDIR%%/lib/Horde/NLS -@dirrm %%HORDEDIR%%/lib/Horde/Mobile/Renderer -@dirrm %%HORDEDIR%%/lib/Horde/Mobile -@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer/ooo -@dirrm %%HORDEDIR%%/lib/Horde/MIME/Viewer -@dirrm %%HORDEDIR%%/lib/Horde/MIME -@dirrm %%HORDEDIR%%/lib/Horde/Image -@dirrm %%HORDEDIR%%/lib/Horde/IMAP/ACL -@dirrm %%HORDEDIR%%/lib/Horde/IMAP -@dirrm %%HORDEDIR%%/lib/Horde/Group -@dirrm %%HORDEDIR%%/lib/Horde/Graph/Plot -@dirrm %%HORDEDIR%%/lib/Horde/Graph/Chart -@dirrm %%HORDEDIR%%/lib/Horde/Graph -@dirrm %%HORDEDIR%%/lib/Horde/Form/Type -@dirrm %%HORDEDIR%%/lib/Horde/Form/Action -@dirrm %%HORDEDIR%%/lib/Horde/Form -@dirrm %%HORDEDIR%%/lib/Horde/Editor -@dirrm %%HORDEDIR%%/lib/Horde/DataTree -@dirrm %%HORDEDIR%%/lib/Horde/Data -@dirrm %%HORDEDIR%%/lib/Horde/Crypt -@dirrm %%HORDEDIR%%/lib/Horde/Compress -@dirrm %%HORDEDIR%%/lib/Horde/Cipher/BlockMode -@dirrm %%HORDEDIR%%/lib/Horde/Cipher -@dirrm %%HORDEDIR%%/lib/Horde/Cache -@dirrm %%HORDEDIR%%/lib/Horde/Browser -@dirrm %%HORDEDIR%%/lib/Horde/Block/Layout -@dirrm %%HORDEDIR%%/lib/Horde/Block -@dirrm %%HORDEDIR%%/lib/Horde/Auth -@dirrm %%HORDEDIR%%/lib/Horde -@dirrm %%HORDEDIR%%/lib/File/tests -@dirrm %%HORDEDIR%%/lib/File/PDF/fonts -@dirrm %%HORDEDIR%%/lib/File/PDF -@dirrm %%HORDEDIR%%/lib/File -@dirrm %%HORDEDIR%%/lib/Block -@dirrmtry %%HORDEDIR%%/lib/data -@dirrm %%HORDEDIR%%/lib -@dirrm %%HORDEDIR%%/js -@dirrmtry %%HORDEDIR%%/config -@dirrm %%HORDEDIR%%/admin/setup -@dirrm %%HORDEDIR%%/admin/perms -@dirrm %%HORDEDIR%%/admin/locale/hu_HU -@dirrm %%HORDEDIR%%/admin/locale/fi_FI -@dirrm %%HORDEDIR%%/admin/locale/en_US -@dirrm %%HORDEDIR%%/admin/locale -@dirrm %%HORDEDIR%%/admin -@dirrmtry %%HORDEDIR%% +%%HORDIR%%/admin/cmdshell.php +%%HORDIR%%/admin/datatree.php +%%HORDIR%%/admin/groups.php +%%HORDIR%%/admin/index.php +%%HORDIR%%/admin/locale/en_US/help.xml +%%HORDIR%%/admin/locale/fi_FI/help.xml +%%HORDIR%%/admin/locale/hu_HU/help.xml +%%HORDIR%%/admin/perms/addchild.php +%%HORDIR%%/admin/perms/delete.php +%%HORDIR%%/admin/perms/edit.php +%%HORDIR%%/admin/perms/index.php +%%HORDIR%%/admin/phpshell.php +%%HORDIR%%/admin/sessions.php +%%HORDIR%%/admin/setup/config.php +%%HORDIR%%/admin/setup/diff.php +%%HORDIR%%/admin/setup/index.php +%%HORDIR%%/admin/setup/scripts.php +%%HORDIR%%/admin/sqlshell.php +%%HORDIR%%/admin/templates.php +%%HORDIR%%/admin/user.php +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.php.dist +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/hooks.php.dist +%%HORDIR%%/config/mime_drivers.php.dist +%%HORDIR%%/config/motd.php.dist +%%HORDIR%%/config/nls.php.dist +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/config/registry.php.dist +%%HORDIR%%/index.php +%%HORDIR%%/js/addEvent.php +%%HORDIR%%/js/alphaImageLoader.php +%%HORDIR%%/js/enter_key_trap.js +%%HORDIR%%/js/form_assign.js +%%HORDIR%%/js/form_helpers.js +%%HORDIR%%/js/form_sections.js +%%HORDIR%%/js/hideable.js +%%HORDIR%%/js/horde.ie.js +%%HORDIR%%/js/horde.js +%%HORDIR%%/js/httpclient.js +%%HORDIR%%/js/ieEscGuard.js +%%HORDIR%%/js/image.js +%%HORDIR%%/js/open_colorpicker.js +%%HORDIR%%/js/popup.js +%%HORDIR%%/js/sorter.js +%%HORDIR%%/js/stripe.js +%%HORDIR%%/js/tables.js +%%HORDIR%%/js/tooltip.js +%%HORDIR%%/lib/.htaccess +%%HORDIR%%/lib/Block/account.php +%%HORDIR%%/lib/Block/color.php +%%HORDIR%%/lib/Block/fortune.php +%%HORDIR%%/lib/Block/google.php +%%HORDIR%%/lib/Block/iframe.php +%%HORDIR%%/lib/Block/metar.php +%%HORDIR%%/lib/Block/moon.php +%%HORDIR%%/lib/Block/sunrise.php +%%HORDIR%%/lib/Block/time.php +%%HORDIR%%/lib/Block/weatherdotcom.php +%%HORDIR%%/lib/Block/weatherdotcom_strings.php +%%HORDIR%%/lib/File/CSV.php +%%HORDIR%%/lib/File/PDF/fonts/courier.php +%%HORDIR%%/lib/File/PDF/fonts/helvetica.php +%%HORDIR%%/lib/File/PDF/fonts/helveticab.php +%%HORDIR%%/lib/File/PDF/fonts/helveticabi.php +%%HORDIR%%/lib/File/PDF/fonts/helveticai.php +%%HORDIR%%/lib/File/PDF/fonts/symbol.php +%%HORDIR%%/lib/File/PDF/fonts/times.php +%%HORDIR%%/lib/File/PDF/fonts/timesb.php +%%HORDIR%%/lib/File/PDF/fonts/timesbi.php +%%HORDIR%%/lib/File/PDF/fonts/timesi.php +%%HORDIR%%/lib/File/PDF/fonts/zapfdingbats.php +%%HORDIR%%/lib/File/PDF.php +%%HORDIR%%/lib/Horde/Array.php +%%HORDIR%%/lib/Horde/Auth/Signup.php +%%HORDIR%%/lib/Horde/Auth/application.php +%%HORDIR%%/lib/Horde/Auth/auto.php +%%HORDIR%%/lib/Horde/Auth/composite.php +%%HORDIR%%/lib/Horde/Auth/customsql.php +%%HORDIR%%/lib/Horde/Auth/cyrsql.php +%%HORDIR%%/lib/Horde/Auth/cyrus.php +%%HORDIR%%/lib/Horde/Auth/ftp.php +%%HORDIR%%/lib/Horde/Auth/http.php +%%HORDIR%%/lib/Horde/Auth/imap.php +%%HORDIR%%/lib/Horde/Auth/imsp.php +%%HORDIR%%/lib/Horde/Auth/ipbasic.php +%%HORDIR%%/lib/Horde/Auth/ipmap.php +%%HORDIR%%/lib/Horde/Auth/kolab.php +%%HORDIR%%/lib/Horde/Auth/krb5.php +%%HORDIR%%/lib/Horde/Auth/ldap.php +%%HORDIR%%/lib/Horde/Auth/login.php +%%HORDIR%%/lib/Horde/Auth/mcal.php +%%HORDIR%%/lib/Horde/Auth/pam.php +%%HORDIR%%/lib/Horde/Auth/passwd.php +%%HORDIR%%/lib/Horde/Auth/peclsasl.php +%%HORDIR%%/lib/Horde/Auth/radius.php +%%HORDIR%%/lib/Horde/Auth/smb.php +%%HORDIR%%/lib/Horde/Auth/smbclient.php +%%HORDIR%%/lib/Horde/Auth/sql.php +%%HORDIR%%/lib/Horde/Auth.php +%%HORDIR%%/lib/Horde/Block/Collection.php +%%HORDIR%%/lib/Horde/Block/Layout/Manager.php +%%HORDIR%%/lib/Horde/Block/Layout/View.php +%%HORDIR%%/lib/Horde/Block/UI.php +%%HORDIR%%/lib/Horde/Block.php +%%HORDIR%%/lib/Horde/Browser/imode.php +%%HORDIR%%/lib/Horde/Browser.php +%%HORDIR%%/lib/Horde/CLI.php +%%HORDIR%%/lib/Horde/Cache/file.php +%%HORDIR%%/lib/Horde/Cache/zps4.php +%%HORDIR%%/lib/Horde/Cache.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode/cbc.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode/cfb64.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode/ecb.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode/ofb64.php +%%HORDIR%%/lib/Horde/Cipher/BlockMode.php +%%HORDIR%%/lib/Horde/Cipher/blowfish.php +%%HORDIR%%/lib/Horde/Cipher/cast128.php +%%HORDIR%%/lib/Horde/Cipher/des.php +%%HORDIR%%/lib/Horde/Cipher/rc2.php +%%HORDIR%%/lib/Horde/Cipher/rc4.php +%%HORDIR%%/lib/Horde/Cipher.php +%%HORDIR%%/lib/Horde/Compress/dbx.php +%%HORDIR%%/lib/Horde/Compress/gzip.php +%%HORDIR%%/lib/Horde/Compress/tar.php +%%HORDIR%%/lib/Horde/Compress/tnef.php +%%HORDIR%%/lib/Horde/Compress/zip.php +%%HORDIR%%/lib/Horde/Compress.php +%%HORDIR%%/lib/Horde/Config.php +%%HORDIR%%/lib/Horde/Crypt/pgp.php +%%HORDIR%%/lib/Horde/Crypt/smime.php +%%HORDIR%%/lib/Horde/Crypt.php +%%HORDIR%%/lib/Horde/Data/csv.php +%%HORDIR%%/lib/Horde/Data/icalendar.php +%%HORDIR%%/lib/Horde/Data/imc.php +%%HORDIR%%/lib/Horde/Data/outlookcsv.php +%%HORDIR%%/lib/Horde/Data/tsv.php +%%HORDIR%%/lib/Horde/Data/vcard.php +%%HORDIR%%/lib/Horde/Data/vnote.php +%%HORDIR%%/lib/Horde/Data/vtodo.php +%%HORDIR%%/lib/Horde/Data.php +%%HORDIR%%/lib/Horde/DataTree/null.php +%%HORDIR%%/lib/Horde/DataTree/sql.php +%%HORDIR%%/lib/Horde/DataTree.php +%%HORDIR%%/lib/Horde/Date.php +%%HORDIR%%/lib/Horde/Editor/htmlarea.php +%%HORDIR%%/lib/Horde/Editor.php +%%HORDIR%%/lib/Horde/Form/Action/conditional_enable.php +%%HORDIR%%/lib/Horde/Form/Action/conditional_setvalue.php +%%HORDIR%%/lib/Horde/Form/Action/reload.php +%%HORDIR%%/lib/Horde/Form/Action/submit.php +%%HORDIR%%/lib/Horde/Form/Action/sum_fields.php +%%HORDIR%%/lib/Horde/Form/Action/updatefield.php +%%HORDIR%%/lib/Horde/Form/Action.php +%%HORDIR%%/lib/Horde/Form/Renderer.php +%%HORDIR%%/lib/Horde/Form/Type/tableset.php +%%HORDIR%%/lib/Horde/Form.php +%%HORDIR%%/lib/Horde/Graph/Chart/pie.php +%%HORDIR%%/lib/Horde/Graph/Chart/pie3d.php +%%HORDIR%%/lib/Horde/Graph/Plot/bar.php +%%HORDIR%%/lib/Horde/Graph/Plot/bargrouped.php +%%HORDIR%%/lib/Horde/Graph/Plot/barstacked.php +%%HORDIR%%/lib/Horde/Graph/Plot/line.php +%%HORDIR%%/lib/Horde/Graph/Plot/scatter.php +%%HORDIR%%/lib/Horde/Graph.php +%%HORDIR%%/lib/Horde/Group/hooks.php +%%HORDIR%%/lib/Horde/Group/ldap.php +%%HORDIR%%/lib/Horde/Group.php +%%HORDIR%%/lib/Horde/Help.php +%%HORDIR%%/lib/Horde/History.php +%%HORDIR%%/lib/Horde/IMAP/ACL/rfc2086.php +%%HORDIR%%/lib/Horde/IMAP/ACL/rfc4314.php +%%HORDIR%%/lib/Horde/IMAP/ACL.php +%%HORDIR%%/lib/Horde/IMAP/Admin.php +%%HORDIR%%/lib/Horde/IMAP/Cache.php +%%HORDIR%%/lib/Horde/IMAP/Search.php +%%HORDIR%%/lib/Horde/IMAP/Sort.php +%%HORDIR%%/lib/Horde/IMAP/Thread.php +%%HORDIR%%/lib/Horde/IMAP/Tree.php +%%HORDIR%%/lib/Horde/Identity.php +%%HORDIR%%/lib/Horde/Image/gd.php +%%HORDIR%%/lib/Horde/Image/im.php +%%HORDIR%%/lib/Horde/Image/png.php +%%HORDIR%%/lib/Horde/Image/rgb.php +%%HORDIR%%/lib/Horde/Image/svg.php +%%HORDIR%%/lib/Horde/Image/swf.php +%%HORDIR%%/lib/Horde/Image.php +%%HORDIR%%/lib/Horde/Kolab.php +%%HORDIR%%/lib/Horde/LDAP.php +%%HORDIR%%/lib/Horde/MIME/Contents.php +%%HORDIR%%/lib/Horde/MIME/Headers.php +%%HORDIR%%/lib/Horde/MIME/MDN.php +%%HORDIR%%/lib/Horde/MIME/Magic.php +%%HORDIR%%/lib/Horde/MIME/Message.php +%%HORDIR%%/lib/Horde/MIME/Part.php +%%HORDIR%%/lib/Horde/MIME/Structure.php +%%HORDIR%%/lib/Horde/MIME/Viewer/css.php +%%HORDIR%%/lib/Horde/MIME/Viewer/deb.php +%%HORDIR%%/lib/Horde/MIME/Viewer/default.php +%%HORDIR%%/lib/Horde/MIME/Viewer/enriched.php +%%HORDIR%%/lib/Horde/MIME/Viewer/enscript.php +%%HORDIR%%/lib/Horde/MIME/Viewer/html.php +%%HORDIR%%/lib/Horde/MIME/Viewer/images.php +%%HORDIR%%/lib/Horde/MIME/Viewer/msexcel.php +%%HORDIR%%/lib/Horde/MIME/Viewer/mspowerpoint.php +%%HORDIR%%/lib/Horde/MIME/Viewer/msword.php +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/common.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/global_document.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/main_html.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/palm.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_header.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_inlined.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/style_mapping.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_cells.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_columns.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo/table_rows.xsl +%%HORDIR%%/lib/Horde/MIME/Viewer/ooo.php +%%HORDIR%%/lib/Horde/MIME/Viewer/pdf.php +%%HORDIR%%/lib/Horde/MIME/Viewer/php.php +%%HORDIR%%/lib/Horde/MIME/Viewer/plain.php +%%HORDIR%%/lib/Horde/MIME/Viewer/rar.php +%%HORDIR%%/lib/Horde/MIME/Viewer/report.php +%%HORDIR%%/lib/Horde/MIME/Viewer/rfc822.php +%%HORDIR%%/lib/Horde/MIME/Viewer/richtext.php +%%HORDIR%%/lib/Horde/MIME/Viewer/rpm.php +%%HORDIR%%/lib/Horde/MIME/Viewer/security.php +%%HORDIR%%/lib/Horde/MIME/Viewer/simple.php +%%HORDIR%%/lib/Horde/MIME/Viewer/source.php +%%HORDIR%%/lib/Horde/MIME/Viewer/srchighlite.php +%%HORDIR%%/lib/Horde/MIME/Viewer/tgz.php +%%HORDIR%%/lib/Horde/MIME/Viewer/tnef.php +%%HORDIR%%/lib/Horde/MIME/Viewer/vcard.php +%%HORDIR%%/lib/Horde/MIME/Viewer/webcpp.php +%%HORDIR%%/lib/Horde/MIME/Viewer/zip.php +%%HORDIR%%/lib/Horde/MIME/Viewer.php +%%HORDIR%%/lib/Horde/MIME/mime.magic.php +%%HORDIR%%/lib/Horde/MIME/mime.mapping.php +%%HORDIR%%/lib/Horde/MIME.php +%%HORDIR%%/lib/Horde/Maintenance.php +%%HORDIR%%/lib/Horde/Menu.php +%%HORDIR%%/lib/Horde/Mobile/Renderer/html.php +%%HORDIR%%/lib/Horde/Mobile/Renderer/wml.php +%%HORDIR%%/lib/Horde/Mobile/Renderer.php +%%HORDIR%%/lib/Horde/Mobile.php +%%HORDIR%%/lib/Horde/NLS/GeoIP.php +%%HORDIR%%/lib/Horde/NLS/carsigns.php +%%HORDIR%%/lib/Horde/NLS/coordinates.php +%%HORDIR%%/lib/Horde/NLS/countries.php +%%HORDIR%%/lib/Horde/NLS/tld.php +%%HORDIR%%/lib/Horde/NLS.php +%%HORDIR%%/lib/Horde/Notification/Event.php +%%HORDIR%%/lib/Horde/Notification/Listener/audio.php +%%HORDIR%%/lib/Horde/Notification/Listener/javascript.php +%%HORDIR%%/lib/Horde/Notification/Listener/mobile.php +%%HORDIR%%/lib/Horde/Notification/Listener/status.php +%%HORDIR%%/lib/Horde/Notification/Listener.php +%%HORDIR%%/lib/Horde/Notification.php +%%HORDIR%%/lib/Horde/Perms/UI.php +%%HORDIR%%/lib/Horde/Perms/datatree.php +%%HORDIR%%/lib/Horde/Perms.php +%%HORDIR%%/lib/Horde/Prefs/CategoryManager.php +%%HORDIR%%/lib/Horde/Prefs/UI.php +%%HORDIR%%/lib/Horde/Prefs/imsp.php +%%HORDIR%%/lib/Horde/Prefs/kolab.php +%%HORDIR%%/lib/Horde/Prefs/ldap.php +%%HORDIR%%/lib/Horde/Prefs/session.php +%%HORDIR%%/lib/Horde/Prefs/sql.php +%%HORDIR%%/lib/Horde/Prefs.php +%%HORDIR%%/lib/Horde/RPC/rest.php +%%HORDIR%%/lib/Horde/RPC/soap.php +%%HORDIR%%/lib/Horde/RPC/syncml.php +%%HORDIR%%/lib/Horde/RPC/syncml_wbxml.php +%%HORDIR%%/lib/Horde/RPC/webdav.php +%%HORDIR%%/lib/Horde/RPC/xmlrpc.php +%%HORDIR%%/lib/Horde/RPC.php +%%HORDIR%%/lib/Horde/Registry.php +%%HORDIR%%/lib/Horde/SQL/Keywords.php +%%HORDIR%%/lib/Horde/SQL.php +%%HORDIR%%/lib/Horde/Scheduler/cron.php +%%HORDIR%%/lib/Horde/Scheduler.php +%%HORDIR%%/lib/Horde/Secret.php +%%HORDIR%%/lib/Horde/Serialize.php +%%HORDIR%%/lib/Horde/SessionHandler/dbm.php +%%HORDIR%%/lib/Horde/SessionHandler/ldap.php +%%HORDIR%%/lib/Horde/SessionHandler/memcache.php +%%HORDIR%%/lib/Horde/SessionHandler/mysql.php +%%HORDIR%%/lib/Horde/SessionHandler/none.php +%%HORDIR%%/lib/Horde/SessionHandler/oci8.php +%%HORDIR%%/lib/Horde/SessionHandler/pgsql.php +%%HORDIR%%/lib/Horde/SessionHandler/sapdb.php +%%HORDIR%%/lib/Horde/SessionHandler/sql.php +%%HORDIR%%/lib/Horde/SessionHandler.php +%%HORDIR%%/lib/Horde/SessionObjects.php +%%HORDIR%%/lib/Horde/Share.php +%%HORDIR%%/lib/Horde/String.php +%%HORDIR%%/lib/Horde/Template.php +%%HORDIR%%/lib/Horde/Text/Filter/bbcode.php +%%HORDIR%%/lib/Horde/Text/Filter/cleanascii.php +%%HORDIR%%/lib/Horde/Text/Filter/dimsignature.php +%%HORDIR%%/lib/Horde/Text/Filter/emails.php +%%HORDIR%%/lib/Horde/Text/Filter/emoticons.php +%%HORDIR%%/lib/Horde/Text/Filter/environment.php +%%HORDIR%%/lib/Horde/Text/Filter/highlightquotes.php +%%HORDIR%%/lib/Horde/Text/Filter/html2text.php +%%HORDIR%%/lib/Horde/Text/Filter/linkurls.php +%%HORDIR%%/lib/Horde/Text/Filter/rst.php +%%HORDIR%%/lib/Horde/Text/Filter/simplemarkup.php +%%HORDIR%%/lib/Horde/Text/Filter/space2html.php +%%HORDIR%%/lib/Horde/Text/Filter/tabs2spaces.php +%%HORDIR%%/lib/Horde/Text/Filter/text2html.php +%%HORDIR%%/lib/Horde/Text/Filter/words.php +%%HORDIR%%/lib/Horde/Text/Filter/xss.php +%%HORDIR%%/lib/Horde/Text/Filter.php +%%HORDIR%%/lib/Horde/Text.php +%%HORDIR%%/lib/Horde/Token/file.php +%%HORDIR%%/lib/Horde/Token/sql.php +%%HORDIR%%/lib/Horde/Token.php +%%HORDIR%%/lib/Horde/Tree/html.php +%%HORDIR%%/lib/Horde/Tree/javascript.php +%%HORDIR%%/lib/Horde/Tree/select.php +%%HORDIR%%/lib/Horde/Tree.php +%%HORDIR%%/lib/Horde/UI/Language.php +%%HORDIR%%/lib/Horde/UI/Pager.php +%%HORDIR%%/lib/Horde/UI/Tabs.php +%%HORDIR%%/lib/Horde/UI/VarRenderer/html.php +%%HORDIR%%/lib/Horde/UI/VarRenderer/tableset_html.php +%%HORDIR%%/lib/Horde/UI/VarRenderer.php +%%HORDIR%%/lib/Horde/UI/Widget.php +%%HORDIR%%/lib/Horde/Util.php +%%HORDIR%%/lib/Horde/VC/cvs.php +%%HORDIR%%/lib/Horde/VC/rcs.php +%%HORDIR%%/lib/Horde/VC/svn.php +%%HORDIR%%/lib/Horde/VC.php +%%HORDIR%%/lib/Horde/Variables.php +%%HORDIR%%/lib/Horde/iCalendar/valarm.php +%%HORDIR%%/lib/Horde/iCalendar/vcard.php +%%HORDIR%%/lib/Horde/iCalendar/vevent.php +%%HORDIR%%/lib/Horde/iCalendar/vfreebusy.php +%%HORDIR%%/lib/Horde/iCalendar/vjournal.php +%%HORDIR%%/lib/Horde/iCalendar/vnote.php +%%HORDIR%%/lib/Horde/iCalendar/vtimezone.php +%%HORDIR%%/lib/Horde/iCalendar/vtodo.php +%%HORDIR%%/lib/Horde/iCalendar.php +%%HORDIR%%/lib/Horde.php +%%HORDIR%%/lib/Net/IMSP/Auth/cram_md5.php +%%HORDIR%%/lib/Net/IMSP/Auth/imtest.php +%%HORDIR%%/lib/Net/IMSP/Auth/plaintext.php +%%HORDIR%%/lib/Net/IMSP/Auth.php +%%HORDIR%%/lib/Net/IMSP/Book.php +%%HORDIR%%/lib/Net/IMSP/Options.php +%%HORDIR%%/lib/Net/IMSP/Utils.php +%%HORDIR%%/lib/Net/IMSP.php +%%HORDIR%%/lib/Net/SMS/clickatell_http.php +%%HORDIR%%/lib/Net/SMS/generic_smtp.php +%%HORDIR%%/lib/Net/SMS/sms2email_http.php +%%HORDIR%%/lib/Net/SMS/vodafoneitaly_smtp.php +%%HORDIR%%/lib/Net/SMS/win_http.php +%%HORDIR%%/lib/Net/SMS.php +%%HORDIR%%/lib/SyncML/Backend.php +%%HORDIR%%/lib/SyncML/Command/Alert.php +%%HORDIR%%/lib/SyncML/Command/Final.php +%%HORDIR%%/lib/SyncML/Command/Get.php +%%HORDIR%%/lib/SyncML/Command/Map.php +%%HORDIR%%/lib/SyncML/Command/Put.php +%%HORDIR%%/lib/SyncML/Command/Results.php +%%HORDIR%%/lib/SyncML/Command/Status.php +%%HORDIR%%/lib/SyncML/Command/Sync.php +%%HORDIR%%/lib/SyncML/Command/SyncElement.php +%%HORDIR%%/lib/SyncML/Command.php +%%HORDIR%%/lib/SyncML/Constants.php +%%HORDIR%%/lib/SyncML/Device/Nokia.php +%%HORDIR%%/lib/SyncML/Device/P800.php +%%HORDIR%%/lib/SyncML/Device/Sync4j.php +%%HORDIR%%/lib/SyncML/Device/Synthesis.php +%%HORDIR%%/lib/SyncML/Device.php +%%HORDIR%%/lib/SyncML/DeviceInfo.php +%%HORDIR%%/lib/SyncML/State.php +%%HORDIR%%/lib/SyncML/Sync.php +%%HORDIR%%/lib/SyncML.php +%%HORDIR%%/lib/Test.php +%%HORDIR%%/lib/Text/Diff/Renderer/inline.php +%%HORDIR%%/lib/Text/Diff/Renderer/unified.php +%%HORDIR%%/lib/Text/Diff/Renderer.php +%%HORDIR%%/lib/Text/Diff.php +%%HORDIR%%/lib/Text/Diff3.php +%%HORDIR%%/lib/Text/Flowed.php +%%HORDIR%%/lib/Text/reST/Formatter/html.php +%%HORDIR%%/lib/Text/reST/Formatter.php +%%HORDIR%%/lib/Text/reST/Parser.php +%%HORDIR%%/lib/Text/reST.php +%%HORDIR%%/lib/VFS/Browser.php +%%HORDIR%%/lib/VFS/GC.php +%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy/copy.php +%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy/direct.php +%%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy.php +%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/copy.php +%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy/direct.php +%%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy.php +%%HORDIR%%/lib/VFS/ISOWriter/mkisofs.php +%%HORDIR%%/lib/VFS/ISOWriter.php +%%HORDIR%%/lib/VFS/ListItem.php +%%HORDIR%%/lib/VFS/Object.php +%%HORDIR%%/lib/VFS/file.php +%%HORDIR%%/lib/VFS/ftp.php +%%HORDIR%%/lib/VFS/musql.php +%%HORDIR%%/lib/VFS/smb.php +%%HORDIR%%/lib/VFS/sql.php +%%HORDIR%%/lib/VFS/sql_file.php +%%HORDIR%%/lib/VFS.php +%%HORDIR%%/lib/XML/SVG.php +%%HORDIR%%/lib/XML/WBXML/ContentHandler.php +%%HORDIR%%/lib/XML/WBXML/DTD/SyncML.php +%%HORDIR%%/lib/XML/WBXML/DTD/SyncMLDevInf.php +%%HORDIR%%/lib/XML/WBXML/DTD/SyncMLMetInf.php +%%HORDIR%%/lib/XML/WBXML/DTD.php +%%HORDIR%%/lib/XML/WBXML/DTDManager.php +%%HORDIR%%/lib/XML/WBXML/Decoder.php +%%HORDIR%%/lib/XML/WBXML/Encoder.php +%%HORDIR%%/lib/XML/WBXML.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/core.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/locale/.htaccess +%%HORDIR%%/locale/ar_SY/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/bg_BG/help.xml +%%HORDIR%%/locale/bs_BA/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ca_ES/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ca_ES/help.xml +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/cs_CZ/help.xml +%%HORDIR%%/locale/da_DK/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/da_DK/help.xml +%%HORDIR%%/locale/de_DE/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/el_GR/help.xml +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/et_EE/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/et_EE/help.xml +%%HORDIR%%/locale/fa_IR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/fa_IR/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/fr_FR/help.xml +%%HORDIR%%/locale/gl_ES/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/he_IL/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/id_ID/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/is_IS/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/it_IT/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/it_IT/help.xml +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ja_JP/help.xml +%%HORDIR%%/locale/km_KH/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ko_KR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ko_KR/help.xml +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/lt_LT/help.xml +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/mk_MK/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/nb_NO/help.xml +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/nl_NL/help.xml +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/nn_NO/help.xml +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/pl_PL/help.xml +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/pt_BR/help.xml +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/pt_PT/help.xml +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/ru_RU/help.xml +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/sl_SI/help.xml +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/sv_SE/help.xml +%%HORDIR%%/locale/tr_TR/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/uk_UA/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/uk_UA/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/zh_CN/help.xml +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/horde.mo +%%HORDIR%%/locale/zh_TW/help.xml +%%HORDIR%%/login.php +%%HORDIR%%/po/.htaccess +%%HORDIR%%/po/README +%%HORDIR%%/po/ar_SY.po +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/bs_BA.po +%%HORDIR%%/po/ca_ES.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/et_EE.po +%%HORDIR%%/po/fa_IR.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/gl_ES.po +%%HORDIR%%/po/he_IL.po +%%HORDIR%%/po/horde.pot +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/id_ID.po +%%HORDIR%%/po/is_IS.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/km_KH.po +%%HORDIR%%/po/ko_KR.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mk_MK.po +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/tr_TR.po +%%HORDIR%%/po/translation.php +%%HORDIR%%/po/uk_UA.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/rpc.php +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/SCRIPTS +%%HORDIR%%/scripts/cookie_login.php +%%HORDIR%%/scripts/count_sessions.php +%%HORDIR%%/scripts/create-symlinks.php +%%HORDIR%%/scripts/get_login.php +%%HORDIR%%/scripts/http_login_refer.php +%%HORDIR%%/scripts/ldap/horde.schema +%%HORDIR%%/scripts/remove_prefs.php +%%HORDIR%%/scripts/set_perms.sh +%%HORDIR%%/scripts/sql/README +%%HORDIR%%/scripts/sql/README.OCI8 +%%HORDIR%%/scripts/sql/create.msde.sql +%%HORDIR%%/scripts/sql/create.mysql.sql +%%HORDIR%%/scripts/sql/create.oci8.sql +%%HORDIR%%/scripts/sql/create.pgsql.sql +%%HORDIR%%/scripts/sql/create.sql +%%HORDIR%%/scripts/sql/create.sybase.sql +%%HORDIR%%/scripts/sql/create.xml +%%HORDIR%%/scripts/sql/horde_datatree.mssql.sql +%%HORDIR%%/scripts/sql/horde_datatree.mysql.sql +%%HORDIR%%/scripts/sql/horde_datatree.sql +%%HORDIR%%/scripts/sql/horde_histories.mssql.sql +%%HORDIR%%/scripts/sql/horde_histories.sql +%%HORDIR%%/scripts/sql/horde_log.mssql.sql +%%HORDIR%%/scripts/sql/horde_log.sql +%%HORDIR%%/scripts/sql/horde_muvfs.mssql.sql +%%HORDIR%%/scripts/sql/horde_muvfs.sql +%%HORDIR%%/scripts/sql/horde_prefs.mssql.sql +%%HORDIR%%/scripts/sql/horde_prefs.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.mssql.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.mysql.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.oci8.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.pgsql.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.sapdb.sql +%%HORDIR%%/scripts/sql/horde_sessionhandler.sql +%%HORDIR%%/scripts/sql/horde_tokens.sql +%%HORDIR%%/scripts/sql/horde_users.sql +%%HORDIR%%/scripts/sql/horde_vfs.mssql.sql +%%HORDIR%%/scripts/sql/horde_vfs.oci8.sql +%%HORDIR%%/scripts/sql/horde_vfs.pgsql.sql +%%HORDIR%%/scripts/sql/horde_vfs.sql +%%HORDIR%%/scripts/sql/script.initial_horde_user.sql +%%HORDIR%%/scripts/temp-cleanup.cron +%%HORDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql +%%HORDIR%%/scripts/upgrades/2.2_to_3.0.oci8.sql +%%HORDIR%%/scripts/upgrades/2.2_to_3.0.pgsql.sql +%%HORDIR%%/scripts/upgrades/2005-09-22_horde_prefs_varchar2.oci8.sql +%%HORDIR%%/scripts/upgrades/2006-06-29_horde_prefs_indexes.sql +%%HORDIR%%/scripts/upgrades/3.0_to_3.1.mysql.sql +%%HORDIR%%/scripts/upgrades/3.0_to_3.1.oci8.sql +%%HORDIR%%/scripts/upgrades/3.0_to_3.1.sql +%%HORDIR%%/scripts/upgrades/migrate_user_categories.php +%%HORDIR%%/scripts/upgrades/move_history_out_of_datatree.php +%%HORDIR%%/services/cacheview.php +%%HORDIR%%/services/changepassword.php +%%HORDIR%%/services/download/index.php +%%HORDIR%%/services/editor/htmlarea/dialog.js +%%HORDIR%%/services/editor/htmlarea/htmlarea.css +%%HORDIR%%/services/editor/htmlarea/htmlarea.js +%%HORDIR%%/services/editor/htmlarea/images/ed_about.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_align_center.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_align_justify.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_align_left.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_align_right.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_blank.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_charmap.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_color_bg.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_color_fg.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_copy.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_custom.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_cut.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_delete.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_bold.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_italic.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_strike.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_sub.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_sup.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_format_underline.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_help.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_hr.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_html.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_image.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_indent_less.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_indent_more.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_killword.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_left_to_right.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_link.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_list_bullet.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_list_num.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_paste.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_redo.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_right_to_left.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_rmformat.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_save.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_show_border.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_splitcel.gif +%%HORDIR%%/services/editor/htmlarea/images/ed_undo.gif +%%HORDIR%%/services/editor/htmlarea/images/fullscreen_maximize.gif +%%HORDIR%%/services/editor/htmlarea/images/fullscreen_minimize.gif +%%HORDIR%%/services/editor/htmlarea/images/insert_table.gif +%%HORDIR%%/services/editor/htmlarea/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/ansel-image.js +%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/insert_image.php +%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/showimage.html +%%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/context-menu.js +%%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/menu.css +%%HORDIR%%/services/editor/htmlarea/plugins/ListType/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/ListType/list-type.js +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-delete.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-after.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-insert-before.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-merge.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-prop.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/cell-split.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-delete.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-after.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-insert-before.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/col-split.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-delete.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-above.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-insert-under.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-prop.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/row-split.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img/table-prop.gif +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/lang/en.js +%%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/table-operations.js +%%HORDIR%%/services/editor/htmlarea/popupdiv.js +%%HORDIR%%/services/editor/htmlarea/popups/about.html +%%HORDIR%%/services/editor/htmlarea/popups/blank.html +%%HORDIR%%/services/editor/htmlarea/popups/fullscreen.html +%%HORDIR%%/services/editor/htmlarea/popups/insert_image.html +%%HORDIR%%/services/editor/htmlarea/popups/insert_table.html +%%HORDIR%%/services/editor/htmlarea/popups/link.html +%%HORDIR%%/services/editor/htmlarea/popups/popup.js +%%HORDIR%%/services/editor/htmlarea/popups/select_color.html +%%HORDIR%%/services/editor/htmlarea/popupwin.js +%%HORDIR%%/services/go.php +%%HORDIR%%/services/help/index.php +%%HORDIR%%/services/images/colorpicker.php +%%HORDIR%%/services/images/pixel.php +%%HORDIR%%/services/images/view.php +%%HORDIR%%/services/javascript.php +%%HORDIR%%/services/keyboard.php +%%HORDIR%%/services/language.php +%%HORDIR%%/services/maintenance.php +%%HORDIR%%/services/obrowser/index.php +%%HORDIR%%/services/portal/edit.php +%%HORDIR%%/services/portal/index.php +%%HORDIR%%/services/portal/mobile.php +%%HORDIR%%/services/portal/rpcsum.php +%%HORDIR%%/services/portal/sidebar.php +%%HORDIR%%/services/prefs/index.php +%%HORDIR%%/services/prefs.php +%%HORDIR%%/services/problem.php +%%HORDIR%%/services/resetpassword.php +%%HORDIR%%/services/shares/edit.php +%%HORDIR%%/signup.php +%%HORDIR%%/templates/.htaccess +%%HORDIR%%/templates/admin/common-header.inc +%%HORDIR%%/templates/admin/groups/addchild.inc +%%HORDIR%%/templates/admin/groups/delete.inc +%%HORDIR%%/templates/admin/groups/edit.inc +%%HORDIR%%/templates/admin/setup/config.html +%%HORDIR%%/templates/admin/setup/diff.html +%%HORDIR%%/templates/admin/setup/index.html +%%HORDIR%%/templates/admin/user/add.inc +%%HORDIR%%/templates/admin/user/approve.inc +%%HORDIR%%/templates/admin/user/clear.inc +%%HORDIR%%/templates/admin/user/list.inc +%%HORDIR%%/templates/admin/user/noadd.inc +%%HORDIR%%/templates/admin/user/nolist.inc +%%HORDIR%%/templates/admin/user/remove.inc +%%HORDIR%%/templates/admin/user/removequeued.inc +%%HORDIR%%/templates/admin/user/update.inc +%%HORDIR%%/templates/common-footer.inc +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/contents/open_view_win.js +%%HORDIR%%/templates/data/csvinfo.inc +%%HORDIR%%/templates/data/csvmap.inc +%%HORDIR%%/templates/data/date.inc +%%HORDIR%%/templates/data/datemap.inc +%%HORDIR%%/templates/data/datetime.inc +%%HORDIR%%/templates/data/time.inc +%%HORDIR%%/templates/data/tsvinfo.inc +%%HORDIR%%/templates/help/about.inc +%%HORDIR%%/templates/help/index.inc +%%HORDIR%%/templates/help/menu.inc +%%HORDIR%%/templates/index/frames_index.inc +%%HORDIR%%/templates/javascript/htmlarea.js +%%HORDIR%%/templates/javascript/htmlarea_anselimage_lang.js +%%HORDIR%%/templates/javascript/htmlarea_context_lang.js +%%HORDIR%%/templates/javascript/htmlarea_lang.js +%%HORDIR%%/templates/javascript/htmlarea_listtype_lang.js +%%HORDIR%%/templates/javascript/htmlarea_table_lang.js +%%HORDIR%%/templates/javascript/keybindings.js +%%HORDIR%%/templates/javascript/open_calendar.js +%%HORDIR%%/templates/javascript/open_google_win.js +%%HORDIR%%/templates/javascript/open_html_helper.js +%%HORDIR%%/templates/javascript/print.js +%%HORDIR%%/templates/javascript/quoteBlocks.js +%%HORDIR%%/templates/javascript/tree.js +%%HORDIR%%/templates/login/login.inc +%%HORDIR%%/templates/login/mobile.inc +%%HORDIR%%/templates/maintenance/maintenance.html +%%HORDIR%%/templates/menu/menu.inc +%%HORDIR%%/templates/portal/add.inc +%%HORDIR%%/templates/portal/block.inc +%%HORDIR%%/templates/portal/edit.inc +%%HORDIR%%/templates/portal/layout.inc +%%HORDIR%%/templates/portal/menu.inc +%%HORDIR%%/templates/portal/sidebar.inc +%%HORDIR%%/templates/prefs/app.inc +%%HORDIR%%/templates/prefs/begin.inc +%%HORDIR%%/templates/prefs/categorymanagement.inc +%%HORDIR%%/templates/prefs/checkbox.inc +%%HORDIR%%/templates/prefs/deleteidentity.inc +%%HORDIR%%/templates/prefs/end.inc +%%HORDIR%%/templates/prefs/enum.inc +%%HORDIR%%/templates/prefs/identityselect.inc +%%HORDIR%%/templates/prefs/link.inc +%%HORDIR%%/templates/prefs/multienum.inc +%%HORDIR%%/templates/prefs/number.inc +%%HORDIR%%/templates/prefs/overview.inc +%%HORDIR%%/templates/prefs/password.inc +%%HORDIR%%/templates/prefs/select.inc +%%HORDIR%%/templates/prefs/text.inc +%%HORDIR%%/templates/prefs/textarea.inc +%%HORDIR%%/templates/problem/problem.inc +%%HORDIR%%/templates/rpcsum/rpcsum.inc +%%HORDIR%%/templates/shares/edit.inc +%%HORDIR%%/templates/test/extensions.inc +%%HORDIR%%/templates/test/footer.inc +%%HORDIR%%/templates/test/header.inc +%%HORDIR%%/templates/test/php_version.inc +%%HORDIR%%/templates/test/version.inc +%%HORDIR%%/test.php +%%HORDIR%%/themes/NeXTgrey/info.php +%%HORDIR%%/themes/NeXTgrey/screen.css +%%HORDIR%%/themes/azur/info.php +%%HORDIR%%/themes/azur/screen.css +%%HORDIR%%/themes/barbie/info.php +%%HORDIR%%/themes/barbie/screen.css +%%HORDIR%%/themes/bluemoon/info.php +%%HORDIR%%/themes/bluemoon/screen.css +%%HORDIR%%/themes/bluewhite/info.php +%%HORDIR%%/themes/bluewhite/screen.css +%%HORDIR%%/themes/brown/info.php +%%HORDIR%%/themes/brown/screen.css +%%HORDIR%%/themes/burntorange/info.php +%%HORDIR%%/themes/burntorange/screen.css +%%HORDIR%%/themes/camouflage/graphics/menu.png +%%HORDIR%%/themes/camouflage/info.php +%%HORDIR%%/themes/camouflage/screen.css +%%HORDIR%%/themes/cornflower/graphics/tab_bottom.gif +%%HORDIR%%/themes/cornflower/graphics/tab_left.gif +%%HORDIR%%/themes/cornflower/graphics/tab_right.gif +%%HORDIR%%/themes/cornflower/info.php +%%HORDIR%%/themes/cornflower/screen.css +%%HORDIR%%/themes/gennevilliers/info.php +%%HORDIR%%/themes/gennevilliers/screen.css +%%HORDIR%%/themes/graphics/administration.png +%%HORDIR%%/themes/graphics/alerts/error.png +%%HORDIR%%/themes/graphics/alerts/message.png +%%HORDIR%%/themes/graphics/alerts/success.png +%%HORDIR%%/themes/graphics/alerts/warning.png +%%HORDIR%%/themes/graphics/avatars/alien.jpg +%%HORDIR%%/themes/graphics/avatars/aly.jpg +%%HORDIR%%/themes/graphics/avatars/angryboy.gif +%%HORDIR%%/themes/graphics/avatars/ape.jpg +%%HORDIR%%/themes/graphics/avatars/au.jpg +%%HORDIR%%/themes/graphics/avatars/baby.gif +%%HORDIR%%/themes/graphics/avatars/barbarian.jpg +%%HORDIR%%/themes/graphics/avatars/bart.gif +%%HORDIR%%/themes/graphics/avatars/batman.gif +%%HORDIR%%/themes/graphics/avatars/bert.jpg +%%HORDIR%%/themes/graphics/avatars/bert2.jpg +%%HORDIR%%/themes/graphics/avatars/bobafett.gif +%%HORDIR%%/themes/graphics/avatars/boo.jpg +%%HORDIR%%/themes/graphics/avatars/boyandmower.gif +%%HORDIR%%/themes/graphics/avatars/boyandpc.gif +%%HORDIR%%/themes/graphics/avatars/bret.jpg +%%HORDIR%%/themes/graphics/avatars/bunny.gif +%%HORDIR%%/themes/graphics/avatars/charlie_brown.gif +%%HORDIR%%/themes/graphics/avatars/clown.jpg +%%HORDIR%%/themes/graphics/avatars/cocky.jpg +%%HORDIR%%/themes/graphics/avatars/devil.gif +%%HORDIR%%/themes/graphics/avatars/digimon.gif +%%HORDIR%%/themes/graphics/avatars/dilbert.gif +%%HORDIR%%/themes/graphics/avatars/dino.gif +%%HORDIR%%/themes/graphics/avatars/dog.gif +%%HORDIR%%/themes/graphics/avatars/duck.gif +%%HORDIR%%/themes/graphics/avatars/einstein.jpg +%%HORDIR%%/themes/graphics/avatars/elmerfudd.gif +%%HORDIR%%/themes/graphics/avatars/elmo.jpg +%%HORDIR%%/themes/graphics/avatars/evil.jpg +%%HORDIR%%/themes/graphics/avatars/female1.jpg +%%HORDIR%%/themes/graphics/avatars/female2.jpg +%%HORDIR%%/themes/graphics/avatars/franc.jpg +%%HORDIR%%/themes/graphics/avatars/fredflinstone.gif +%%HORDIR%%/themes/graphics/avatars/garfield.gif +%%HORDIR%%/themes/graphics/avatars/gopher.gif +%%HORDIR%%/themes/graphics/avatars/greenhead.gif +%%HORDIR%%/themes/graphics/avatars/gremlin.jpg +%%HORDIR%%/themes/graphics/avatars/grover.jpg +%%HORDIR%%/themes/graphics/avatars/homer.gif +%%HORDIR%%/themes/graphics/avatars/hump.jpg +%%HORDIR%%/themes/graphics/avatars/iceskatekid.gif +%%HORDIR%%/themes/graphics/avatars/jeri.jpg +%%HORDIR%%/themes/graphics/avatars/kid.gif +%%HORDIR%%/themes/graphics/avatars/kirk.jpg +%%HORDIR%%/themes/graphics/avatars/kryton.jpg +%%HORDIR%%/themes/graphics/avatars/linux.gif +%%HORDIR%%/themes/graphics/avatars/lisa.gif +%%HORDIR%%/themes/graphics/avatars/lovebird.gif +%%HORDIR%%/themes/graphics/avatars/male1.jpg +%%HORDIR%%/themes/graphics/avatars/male2.jpg +%%HORDIR%%/themes/graphics/avatars/man.jpg +%%HORDIR%%/themes/graphics/avatars/marge.gif +%%HORDIR%%/themes/graphics/avatars/maul.gif +%%HORDIR%%/themes/graphics/avatars/melon.jpg +%%HORDIR%%/themes/graphics/avatars/mib.gif +%%HORDIR%%/themes/graphics/avatars/monkey.jpg +%%HORDIR%%/themes/graphics/avatars/neo.jpg +%%HORDIR%%/themes/graphics/avatars/ninja.jpg +%%HORDIR%%/themes/graphics/avatars/paintingbird.gif +%%HORDIR%%/themes/graphics/avatars/picard.jpg +%%HORDIR%%/themes/graphics/avatars/puff.jpg +%%HORDIR%%/themes/graphics/avatars/redcreature.gif +%%HORDIR%%/themes/graphics/avatars/rei.jpg +%%HORDIR%%/themes/graphics/avatars/rei2.jpg +%%HORDIR%%/themes/graphics/avatars/ryu.gif +%%HORDIR%%/themes/graphics/avatars/sexy.gif +%%HORDIR%%/themes/graphics/avatars/smiley.gif +%%HORDIR%%/themes/graphics/avatars/smurfs.gif +%%HORDIR%%/themes/graphics/avatars/sonic.gif +%%HORDIR%%/themes/graphics/avatars/speedy.gif +%%HORDIR%%/themes/graphics/avatars/stan.jpg +%%HORDIR%%/themes/graphics/avatars/superman.gif +%%HORDIR%%/themes/graphics/avatars/sylvester.gif +%%HORDIR%%/themes/graphics/avatars/thomas.gif +%%HORDIR%%/themes/graphics/avatars/tigger.gif +%%HORDIR%%/themes/graphics/avatars/trin.jpg +%%HORDIR%%/themes/graphics/avatars/us.jpg +%%HORDIR%%/themes/graphics/avatars/vampire.jpg +%%HORDIR%%/themes/graphics/avatars/vampire2.jpg +%%HORDIR%%/themes/graphics/avatars/wacko.gif +%%HORDIR%%/themes/graphics/avatars/winnie.gif +%%HORDIR%%/themes/graphics/avatars/wizard.jpg +%%HORDIR%%/themes/graphics/avatars/wolverine.jpg +%%HORDIR%%/themes/graphics/avatars/woman.jpg +%%HORDIR%%/themes/graphics/avatars/woodie.jpg +%%HORDIR%%/themes/graphics/avatars/xena.gif +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/blank.gif +%%HORDIR%%/themes/graphics/block/down.png +%%HORDIR%%/themes/graphics/block/large_down.png +%%HORDIR%%/themes/graphics/block/large_left.png +%%HORDIR%%/themes/graphics/block/large_right.png +%%HORDIR%%/themes/graphics/block/large_up.png +%%HORDIR%%/themes/graphics/block/left.png +%%HORDIR%%/themes/graphics/block/moon/firstquarter.png +%%HORDIR%%/themes/graphics/block/moon/fullmoon.png +%%HORDIR%%/themes/graphics/block/moon/lastquarter.png +%%HORDIR%%/themes/graphics/block/moon/newmoon.png +%%HORDIR%%/themes/graphics/block/right.png +%%HORDIR%%/themes/graphics/block/sunrise/sunrise.png +%%HORDIR%%/themes/graphics/block/sunrise/sunset.png +%%HORDIR%%/themes/graphics/block/up.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/0.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/1.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/10.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/11.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/12.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/13.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/14.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/15.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/16.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/17.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/18.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/19.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/2.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/20.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/21.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/22.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/23.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/24.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/25.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/26.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/27.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/28.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/29.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/3.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/30.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/31.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/32.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/33.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/34.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/35.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/36.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/37.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/38.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/39.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/4.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/40.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/41.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/42.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/43.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/44.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/45.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/46.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/47.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/5.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/6.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/7.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/8.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/9.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/23x23/na.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/0.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/1.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/10.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/11.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/12.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/13.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/14.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/15.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/16.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/17.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/18.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/19.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/2.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/20.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/21.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/22.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/23.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/24.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/25.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/26.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/27.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/28.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/29.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/3.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/30.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/31.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/32.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/33.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/34.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/35.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/36.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/37.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/38.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/39.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/4.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/40.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/41.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/42.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/43.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/44.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/45.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/46.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/47.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/5.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/6.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/7.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/8.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/9.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/TWClogo_32px.png +%%HORDIR%%/themes/graphics/block/weatherdotcom/32x32/na.png +%%HORDIR%%/themes/graphics/block.png +%%HORDIR%%/themes/graphics/calendar.png +%%HORDIR%%/themes/graphics/close.png +%%HORDIR%%/themes/graphics/colorpicker.png +%%HORDIR%%/themes/graphics/colorscale.png +%%HORDIR%%/themes/graphics/config.png +%%HORDIR%%/themes/graphics/data.png +%%HORDIR%%/themes/graphics/datatree.png +%%HORDIR%%/themes/graphics/delete-small.png +%%HORDIR%%/themes/graphics/delete.png +%%HORDIR%%/themes/graphics/devel.png +%%HORDIR%%/themes/graphics/download.png +%%HORDIR%%/themes/graphics/edit-small.png +%%HORDIR%%/themes/graphics/edit.png +%%HORDIR%%/themes/graphics/emoticons/angel.png +%%HORDIR%%/themes/graphics/emoticons/angelwink.png +%%HORDIR%%/themes/graphics/emoticons/angry.png +%%HORDIR%%/themes/graphics/emoticons/annoyed.png +%%HORDIR%%/themes/graphics/emoticons/asleep.png +%%HORDIR%%/themes/graphics/emoticons/bigfrown.png +%%HORDIR%%/themes/graphics/emoticons/biggrin.png +%%HORDIR%%/themes/graphics/emoticons/blush.png +%%HORDIR%%/themes/graphics/emoticons/clown.png +%%HORDIR%%/themes/graphics/emoticons/confused.png +%%HORDIR%%/themes/graphics/emoticons/cool.png +%%HORDIR%%/themes/graphics/emoticons/coolgrin.png +%%HORDIR%%/themes/graphics/emoticons/cooltongue.png +%%HORDIR%%/themes/graphics/emoticons/dazed.png +%%HORDIR%%/themes/graphics/emoticons/devil.png +%%HORDIR%%/themes/graphics/emoticons/deviltongue.png +%%HORDIR%%/themes/graphics/emoticons/disappointed.png +%%HORDIR%%/themes/graphics/emoticons/embarrassed.png +%%HORDIR%%/themes/graphics/emoticons/enraged.png +%%HORDIR%%/themes/graphics/emoticons/frown.png +%%HORDIR%%/themes/graphics/emoticons/frustrated.png +%%HORDIR%%/themes/graphics/emoticons/grin.png +%%HORDIR%%/themes/graphics/emoticons/hangover.png +%%HORDIR%%/themes/graphics/emoticons/hippie.png +%%HORDIR%%/themes/graphics/emoticons/hippiegrin.png +%%HORDIR%%/themes/graphics/emoticons/hippietongue.png +%%HORDIR%%/themes/graphics/emoticons/hurt.png +%%HORDIR%%/themes/graphics/emoticons/indifferent.png +%%HORDIR%%/themes/graphics/emoticons/love.png +%%HORDIR%%/themes/graphics/emoticons/mad.png +%%HORDIR%%/themes/graphics/emoticons/mrt.png +%%HORDIR%%/themes/graphics/emoticons/punk.png +%%HORDIR%%/themes/graphics/emoticons/punkmohawk.png +%%HORDIR%%/themes/graphics/emoticons/punktongue.png +%%HORDIR%%/themes/graphics/emoticons/raspberry.png +%%HORDIR%%/themes/graphics/emoticons/sad.png +%%HORDIR%%/themes/graphics/emoticons/shout.png +%%HORDIR%%/themes/graphics/emoticons/smile.png +%%HORDIR%%/themes/graphics/emoticons/tired.png +%%HORDIR%%/themes/graphics/emoticons/tongueout.png +%%HORDIR%%/themes/graphics/emoticons/vampire.png +%%HORDIR%%/themes/graphics/emoticons/wink.png +%%HORDIR%%/themes/graphics/emoticons/winkgrin.png +%%HORDIR%%/themes/graphics/emoticons/winktongue.png +%%HORDIR%%/themes/graphics/emoticons/winktongueout.png +%%HORDIR%%/themes/graphics/emoticons/worried.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/flags/af.png +%%HORDIR%%/themes/graphics/flags/al.png +%%HORDIR%%/themes/graphics/flags/am.png +%%HORDIR%%/themes/graphics/flags/an.png +%%HORDIR%%/themes/graphics/flags/ao.png +%%HORDIR%%/themes/graphics/flags/ar.png +%%HORDIR%%/themes/graphics/flags/at.png +%%HORDIR%%/themes/graphics/flags/au.png +%%HORDIR%%/themes/graphics/flags/aw.png +%%HORDIR%%/themes/graphics/flags/az.png +%%HORDIR%%/themes/graphics/flags/ba.png +%%HORDIR%%/themes/graphics/flags/bb.png +%%HORDIR%%/themes/graphics/flags/bd.png +%%HORDIR%%/themes/graphics/flags/be.png +%%HORDIR%%/themes/graphics/flags/bf.png +%%HORDIR%%/themes/graphics/flags/bg.png +%%HORDIR%%/themes/graphics/flags/bh.png +%%HORDIR%%/themes/graphics/flags/bi.png +%%HORDIR%%/themes/graphics/flags/bj.png +%%HORDIR%%/themes/graphics/flags/bm.png +%%HORDIR%%/themes/graphics/flags/bn.png +%%HORDIR%%/themes/graphics/flags/bo.png +%%HORDIR%%/themes/graphics/flags/br.png +%%HORDIR%%/themes/graphics/flags/bs.png +%%HORDIR%%/themes/graphics/flags/bt.png +%%HORDIR%%/themes/graphics/flags/bw.png +%%HORDIR%%/themes/graphics/flags/by.png +%%HORDIR%%/themes/graphics/flags/bz.png +%%HORDIR%%/themes/graphics/flags/ca.png +%%HORDIR%%/themes/graphics/flags/cf.png +%%HORDIR%%/themes/graphics/flags/cg.png +%%HORDIR%%/themes/graphics/flags/ch.png +%%HORDIR%%/themes/graphics/flags/ci.png +%%HORDIR%%/themes/graphics/flags/ck.png +%%HORDIR%%/themes/graphics/flags/cl.png +%%HORDIR%%/themes/graphics/flags/cm.png +%%HORDIR%%/themes/graphics/flags/cn.png +%%HORDIR%%/themes/graphics/flags/co.png +%%HORDIR%%/themes/graphics/flags/cr.png +%%HORDIR%%/themes/graphics/flags/cu.png +%%HORDIR%%/themes/graphics/flags/cv.png +%%HORDIR%%/themes/graphics/flags/cy.png +%%HORDIR%%/themes/graphics/flags/cz.png +%%HORDIR%%/themes/graphics/flags/de.png +%%HORDIR%%/themes/graphics/flags/dk.png +%%HORDIR%%/themes/graphics/flags/dz.png +%%HORDIR%%/themes/graphics/flags/ec.png +%%HORDIR%%/themes/graphics/flags/ee.png +%%HORDIR%%/themes/graphics/flags/eg.png +%%HORDIR%%/themes/graphics/flags/er.png +%%HORDIR%%/themes/graphics/flags/es.png +%%HORDIR%%/themes/graphics/flags/et.png +%%HORDIR%%/themes/graphics/flags/fi.png +%%HORDIR%%/themes/graphics/flags/fj.png +%%HORDIR%%/themes/graphics/flags/fo.png +%%HORDIR%%/themes/graphics/flags/fr.png +%%HORDIR%%/themes/graphics/flags/ga.png +%%HORDIR%%/themes/graphics/flags/ge.png +%%HORDIR%%/themes/graphics/flags/gi.png +%%HORDIR%%/themes/graphics/flags/gl.png +%%HORDIR%%/themes/graphics/flags/gp.png +%%HORDIR%%/themes/graphics/flags/gr.png +%%HORDIR%%/themes/graphics/flags/gt.png +%%HORDIR%%/themes/graphics/flags/gu.png +%%HORDIR%%/themes/graphics/flags/gy.png +%%HORDIR%%/themes/graphics/flags/hk.png +%%HORDIR%%/themes/graphics/flags/hr.png +%%HORDIR%%/themes/graphics/flags/ht.png +%%HORDIR%%/themes/graphics/flags/hu.png +%%HORDIR%%/themes/graphics/flags/id.png +%%HORDIR%%/themes/graphics/flags/ie.png +%%HORDIR%%/themes/graphics/flags/il.png +%%HORDIR%%/themes/graphics/flags/in.png +%%HORDIR%%/themes/graphics/flags/iq.png +%%HORDIR%%/themes/graphics/flags/ir.png +%%HORDIR%%/themes/graphics/flags/is.png +%%HORDIR%%/themes/graphics/flags/it.png +%%HORDIR%%/themes/graphics/flags/jm.png +%%HORDIR%%/themes/graphics/flags/jo.png +%%HORDIR%%/themes/graphics/flags/jp.png +%%HORDIR%%/themes/graphics/flags/ke.png +%%HORDIR%%/themes/graphics/flags/kg.png +%%HORDIR%%/themes/graphics/flags/kh.png +%%HORDIR%%/themes/graphics/flags/ki.png +%%HORDIR%%/themes/graphics/flags/kp.png +%%HORDIR%%/themes/graphics/flags/kr.png +%%HORDIR%%/themes/graphics/flags/ky.png +%%HORDIR%%/themes/graphics/flags/kz.png +%%HORDIR%%/themes/graphics/flags/lb.png +%%HORDIR%%/themes/graphics/flags/lc.png +%%HORDIR%%/themes/graphics/flags/lk.png +%%HORDIR%%/themes/graphics/flags/lt.png +%%HORDIR%%/themes/graphics/flags/lu.png +%%HORDIR%%/themes/graphics/flags/lv.png +%%HORDIR%%/themes/graphics/flags/ly.png +%%HORDIR%%/themes/graphics/flags/ma.png +%%HORDIR%%/themes/graphics/flags/mc.png +%%HORDIR%%/themes/graphics/flags/md.png +%%HORDIR%%/themes/graphics/flags/mg.png +%%HORDIR%%/themes/graphics/flags/mn.png +%%HORDIR%%/themes/graphics/flags/mo.png +%%HORDIR%%/themes/graphics/flags/mp.png +%%HORDIR%%/themes/graphics/flags/ms.png +%%HORDIR%%/themes/graphics/flags/mt.png +%%HORDIR%%/themes/graphics/flags/mx.png +%%HORDIR%%/themes/graphics/flags/my.png +%%HORDIR%%/themes/graphics/flags/mz.png +%%HORDIR%%/themes/graphics/flags/na.png +%%HORDIR%%/themes/graphics/flags/nc.png +%%HORDIR%%/themes/graphics/flags/nf.png +%%HORDIR%%/themes/graphics/flags/nl.png +%%HORDIR%%/themes/graphics/flags/no.png +%%HORDIR%%/themes/graphics/flags/np.png +%%HORDIR%%/themes/graphics/flags/nr.png +%%HORDIR%%/themes/graphics/flags/nz.png +%%HORDIR%%/themes/graphics/flags/om.png +%%HORDIR%%/themes/graphics/flags/pa.png +%%HORDIR%%/themes/graphics/flags/pe.png +%%HORDIR%%/themes/graphics/flags/pf.png +%%HORDIR%%/themes/graphics/flags/ph.png +%%HORDIR%%/themes/graphics/flags/pk.png +%%HORDIR%%/themes/graphics/flags/pl.png +%%HORDIR%%/themes/graphics/flags/pm.png +%%HORDIR%%/themes/graphics/flags/pr.png +%%HORDIR%%/themes/graphics/flags/pt.png +%%HORDIR%%/themes/graphics/flags/py.png +%%HORDIR%%/themes/graphics/flags/qa.png +%%HORDIR%%/themes/graphics/flags/ro.png +%%HORDIR%%/themes/graphics/flags/ru.png +%%HORDIR%%/themes/graphics/flags/sa.png +%%HORDIR%%/themes/graphics/flags/sb.png +%%HORDIR%%/themes/graphics/flags/sd.png +%%HORDIR%%/themes/graphics/flags/se.png +%%HORDIR%%/themes/graphics/flags/sg.png +%%HORDIR%%/themes/graphics/flags/si.png +%%HORDIR%%/themes/graphics/flags/sk.png +%%HORDIR%%/themes/graphics/flags/sl.png +%%HORDIR%%/themes/graphics/flags/so.png +%%HORDIR%%/themes/graphics/flags/sr.png +%%HORDIR%%/themes/graphics/flags/sy.png +%%HORDIR%%/themes/graphics/flags/tc.png +%%HORDIR%%/themes/graphics/flags/tg.png +%%HORDIR%%/themes/graphics/flags/th.png +%%HORDIR%%/themes/graphics/flags/tn.png +%%HORDIR%%/themes/graphics/flags/to.png +%%HORDIR%%/themes/graphics/flags/tp.png +%%HORDIR%%/themes/graphics/flags/tr.png +%%HORDIR%%/themes/graphics/flags/tt.png +%%HORDIR%%/themes/graphics/flags/tv.png +%%HORDIR%%/themes/graphics/flags/tw.png +%%HORDIR%%/themes/graphics/flags/tz.png +%%HORDIR%%/themes/graphics/flags/ua.png +%%HORDIR%%/themes/graphics/flags/ug.png +%%HORDIR%%/themes/graphics/flags/uk.png +%%HORDIR%%/themes/graphics/flags/us.png +%%HORDIR%%/themes/graphics/flags/uy.png +%%HORDIR%%/themes/graphics/flags/va.png +%%HORDIR%%/themes/graphics/flags/ve.png +%%HORDIR%%/themes/graphics/flags/vg.png +%%HORDIR%%/themes/graphics/flags/vi.png +%%HORDIR%%/themes/graphics/flags/vn.png +%%HORDIR%%/themes/graphics/flags/ws.png +%%HORDIR%%/themes/graphics/flags/ye.png +%%HORDIR%%/themes/graphics/flags/yu.png +%%HORDIR%%/themes/graphics/flags/za.png +%%HORDIR%%/themes/graphics/flags/zw.png +%%HORDIR%%/themes/graphics/google.png +%%HORDIR%%/themes/graphics/group.png +%%HORDIR%%/themes/graphics/help.png +%%HORDIR%%/themes/graphics/help_index.png +%%HORDIR%%/themes/graphics/hide_panel.png +%%HORDIR%%/themes/graphics/horde-power1.png +%%HORDIR%%/themes/graphics/horde-power2.png +%%HORDIR%%/themes/graphics/horde-power3.png +%%HORDIR%%/themes/graphics/horde.png +%%HORDIR%%/themes/graphics/image/crop.png +%%HORDIR%%/themes/graphics/image/flip.png +%%HORDIR%%/themes/graphics/image/grayscale.png +%%HORDIR%%/themes/graphics/image/mirror.png +%%HORDIR%%/themes/graphics/image/ratio.png +%%HORDIR%%/themes/graphics/image/refresh.png +%%HORDIR%%/themes/graphics/image/rotate-180.png +%%HORDIR%%/themes/graphics/image/rotate-270.png +%%HORDIR%%/themes/graphics/image/rotate-90.png +%%HORDIR%%/themes/graphics/info.png +%%HORDIR%%/themes/graphics/info_icon.png +%%HORDIR%%/themes/graphics/keyboard.png +%%HORDIR%%/themes/graphics/layout.png +%%HORDIR%%/themes/graphics/lhand.png +%%HORDIR%%/themes/graphics/locked.png +%%HORDIR%%/themes/graphics/login.png +%%HORDIR%%/themes/graphics/logout.png +%%HORDIR%%/themes/graphics/map.png +%%HORDIR%%/themes/graphics/map_eu.png +%%HORDIR%%/themes/graphics/mime/audio.png +%%HORDIR%%/themes/graphics/mime/binary.png +%%HORDIR%%/themes/graphics/mime/compressed.png +%%HORDIR%%/themes/graphics/mime/deb.png +%%HORDIR%%/themes/graphics/mime/encryption.png +%%HORDIR%%/themes/graphics/mime/html.png +%%HORDIR%%/themes/graphics/mime/icalendar.png +%%HORDIR%%/themes/graphics/mime/image.png +%%HORDIR%%/themes/graphics/mime/mail.png +%%HORDIR%%/themes/graphics/mime/msexcel.png +%%HORDIR%%/themes/graphics/mime/mspowerpoint.png +%%HORDIR%%/themes/graphics/mime/msword.png +%%HORDIR%%/themes/graphics/mime/ooo_calc.png +%%HORDIR%%/themes/graphics/mime/ooo_draw.png +%%HORDIR%%/themes/graphics/mime/ooo_impress.png +%%HORDIR%%/themes/graphics/mime/ooo_math.png +%%HORDIR%%/themes/graphics/mime/ooo_writer.png +%%HORDIR%%/themes/graphics/mime/pdf.png +%%HORDIR%%/themes/graphics/mime/php.png +%%HORDIR%%/themes/graphics/mime/rpm.png +%%HORDIR%%/themes/graphics/mime/script-js.png +%%HORDIR%%/themes/graphics/mime/source-c.png +%%HORDIR%%/themes/graphics/mime/source-cpp.png +%%HORDIR%%/themes/graphics/mime/source-h.png +%%HORDIR%%/themes/graphics/mime/source-java.png +%%HORDIR%%/themes/graphics/mime/source-python.png +%%HORDIR%%/themes/graphics/mime/text.png +%%HORDIR%%/themes/graphics/mime/vcard.png +%%HORDIR%%/themes/graphics/mime/video.png +%%HORDIR%%/themes/graphics/mime/xml.png +%%HORDIR%%/themes/graphics/mobile/bottom.jpg +%%HORDIR%%/themes/graphics/mobile/display.jpg +%%HORDIR%%/themes/graphics/mobile/left.jpg +%%HORDIR%%/themes/graphics/mobile/right.jpg +%%HORDIR%%/themes/graphics/mobile/top.jpg +%%HORDIR%%/themes/graphics/mobile.png +%%HORDIR%%/themes/graphics/myaccount.png +%%HORDIR%%/themes/graphics/nav/bottom-grey.png +%%HORDIR%%/themes/graphics/nav/bottom.png +%%HORDIR%%/themes/graphics/nav/down-grey.png +%%HORDIR%%/themes/graphics/nav/down.png +%%HORDIR%%/themes/graphics/nav/first-grey.png +%%HORDIR%%/themes/graphics/nav/first.png +%%HORDIR%%/themes/graphics/nav/last-grey.png +%%HORDIR%%/themes/graphics/nav/last.png +%%HORDIR%%/themes/graphics/nav/left-grey.png +%%HORDIR%%/themes/graphics/nav/left.png +%%HORDIR%%/themes/graphics/nav/right-grey.png +%%HORDIR%%/themes/graphics/nav/right.png +%%HORDIR%%/themes/graphics/nav/top-grey.png +%%HORDIR%%/themes/graphics/nav/top.png +%%HORDIR%%/themes/graphics/nav/up-grey.png +%%HORDIR%%/themes/graphics/nav/up.png +%%HORDIR%%/themes/graphics/office.png +%%HORDIR%%/themes/graphics/organizing.png +%%HORDIR%%/themes/graphics/perms.png +%%HORDIR%%/themes/graphics/prefs.png +%%HORDIR%%/themes/graphics/print.png +%%HORDIR%%/themes/graphics/problem.png +%%HORDIR%%/themes/graphics/reload.png +%%HORDIR%%/themes/graphics/required.png +%%HORDIR%%/themes/graphics/rhand.png +%%HORDIR%%/themes/graphics/save.png +%%HORDIR%%/themes/graphics/search.png +%%HORDIR%%/themes/graphics/shadow.gif +%%HORDIR%%/themes/graphics/shadow.png +%%HORDIR%%/themes/graphics/shell.png +%%HORDIR%%/themes/graphics/show_panel.png +%%HORDIR%%/themes/graphics/sql.png +%%HORDIR%%/themes/graphics/tab_bottom.gif +%%HORDIR%%/themes/graphics/tree/blank.png +%%HORDIR%%/themes/graphics/tree/folder.png +%%HORDIR%%/themes/graphics/tree/folderopen.png +%%HORDIR%%/themes/graphics/tree/join.png +%%HORDIR%%/themes/graphics/tree/joinbottom-down.png +%%HORDIR%%/themes/graphics/tree/joinbottom.png +%%HORDIR%%/themes/graphics/tree/leaf.png +%%HORDIR%%/themes/graphics/tree/line.png +%%HORDIR%%/themes/graphics/tree/minus.png +%%HORDIR%%/themes/graphics/tree/minusbottom.png +%%HORDIR%%/themes/graphics/tree/minusonly.png +%%HORDIR%%/themes/graphics/tree/minustop.png +%%HORDIR%%/themes/graphics/tree/nullonly.png +%%HORDIR%%/themes/graphics/tree/plus.png +%%HORDIR%%/themes/graphics/tree/plusbottom.png +%%HORDIR%%/themes/graphics/tree/plusonly.png +%%HORDIR%%/themes/graphics/tree/plustop.png +%%HORDIR%%/themes/graphics/tree/rev-join.png +%%HORDIR%%/themes/graphics/tree/rev-joinbottom-down.png +%%HORDIR%%/themes/graphics/tree/rev-joinbottom.png +%%HORDIR%%/themes/graphics/tree/rev-leaf.png +%%HORDIR%%/themes/graphics/tree/rev-line.png +%%HORDIR%%/themes/graphics/tree/rev-minus.png +%%HORDIR%%/themes/graphics/tree/rev-minusbottom.png +%%HORDIR%%/themes/graphics/tree/rev-minusonly.png +%%HORDIR%%/themes/graphics/tree/rev-minustop.png +%%HORDIR%%/themes/graphics/tree/rev-nullonly.png +%%HORDIR%%/themes/graphics/tree/rev-plus.png +%%HORDIR%%/themes/graphics/tree/rev-plusbottom.png +%%HORDIR%%/themes/graphics/tree/rev-plusonly.png +%%HORDIR%%/themes/graphics/tree/rev-plustop.png +%%HORDIR%%/themes/graphics/unlocked.png +%%HORDIR%%/themes/graphics/user.png +%%HORDIR%%/themes/graphics/website.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/green/info.php +%%HORDIR%%/themes/green/screen.css +%%HORDIR%%/themes/grey/info.php +%%HORDIR%%/themes/grey/screen.css +%%HORDIR%%/themes/hi-contrast/info.php +%%HORDIR%%/themes/hi-contrast/screen.css +%%HORDIR%%/themes/ideas/graphics/background.png +%%HORDIR%%/themes/ideas/graphics/left_menu_bottom.png +%%HORDIR%%/themes/ideas/graphics/left_menu_top.png +%%HORDIR%%/themes/ideas/graphics/menu_top.png +%%HORDIR%%/themes/ideas/info.php +%%HORDIR%%/themes/ideas/screen.css +%%HORDIR%%/themes/ie5mac.css +%%HORDIR%%/themes/ie6_or_less.css +%%HORDIR%%/themes/kolab/graphics/bg.png +%%HORDIR%%/themes/kolab/graphics/kolab.png +%%HORDIR%%/themes/kolab/graphics/kolablogo.png +%%HORDIR%%/themes/kolab/info.php +%%HORDIR%%/themes/kolab/screen.css +%%HORDIR%%/themes/lavander/info.php +%%HORDIR%%/themes/lavander/screen.css +%%HORDIR%%/themes/lightblue/graphics/menu.png +%%HORDIR%%/themes/lightblue/info.php +%%HORDIR%%/themes/lightblue/screen.css +%%HORDIR%%/themes/luc/graphics/currentTab_left.gif +%%HORDIR%%/themes/luc/graphics/currentTab_right.gif +%%HORDIR%%/themes/luc/graphics/tab_bottom.gif +%%HORDIR%%/themes/luc/graphics/tab_left.gif +%%HORDIR%%/themes/luc/graphics/tab_right.gif +%%HORDIR%%/themes/luc/info.php +%%HORDIR%%/themes/luc/screen.css +%%HORDIR%%/themes/lucblue/info.php +%%HORDIR%%/themes/lucblue/screen.css +%%HORDIR%%/themes/mobile/screen.css +%%HORDIR%%/themes/moz14.css +%%HORDIR%%/themes/mozilla/graphics/header.png +%%HORDIR%%/themes/mozilla/graphics/menu-active.png +%%HORDIR%%/themes/mozilla/graphics/menu.png +%%HORDIR%%/themes/mozilla/info.php +%%HORDIR%%/themes/mozilla/screen.css +%%HORDIR%%/themes/opera.css +%%HORDIR%%/themes/postnuke/info.php +%%HORDIR%%/themes/postnuke/screen.css +%%HORDIR%%/themes/print/screen.css +%%HORDIR%%/themes/purple/info.php +%%HORDIR%%/themes/purple/screen.css +%%HORDIR%%/themes/rtl.css +%%HORDIR%%/themes/safari.css +%%HORDIR%%/themes/screen.css +%%HORDIR%%/themes/simplex/graphics/background.png +%%HORDIR%%/themes/simplex/info.php +%%HORDIR%%/themes/simplex/screen.css +%%HORDIR%%/util/barcode.php +%%HORDIR%%/util/icon_browser.php +%%HORDIR%%/util/regex_test.php +@exec mkdir -p %D/%%HORDIR%%/lib/File/tests +@exec mkdir -p %D/%%HORDIR%%/lib/Horde/Text/tests +@exec mkdir -p %D/%%HORDIR%%/lib/Horde/docs/examples +@exec mkdir -p %D/%%HORDIR%%/lib/Horde/scripts +@exec mkdir -p %D/%%HORDIR%%/lib/Horde/tests +@exec mkdir -p %D/%%HORDIR%%/lib/Text/docs/examples +@exec mkdir -p %D/%%HORDIR%%/lib/Text/tests +@exec mkdir -p %D/%%HORDIR%%/lib/VFS/tests +@exec mkdir -p %D/%%HORDIR%%/lib/XML/docs/examples +@exec mkdir -p %D/%%HORDIR%%/lib/XML/tests +@exec mkdir -p %D/%%HORDIR%%/lib/data +@exec mkdir -p %D/%%HORDIR%%/lib/docs +@dirrm %%HORDIR%%/admin/locale/en_US +@dirrm %%HORDIR%%/admin/locale/fi_FI +@dirrm %%HORDIR%%/admin/locale/hu_HU +@dirrm %%HORDIR%%/admin/locale +@dirrm %%HORDIR%%/admin/perms +@dirrm %%HORDIR%%/admin/setup +@dirrm %%HORDIR%%/admin +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/File/PDF/fonts +@dirrm %%HORDIR%%/lib/File/PDF +@dirrm %%HORDIR%%/lib/File/tests +@dirrm %%HORDIR%%/lib/File +@dirrm %%HORDIR%%/lib/Horde/Auth +@dirrm %%HORDIR%%/lib/Horde/Block/Layout +@dirrm %%HORDIR%%/lib/Horde/Block +@dirrm %%HORDIR%%/lib/Horde/Browser +@dirrm %%HORDIR%%/lib/Horde/Cache +@dirrm %%HORDIR%%/lib/Horde/Cipher/BlockMode +@dirrm %%HORDIR%%/lib/Horde/Cipher +@dirrm %%HORDIR%%/lib/Horde/Compress +@dirrm %%HORDIR%%/lib/Horde/Crypt +@dirrm %%HORDIR%%/lib/Horde/Data +@dirrm %%HORDIR%%/lib/Horde/DataTree +@dirrm %%HORDIR%%/lib/Horde/Editor +@dirrm %%HORDIR%%/lib/Horde/Form/Action +@dirrm %%HORDIR%%/lib/Horde/Form/Type +@dirrm %%HORDIR%%/lib/Horde/Form +@dirrm %%HORDIR%%/lib/Horde/Graph/Chart +@dirrm %%HORDIR%%/lib/Horde/Graph/Plot +@dirrm %%HORDIR%%/lib/Horde/Graph +@dirrm %%HORDIR%%/lib/Horde/Group +@dirrm %%HORDIR%%/lib/Horde/IMAP/ACL +@dirrm %%HORDIR%%/lib/Horde/IMAP +@dirrm %%HORDIR%%/lib/Horde/Image +@dirrm %%HORDIR%%/lib/Horde/MIME/Viewer/ooo +@dirrm %%HORDIR%%/lib/Horde/MIME/Viewer +@dirrm %%HORDIR%%/lib/Horde/MIME +@dirrm %%HORDIR%%/lib/Horde/Mobile/Renderer +@dirrm %%HORDIR%%/lib/Horde/Mobile +@dirrm %%HORDIR%%/lib/Horde/NLS +@dirrm %%HORDIR%%/lib/Horde/Notification/Listener +@dirrm %%HORDIR%%/lib/Horde/Notification +@dirrm %%HORDIR%%/lib/Horde/Perms +@dirrm %%HORDIR%%/lib/Horde/Prefs +@dirrm %%HORDIR%%/lib/Horde/RPC +@dirrm %%HORDIR%%/lib/Horde/SQL +@dirrm %%HORDIR%%/lib/Horde/Scheduler +@dirrm %%HORDIR%%/lib/Horde/SessionHandler +@dirrm %%HORDIR%%/lib/Horde/Text/Filter +@dirrm %%HORDIR%%/lib/Horde/Text/tests +@dirrm %%HORDIR%%/lib/Horde/Text +@dirrm %%HORDIR%%/lib/Horde/Token +@dirrm %%HORDIR%%/lib/Horde/Tree +@dirrm %%HORDIR%%/lib/Horde/UI/VarRenderer +@dirrm %%HORDIR%%/lib/Horde/UI +@dirrm %%HORDIR%%/lib/Horde/VC +@dirrm %%HORDIR%%/lib/Horde/docs/examples +@dirrm %%HORDIR%%/lib/Horde/docs +@dirrm %%HORDIR%%/lib/Horde/iCalendar +@dirrm %%HORDIR%%/lib/Horde/scripts +@dirrm %%HORDIR%%/lib/Horde/tests +@dirrm %%HORDIR%%/lib/Horde +@dirrm %%HORDIR%%/lib/Net/IMSP/Auth +@dirrm %%HORDIR%%/lib/Net/IMSP +@dirrm %%HORDIR%%/lib/Net/SMS +@dirrm %%HORDIR%%/lib/Net +@dirrm %%HORDIR%%/lib/SyncML/Command +@dirrm %%HORDIR%%/lib/SyncML/Device +@dirrm %%HORDIR%%/lib/SyncML +@dirrm %%HORDIR%%/lib/Text/Diff/Renderer +@dirrm %%HORDIR%%/lib/Text/Diff +@dirrm %%HORDIR%%/lib/Text/docs/examples +@dirrm %%HORDIR%%/lib/Text/docs +@dirrm %%HORDIR%%/lib/Text/reST/Formatter +@dirrm %%HORDIR%%/lib/Text/reST +@dirrm %%HORDIR%%/lib/Text/tests +@dirrm %%HORDIR%%/lib/Text +@dirrm %%HORDIR%%/lib/VFS/ISOWriter/RealInputStrategy +@dirrm %%HORDIR%%/lib/VFS/ISOWriter/RealOutputStrategy +@dirrm %%HORDIR%%/lib/VFS/ISOWriter +@dirrm %%HORDIR%%/lib/VFS/tests +@dirrm %%HORDIR%%/lib/VFS +@dirrm %%HORDIR%%/lib/XML/WBXML/DTD +@dirrm %%HORDIR%%/lib/XML/WBXML +@dirrm %%HORDIR%%/lib/XML/docs/examples +@dirrm %%HORDIR%%/lib/XML/docs +@dirrm %%HORDIR%%/lib/XML/tests +@dirrm %%HORDIR%%/lib/XML +@dirrmtry %%HORDIR%%/lib/data +@dirrm %%HORDIR%%/lib/docs +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/ar_SY/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ar_SY +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/bs_BA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bs_BA +@dirrm %%HORDIR%%/locale/ca_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ca_ES +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/et_EE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/et_EE +@dirrm %%HORDIR%%/locale/fa_IR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fa_IR +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/gl_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/gl_ES +@dirrm %%HORDIR%%/locale/he_IL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/he_IL +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/id_ID/LC_MESSAGES +@dirrm %%HORDIR%%/locale/id_ID +@dirrm %%HORDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%HORDIR%%/locale/is_IS +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/km_KH/LC_MESSAGES +@dirrm %%HORDIR%%/locale/km_KH +@dirrm %%HORDIR%%/locale/ko_KR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ko_KR +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/mk_MK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/mk_MK +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/uk_UA/LC_MESSAGES +@dirrm %%HORDIR%%/locale/uk_UA +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/ldap +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/services/download +@dirrm %%HORDIR%%/services/editor/htmlarea/images +@dirrm %%HORDIR%%/services/editor/htmlarea/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/AnselImage/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/AnselImage +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ContextMenu +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ListType/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/ListType +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/img +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/TableOperations/lang +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins/TableOperations +@dirrm %%HORDIR%%/services/editor/htmlarea/plugins +@dirrm %%HORDIR%%/services/editor/htmlarea/popups +@dirrm %%HORDIR%%/services/editor/htmlarea +@dirrm %%HORDIR%%/services/editor +@dirrm %%HORDIR%%/services/help +@dirrm %%HORDIR%%/services/images +@dirrm %%HORDIR%%/services/obrowser +@dirrm %%HORDIR%%/services/portal +@dirrm %%HORDIR%%/services/prefs +@dirrm %%HORDIR%%/services/shares +@dirrm %%HORDIR%%/services +@dirrm %%HORDIR%%/templates/admin/groups +@dirrm %%HORDIR%%/templates/admin/setup +@dirrm %%HORDIR%%/templates/admin/user +@dirrm %%HORDIR%%/templates/admin +@dirrm %%HORDIR%%/templates/contents +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/help +@dirrm %%HORDIR%%/templates/index +@dirrm %%HORDIR%%/templates/javascript +@dirrm %%HORDIR%%/templates/login +@dirrm %%HORDIR%%/templates/maintenance +@dirrm %%HORDIR%%/templates/menu +@dirrm %%HORDIR%%/templates/portal +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/problem +@dirrm %%HORDIR%%/templates/rpcsum +@dirrm %%HORDIR%%/templates/shares +@dirrm %%HORDIR%%/templates/test +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/NeXTgrey +@dirrm %%HORDIR%%/themes/azur +@dirrm %%HORDIR%%/themes/barbie +@dirrm %%HORDIR%%/themes/bluemoon +@dirrm %%HORDIR%%/themes/bluewhite +@dirrm %%HORDIR%%/themes/brown +@dirrm %%HORDIR%%/themes/burntorange +@dirrm %%HORDIR%%/themes/camouflage/graphics +@dirrm %%HORDIR%%/themes/camouflage +@dirrm %%HORDIR%%/themes/cornflower/graphics +@dirrm %%HORDIR%%/themes/cornflower +@dirrm %%HORDIR%%/themes/gennevilliers +@dirrm %%HORDIR%%/themes/graphics/alerts +@dirrm %%HORDIR%%/themes/graphics/avatars +@dirrm %%HORDIR%%/themes/graphics/block/moon +@dirrm %%HORDIR%%/themes/graphics/block/sunrise +@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom/23x23 +@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom/32x32 +@dirrm %%HORDIR%%/themes/graphics/block/weatherdotcom +@dirrm %%HORDIR%%/themes/graphics/block +@dirrm %%HORDIR%%/themes/graphics/emoticons +@dirrm %%HORDIR%%/themes/graphics/flags +@dirrm %%HORDIR%%/themes/graphics/image +@dirrm %%HORDIR%%/themes/graphics/mime +@dirrm %%HORDIR%%/themes/graphics/mobile +@dirrm %%HORDIR%%/themes/graphics/nav +@dirrm %%HORDIR%%/themes/graphics/tree +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes/green +@dirrm %%HORDIR%%/themes/grey +@dirrm %%HORDIR%%/themes/hi-contrast +@dirrm %%HORDIR%%/themes/ideas/graphics +@dirrm %%HORDIR%%/themes/ideas +@dirrm %%HORDIR%%/themes/kolab/graphics +@dirrm %%HORDIR%%/themes/kolab +@dirrm %%HORDIR%%/themes/lavander +@dirrm %%HORDIR%%/themes/lightblue/graphics +@dirrm %%HORDIR%%/themes/lightblue +@dirrm %%HORDIR%%/themes/luc/graphics +@dirrm %%HORDIR%%/themes/luc +@dirrm %%HORDIR%%/themes/lucblue +@dirrm %%HORDIR%%/themes/mobile +@dirrm %%HORDIR%%/themes/mozilla/graphics +@dirrm %%HORDIR%%/themes/mozilla +@dirrm %%HORDIR%%/themes/postnuke +@dirrm %%HORDIR%%/themes/print +@dirrm %%HORDIR%%/themes/purple +@dirrm %%HORDIR%%/themes/simplex/graphics +@dirrm %%HORDIR%%/themes/simplex +@dirrm %%HORDIR%%/themes +@dirrm %%HORDIR%%/util +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% |