Index: head/deskutils/horde-kronolith/pkg-deinstall =================================================================== --- head/deskutils/horde-kronolith/pkg-deinstall (revision 152846) +++ head/deskutils/horde-kronolith/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/kronolith/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/deskutils/horde-kronolith/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde-kronolith/Makefile =================================================================== --- head/deskutils/horde-kronolith/Makefile (revision 152846) +++ head/deskutils/horde-kronolith/Makefile (revision 152847) @@ -1,123 +1,128 @@ # Ports collection makefile for: Kronolith # Date created: Sun Dec 02, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= kronolith PORTVERSION= 2.0.6 CATEGORIES= deskutils www MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \ ftp://ftp.planetmirror.com/pub/horde/kronolith/ \ ftp://ftp.au.horde.org/pub/horde/kronolith/ \ ftp://ftp.be.horde.org/kronolith/ \ ftp://ftp.es.horde.org/pub/kronolith/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/kronolith/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/kronolith/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/kronolith/ \ http://ftp.horde.org/pub/kronolith/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Kronolith is the Horde calendar application #---------------------------------------------------------------------------- # You may define this option: # -# - WITHOUT_MCAL: you won't use the MCAL driver but a database backend -# (only for PHP4). +# - WITH_MCAL: you want to use the MCAL driver (deprecated, and only for PHP4). # #---------------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_PHP= yes # modules set by Horde, but needed to get PHP_VER USE_REINPLACE= yes REINPLACE_ARGS= -i "" DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= keywords.php menu.php prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LKRONOLITHDIR?= ${LHORDEDIR}/kronolith PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= KRONOLITHDIR=${KRONOLITHDIR} -PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR} +PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR} CONFDIR= ${KRONOLITHDIR}/config VAR_CAL= /var/calendar -HORDE_INC= ${LOCALBASE}/etc/horde - .include +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + .if exists(${LOCALBASE}/sbin/htpasswd) HTPASSWD= ${LOCALBASE}/sbin/htpasswd .else HTPASSWD= ${LOCALBASE}/bin/htpasswd .endif pre-configure: @${RM} ${WRKSRC}/config/conf.xml.orig @${SED} -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:" \ - ${FILESDIR}/httpd.conf.kronolith > ${WRKDIR}/httpd.conf.kronolith + ${FILESDIR}/httpd.conf.kronolith > ${WRKDIR}/httpd-kronolith.conf do-install: @${MKDIR} ${KRONOLITHDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${KRONOLITHDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${KRONOLITHDIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.kronolith ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-kronolith.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: -.if !defined(WITHOUT_MCAL) && (${PHP_VER} == 4) +.if defined(WITH_MCAL) && (${PHP_VER} == 4) @if [ ! -d ${VAR_CAL} ]; then \ ${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \ ${MKDIR} ${VAR_CAL} ; \ ${CHMOD} 1777 ${VAR_CAL} ; \ fi -.if !defined(BATCH) +. if !defined(BATCH) @if [ ! -f ${LOCALBASE}/etc/mpasswd ] ; then \ ${ECHO_MSG} "===> Creating ${LOCALBASE}/etc/mpasswd" ; \ ${ECHO} -n "Please enter a password for www's calendar: " ; \ (read PASSCAL; \ ${HTPASSWD} -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \ elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \ ${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \ ${ECHO} -n "Please enter a password for www's calendar: " ; \ (read PASSCAL; \ ${HTPASSWD} -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \ else \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.xml ; \ fi . endif .endif @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/deskutils/horde-kronolith/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.25 \ No newline at end of property +1.26 \ No newline at end of property Index: head/deskutils/horde-kronolith/files/pkg-deinstall.in =================================================================== --- head/deskutils/horde-kronolith/files/pkg-deinstall.in (nonexistent) +++ head/deskutils/horde-kronolith/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/deskutils/horde-kronolith/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde-kronolith/files/pkg-message.in =================================================================== --- head/deskutils/horde-kronolith/files/pkg-message.in (revision 152846) +++ head/deskutils/horde-kronolith/files/pkg-message.in (revision 152847) @@ -1,29 +1,32 @@ ************************************************************************** Kronolith has been installed in %%KRONOLITHDIR%% with your blank configuration files. Horde must be configured; if not, see `pkg_info -D -x horde'. With PHP4: -If you choose the mcal backend, libmcal must be configured with the driver +If you choosed the mcal backend, libmcal must be configured with the driver mstore for the user www: - mkdir /var/calendar - chmod 1777 /var/calendar - htpasswd -c %%LOCALBASE%%/etc/mpasswd www (this port has tried to make it for you, perhaps you'll just have to check - see `pkg_info -D -x libmcal') If you choose a database backend, you have to create some tables from the SQL scripts in %%KRONOLITHDIR%%/scripts/sql. WARNING! if you are upgrading from Kronolith v. 1.1.x, you have to alter ******** your schemas. Please read the doc %%DOCSDIR%%/UPGRADING. + Please note that the MCAL back-end is deprecated! + To migrate from MCAL to SQL, you can use the provided script + %%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php Finally, you must login to Horde as a Horde Administrator to finish the configuration. To protect your configuration files, you have to restart Apache. ************************************************************************** Property changes on: head/deskutils/horde-kronolith/files/pkg-message.in ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/deskutils/horde-kronolith/pkg-plist =================================================================== --- head/deskutils/horde-kronolith/pkg-plist (revision 152846) +++ head/deskutils/horde-kronolith/pkg-plist (revision 152847) @@ -1,287 +1,287 @@ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%KRONOLITHDIR%%/addevent.php %%KRONOLITHDIR%%/addeventaction.php %%KRONOLITHDIR%%/attendees.php %%KRONOLITHDIR%%/calendars.php %%KRONOLITHDIR%%/config/.htaccess %%KRONOLITHDIR%%/config/conf.xml %%KRONOLITHDIR%%/config/keywords.php %%KRONOLITHDIR%%/config/keywords.php.dist %%KRONOLITHDIR%%/config/menu.php %%KRONOLITHDIR%%/config/menu.php.dist %%KRONOLITHDIR%%/config/prefs.php %%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%%/index.php %%KRONOLITHDIR%%/lib/Block/month.php %%KRONOLITHDIR%%/lib/Block/monthlist.php %%KRONOLITHDIR%%/lib/Block/prevmonthlist.php %%KRONOLITHDIR%%/lib/Block/summary.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/mcal.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/ro_RO/LC_MESSAGES/kronolith.mo %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo %%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/ro_RO.po %%KRONOLITHDIR%%/po/ru_RU.po %%KRONOLITHDIR%%/po/sk_SK.po %%KRONOLITHDIR%%/po/sv_SE.po %%KRONOLITHDIR%%/po/zh_CN.po %%KRONOLITHDIR%%/po/zh_TW.po %%KRONOLITHDIR%%/scripts/.htaccess %%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php %%KRONOLITHDIR%%/scripts/reminders.php %%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/upgrades/1.1_to_2.0.mysql.sql %%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.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%%/search.php %%KRONOLITHDIR%%/templates/attendees/attendees.inc %%KRONOLITHDIR%%/templates/calendars/calendars.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/foot.inc %%KRONOLITHDIR%%/templates/day/head.inc %%KRONOLITHDIR%%/templates/day/head_side_by_side.inc %%KRONOLITHDIR%%/templates/day/row.inc %%KRONOLITHDIR%%/templates/day/row_half.inc %%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/header.tpl %%KRONOLITHDIR%%/templates/fbview/legend.inc %%KRONOLITHDIR%%/templates/fbview/linesblock.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.inc %%KRONOLITHDIR%%/templates/javascript/open_attendees_win.js %%KRONOLITHDIR%%/templates/menu.inc %%KRONOLITHDIR%%/templates/month/head.inc %%KRONOLITHDIR%%/templates/month/head_side_by_side.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%%/themes/bluewhite/screen.css %%KRONOLITHDIR%%/themes/burntorange/screen.css %%KRONOLITHDIR%%/themes/graphics/alarm_small.png %%KRONOLITHDIR%%/themes/graphics/attendees.png %%KRONOLITHDIR%%/themes/graphics/calendars.png %%KRONOLITHDIR%%/themes/graphics/dayview.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_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/screen.css %%KRONOLITHDIR%%/themes/mozilla/screen.css %%KRONOLITHDIR%%/themes/print/screen.css %%KRONOLITHDIR%%/themes/simplex/screen.css %%KRONOLITHDIR%%/viewevent.php %%KRONOLITHDIR%%/week.php %%KRONOLITHDIR%%/workweek.php -etc/horde/httpd.conf.kronolith +%%HORDE_INC%%/httpd-kronolith.conf %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/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/sv_SE @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_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 @unexec rmdir %D/%%KRONOLITHDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%KRONOLITHDIR%% 2>/dev/null || true Property changes on: head/deskutils/horde-kronolith/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property Index: head/deskutils/horde-mnemo/pkg-deinstall =================================================================== --- head/deskutils/horde-mnemo/pkg-deinstall (revision 152846) +++ head/deskutils/horde-mnemo/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/mnemo/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/deskutils/horde-mnemo/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde-mnemo/Makefile =================================================================== --- head/deskutils/horde-mnemo/Makefile (revision 152846) +++ head/deskutils/horde-mnemo/Makefile (revision 152847) @@ -1,78 +1,85 @@ # Ports collection makefile for: Mnemo # Date created: Sun May 19, 2002 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= mnemo PORTVERSION= 2.0.3 CATEGORIES= deskutils www MASTER_SITES= ftp://ftp.horde.org/pub/mnemo/ \ ftp://ftp.planetmirror.com/pub/horde/mnemo/ \ ftp://ftp.au.horde.org/pub/horde/mnemo/ \ ftp://ftp.be.horde.org/mnemo/ \ ftp://ftp.es.horde.org/pub/mnemo/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/mnemo/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/mnemo/ \ http://ftp.horde.org/pub/mnemo/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Mnemo is the Horde notes and memos application RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= MNEMODIR=${LMNEMODIR} +PLIST_SUB= MNEMODIR=${LMNEMODIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall +SUB_LIST= MNEMODIR=${MNEMODIR} DOCS= LICENSE README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LMNEMODIR?= ${LHORDEDIR}/mnemo MNEMODIR= ${PREFIX}/${LMNEMODIR} CONFDIR= ${MNEMODIR}/config +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else HORDE_INC= ${LOCALBASE}/etc/horde +.endif pre-configure: @${SED} -e "s:/home/httpd/html/horde/mnemo:${MNEMODIR}:g" \ - ${FILESDIR}/httpd.conf.mnemo > ${WRKDIR}/httpd.conf.mnemo + ${FILESDIR}/httpd.conf.mnemo > ${WRKDIR}/httpd-mnemo.conf do-install: @${MKDIR} ${MNEMODIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${MNEMODIR} .endfor @${CP} -p ${WRKSRC}/*.php ${MNEMODIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${MNEMODIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.mnemo ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-mnemo.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: - @${SED} -e "s:%%MNEMODIR%%:${MNEMODIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \ - < ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/deskutils/horde-mnemo/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/deskutils/horde-mnemo/files/pkg-deinstall.in =================================================================== --- head/deskutils/horde-mnemo/files/pkg-deinstall.in (nonexistent) +++ head/deskutils/horde-mnemo/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/deskutils/horde-mnemo/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde-mnemo/pkg-plist =================================================================== --- head/deskutils/horde-mnemo/pkg-plist (revision 152846) +++ head/deskutils/horde-mnemo/pkg-plist (revision 152847) @@ -1,189 +1,189 @@ -etc/horde/httpd.conf.mnemo +%%HORDE_INC%%/httpd-mnemo.conf %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%MNEMODIR%%/config/.htaccess %%MNEMODIR%%/config/conf.xml %%MNEMODIR%%/config/prefs.php %%MNEMODIR%%/config/prefs.php.dist %%MNEMODIR%%/data.php %%MNEMODIR%%/index.php %%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/sk_SK/LC_MESSAGES/mnemo.mo %%MNEMODIR%%/locale/sk_SK/help.xml %%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/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.sql %%MNEMODIR%%/scripts/sql/mnemo.oci8.sql %%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/prefs/showsummaryselect.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 %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/sk_SK @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 @unexec rmdir %D/%%MNEMODIR%%/config 2>/dev/null || true @unexec rmdir %D/%%MNEMODIR%% 2>/dev/null || true Property changes on: head/deskutils/horde-mnemo/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/deskutils/horde-nag/pkg-deinstall =================================================================== --- head/deskutils/horde-nag/pkg-deinstall (revision 152846) +++ head/deskutils/horde-nag/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/nag/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/deskutils/horde-nag/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde-nag/Makefile =================================================================== --- head/deskutils/horde-nag/Makefile (revision 152846) +++ head/deskutils/horde-nag/Makefile (revision 152847) @@ -1,79 +1,86 @@ # Ports collection makefile for: Nag # Date created: Sun Dec 14, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= nag PORTVERSION= 2.0.4 CATEGORIES= deskutils www MASTER_SITES= ftp://ftp.horde.org/pub/nag/ \ ftp://ftp.planetmirror.com/pub/horde/nag/ \ ftp://ftp.au.horde.org/pub/horde/nag/ \ ftp://ftp.be.horde.org/nag/ \ ftp://ftp.es.horde.org/pub/nag/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/nag/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/nag/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/nag/ \ http://ftp.horde.org/pub/nag/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Nag is a simple, multiuser task list manager RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= NAGDIR=${LNAGDIR} +PLIST_SUB= NAGDIR=${LNAGDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= NAGDIR=${NAGDIR} DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= menu.php prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LNAGDIR?= ${LHORDEDIR}/nag NAGDIR= ${PREFIX}/${LNAGDIR} CONFDIR= ${NAGDIR}/config +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else HORDE_INC= ${LOCALBASE}/etc/horde +.endif pre-configure: @${SED} -e "s:/home/httpd/html/horde/nag:${NAGDIR}:g" \ - ${FILESDIR}/httpd.conf.nag > ${WRKDIR}/httpd.conf.nag + ${FILESDIR}/httpd.conf.nag > ${WRKDIR}/httpd-nag.conf do-install: @${MKDIR} ${NAGDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${NAGDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${NAGDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${NAGDIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.nag ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-nag.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: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/deskutils/horde-nag/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/deskutils/horde-nag/files/pkg-deinstall.in =================================================================== --- head/deskutils/horde-nag/files/pkg-deinstall.in (nonexistent) +++ head/deskutils/horde-nag/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/deskutils/horde-nag/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde-nag/pkg-plist =================================================================== --- head/deskutils/horde-nag/pkg-plist (revision 152846) +++ head/deskutils/horde-nag/pkg-plist (revision 152847) @@ -1,208 +1,208 @@ -etc/horde/httpd.conf.nag +%%HORDE_INC%%/httpd-nag.conf %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%NAGDIR%%/config/.htaccess %%NAGDIR%%/config/conf.xml %%NAGDIR%%/config/menu.php %%NAGDIR%%/config/menu.php.dist %%NAGDIR%%/config/prefs.php %%NAGDIR%%/config/prefs.php.dist %%NAGDIR%%/data.php %%NAGDIR%%/index.php %%NAGDIR%%/lib/.htaccess %%NAGDIR%%/lib/Block/summary.php %%NAGDIR%%/lib/Driver.php %%NAGDIR%%/lib/Driver/datatree.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/cs_CZ/LC_MESSAGES/nag.mo %%NAGDIR%%/locale/da_DK/LC_MESSAGES/nag.mo %%NAGDIR%%/locale/de_DE/help.xml %%NAGDIR%%/locale/de_DE/LC_MESSAGES/nag.mo %%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/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/sv_SE/LC_MESSAGES/nag.mo %%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/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/ro_RO.po %%NAGDIR%%/po/ru_RU.po %%NAGDIR%%/po/sk_SK.po %%NAGDIR%%/po/sv_SE.po %%NAGDIR%%/po/zh_CN.po %%NAGDIR%%/po/zh_TW.po %%NAGDIR%%/scripts/.htaccess %%NAGDIR%%/scripts/migrate_to_datatree_driver.php %%NAGDIR%%/scripts/sql/nag.sql %%NAGDIR%%/scripts/upgrades/1.1_to_2.0.mysql.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/graphics/add.png %%NAGDIR%%/themes/graphics/alarm.png %%NAGDIR%%/themes/graphics/alarm_small.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/screen.css %%NAGDIR%%/view.php %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/sv_SE/LC_MESSAGES @dirrm %%NAGDIR%%/locale/sv_SE @dirrm %%NAGDIR%%/locale/sk_SK/LC_MESSAGES @dirrm %%NAGDIR%%/locale/sk_SK @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_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/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 @unexec rmdir %D/%%NAGDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%NAGDIR%% 2>/dev/null || true Property changes on: head/deskutils/horde-nag/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/deskutils/horde4-kronolith/pkg-deinstall =================================================================== --- head/deskutils/horde4-kronolith/pkg-deinstall (revision 152846) +++ head/deskutils/horde4-kronolith/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/kronolith/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/deskutils/horde4-kronolith/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde4-kronolith/Makefile =================================================================== --- head/deskutils/horde4-kronolith/Makefile (revision 152846) +++ head/deskutils/horde4-kronolith/Makefile (revision 152847) @@ -1,123 +1,128 @@ # Ports collection makefile for: Kronolith # Date created: Sun Dec 02, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= kronolith PORTVERSION= 2.0.6 CATEGORIES= deskutils www MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \ ftp://ftp.planetmirror.com/pub/horde/kronolith/ \ ftp://ftp.au.horde.org/pub/horde/kronolith/ \ ftp://ftp.be.horde.org/kronolith/ \ ftp://ftp.es.horde.org/pub/kronolith/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/kronolith/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/kronolith/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/kronolith/ \ http://ftp.horde.org/pub/kronolith/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Kronolith is the Horde calendar application #---------------------------------------------------------------------------- # You may define this option: # -# - WITHOUT_MCAL: you won't use the MCAL driver but a database backend -# (only for PHP4). +# - WITH_MCAL: you want to use the MCAL driver (deprecated, and only for PHP4). # #---------------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_PHP= yes # modules set by Horde, but needed to get PHP_VER USE_REINPLACE= yes REINPLACE_ARGS= -i "" DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= keywords.php menu.php prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LKRONOLITHDIR?= ${LHORDEDIR}/kronolith PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= KRONOLITHDIR=${KRONOLITHDIR} -PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR} +PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR} CONFDIR= ${KRONOLITHDIR}/config VAR_CAL= /var/calendar -HORDE_INC= ${LOCALBASE}/etc/horde - .include +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + .if exists(${LOCALBASE}/sbin/htpasswd) HTPASSWD= ${LOCALBASE}/sbin/htpasswd .else HTPASSWD= ${LOCALBASE}/bin/htpasswd .endif pre-configure: @${RM} ${WRKSRC}/config/conf.xml.orig @${SED} -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:" \ - ${FILESDIR}/httpd.conf.kronolith > ${WRKDIR}/httpd.conf.kronolith + ${FILESDIR}/httpd.conf.kronolith > ${WRKDIR}/httpd-kronolith.conf do-install: @${MKDIR} ${KRONOLITHDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${KRONOLITHDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${KRONOLITHDIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.kronolith ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-kronolith.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: -.if !defined(WITHOUT_MCAL) && (${PHP_VER} == 4) +.if defined(WITH_MCAL) && (${PHP_VER} == 4) @if [ ! -d ${VAR_CAL} ]; then \ ${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \ ${MKDIR} ${VAR_CAL} ; \ ${CHMOD} 1777 ${VAR_CAL} ; \ fi -.if !defined(BATCH) +. if !defined(BATCH) @if [ ! -f ${LOCALBASE}/etc/mpasswd ] ; then \ ${ECHO_MSG} "===> Creating ${LOCALBASE}/etc/mpasswd" ; \ ${ECHO} -n "Please enter a password for www's calendar: " ; \ (read PASSCAL; \ ${HTPASSWD} -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \ elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \ ${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \ ${ECHO} -n "Please enter a password for www's calendar: " ; \ (read PASSCAL; \ ${HTPASSWD} -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \ else \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.xml ; \ fi . endif .endif @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/deskutils/horde4-kronolith/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.25 \ No newline at end of property +1.26 \ No newline at end of property Index: head/deskutils/horde4-kronolith/files/pkg-deinstall.in =================================================================== --- head/deskutils/horde4-kronolith/files/pkg-deinstall.in (nonexistent) +++ head/deskutils/horde4-kronolith/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/deskutils/horde4-kronolith/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde4-kronolith/files/pkg-message.in =================================================================== --- head/deskutils/horde4-kronolith/files/pkg-message.in (revision 152846) +++ head/deskutils/horde4-kronolith/files/pkg-message.in (revision 152847) @@ -1,29 +1,32 @@ ************************************************************************** Kronolith has been installed in %%KRONOLITHDIR%% with your blank configuration files. Horde must be configured; if not, see `pkg_info -D -x horde'. With PHP4: -If you choose the mcal backend, libmcal must be configured with the driver +If you choosed the mcal backend, libmcal must be configured with the driver mstore for the user www: - mkdir /var/calendar - chmod 1777 /var/calendar - htpasswd -c %%LOCALBASE%%/etc/mpasswd www (this port has tried to make it for you, perhaps you'll just have to check - see `pkg_info -D -x libmcal') If you choose a database backend, you have to create some tables from the SQL scripts in %%KRONOLITHDIR%%/scripts/sql. WARNING! if you are upgrading from Kronolith v. 1.1.x, you have to alter ******** your schemas. Please read the doc %%DOCSDIR%%/UPGRADING. + Please note that the MCAL back-end is deprecated! + To migrate from MCAL to SQL, you can use the provided script + %%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php Finally, you must login to Horde as a Horde Administrator to finish the configuration. To protect your configuration files, you have to restart Apache. ************************************************************************** Property changes on: head/deskutils/horde4-kronolith/files/pkg-message.in ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/deskutils/horde4-kronolith/pkg-plist =================================================================== --- head/deskutils/horde4-kronolith/pkg-plist (revision 152846) +++ head/deskutils/horde4-kronolith/pkg-plist (revision 152847) @@ -1,287 +1,287 @@ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%KRONOLITHDIR%%/addevent.php %%KRONOLITHDIR%%/addeventaction.php %%KRONOLITHDIR%%/attendees.php %%KRONOLITHDIR%%/calendars.php %%KRONOLITHDIR%%/config/.htaccess %%KRONOLITHDIR%%/config/conf.xml %%KRONOLITHDIR%%/config/keywords.php %%KRONOLITHDIR%%/config/keywords.php.dist %%KRONOLITHDIR%%/config/menu.php %%KRONOLITHDIR%%/config/menu.php.dist %%KRONOLITHDIR%%/config/prefs.php %%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%%/index.php %%KRONOLITHDIR%%/lib/Block/month.php %%KRONOLITHDIR%%/lib/Block/monthlist.php %%KRONOLITHDIR%%/lib/Block/prevmonthlist.php %%KRONOLITHDIR%%/lib/Block/summary.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/mcal.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/ro_RO/LC_MESSAGES/kronolith.mo %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo %%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/ro_RO.po %%KRONOLITHDIR%%/po/ru_RU.po %%KRONOLITHDIR%%/po/sk_SK.po %%KRONOLITHDIR%%/po/sv_SE.po %%KRONOLITHDIR%%/po/zh_CN.po %%KRONOLITHDIR%%/po/zh_TW.po %%KRONOLITHDIR%%/scripts/.htaccess %%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php %%KRONOLITHDIR%%/scripts/reminders.php %%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/upgrades/1.1_to_2.0.mysql.sql %%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.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%%/search.php %%KRONOLITHDIR%%/templates/attendees/attendees.inc %%KRONOLITHDIR%%/templates/calendars/calendars.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/foot.inc %%KRONOLITHDIR%%/templates/day/head.inc %%KRONOLITHDIR%%/templates/day/head_side_by_side.inc %%KRONOLITHDIR%%/templates/day/row.inc %%KRONOLITHDIR%%/templates/day/row_half.inc %%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/header.tpl %%KRONOLITHDIR%%/templates/fbview/legend.inc %%KRONOLITHDIR%%/templates/fbview/linesblock.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.inc %%KRONOLITHDIR%%/templates/javascript/open_attendees_win.js %%KRONOLITHDIR%%/templates/menu.inc %%KRONOLITHDIR%%/templates/month/head.inc %%KRONOLITHDIR%%/templates/month/head_side_by_side.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%%/themes/bluewhite/screen.css %%KRONOLITHDIR%%/themes/burntorange/screen.css %%KRONOLITHDIR%%/themes/graphics/alarm_small.png %%KRONOLITHDIR%%/themes/graphics/attendees.png %%KRONOLITHDIR%%/themes/graphics/calendars.png %%KRONOLITHDIR%%/themes/graphics/dayview.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_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/screen.css %%KRONOLITHDIR%%/themes/mozilla/screen.css %%KRONOLITHDIR%%/themes/print/screen.css %%KRONOLITHDIR%%/themes/simplex/screen.css %%KRONOLITHDIR%%/viewevent.php %%KRONOLITHDIR%%/week.php %%KRONOLITHDIR%%/workweek.php -etc/horde/httpd.conf.kronolith +%%HORDE_INC%%/httpd-kronolith.conf %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/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/sv_SE @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_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 @unexec rmdir %D/%%KRONOLITHDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%KRONOLITHDIR%% 2>/dev/null || true Property changes on: head/deskutils/horde4-kronolith/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property Index: head/deskutils/horde4-mnemo/pkg-deinstall =================================================================== --- head/deskutils/horde4-mnemo/pkg-deinstall (revision 152846) +++ head/deskutils/horde4-mnemo/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/mnemo/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/deskutils/horde4-mnemo/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde4-mnemo/Makefile =================================================================== --- head/deskutils/horde4-mnemo/Makefile (revision 152846) +++ head/deskutils/horde4-mnemo/Makefile (revision 152847) @@ -1,78 +1,85 @@ # Ports collection makefile for: Mnemo # Date created: Sun May 19, 2002 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= mnemo PORTVERSION= 2.0.3 CATEGORIES= deskutils www MASTER_SITES= ftp://ftp.horde.org/pub/mnemo/ \ ftp://ftp.planetmirror.com/pub/horde/mnemo/ \ ftp://ftp.au.horde.org/pub/horde/mnemo/ \ ftp://ftp.be.horde.org/mnemo/ \ ftp://ftp.es.horde.org/pub/mnemo/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/mnemo/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/mnemo/ \ http://ftp.horde.org/pub/mnemo/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Mnemo is the Horde notes and memos application RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= MNEMODIR=${LMNEMODIR} +PLIST_SUB= MNEMODIR=${LMNEMODIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall +SUB_LIST= MNEMODIR=${MNEMODIR} DOCS= LICENSE README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LMNEMODIR?= ${LHORDEDIR}/mnemo MNEMODIR= ${PREFIX}/${LMNEMODIR} CONFDIR= ${MNEMODIR}/config +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else HORDE_INC= ${LOCALBASE}/etc/horde +.endif pre-configure: @${SED} -e "s:/home/httpd/html/horde/mnemo:${MNEMODIR}:g" \ - ${FILESDIR}/httpd.conf.mnemo > ${WRKDIR}/httpd.conf.mnemo + ${FILESDIR}/httpd.conf.mnemo > ${WRKDIR}/httpd-mnemo.conf do-install: @${MKDIR} ${MNEMODIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${MNEMODIR} .endfor @${CP} -p ${WRKSRC}/*.php ${MNEMODIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${MNEMODIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.mnemo ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-mnemo.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: - @${SED} -e "s:%%MNEMODIR%%:${MNEMODIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \ - < ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/deskutils/horde4-mnemo/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/deskutils/horde4-mnemo/files/pkg-deinstall.in =================================================================== --- head/deskutils/horde4-mnemo/files/pkg-deinstall.in (nonexistent) +++ head/deskutils/horde4-mnemo/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/deskutils/horde4-mnemo/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde4-mnemo/pkg-plist =================================================================== --- head/deskutils/horde4-mnemo/pkg-plist (revision 152846) +++ head/deskutils/horde4-mnemo/pkg-plist (revision 152847) @@ -1,189 +1,189 @@ -etc/horde/httpd.conf.mnemo +%%HORDE_INC%%/httpd-mnemo.conf %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%MNEMODIR%%/config/.htaccess %%MNEMODIR%%/config/conf.xml %%MNEMODIR%%/config/prefs.php %%MNEMODIR%%/config/prefs.php.dist %%MNEMODIR%%/data.php %%MNEMODIR%%/index.php %%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/sk_SK/LC_MESSAGES/mnemo.mo %%MNEMODIR%%/locale/sk_SK/help.xml %%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/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.sql %%MNEMODIR%%/scripts/sql/mnemo.oci8.sql %%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/prefs/showsummaryselect.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 %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/sk_SK @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 @unexec rmdir %D/%%MNEMODIR%%/config 2>/dev/null || true @unexec rmdir %D/%%MNEMODIR%% 2>/dev/null || true Property changes on: head/deskutils/horde4-mnemo/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/deskutils/horde4-nag/pkg-deinstall =================================================================== --- head/deskutils/horde4-nag/pkg-deinstall (revision 152846) +++ head/deskutils/horde4-nag/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/nag/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/deskutils/horde4-nag/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde4-nag/Makefile =================================================================== --- head/deskutils/horde4-nag/Makefile (revision 152846) +++ head/deskutils/horde4-nag/Makefile (revision 152847) @@ -1,79 +1,86 @@ # Ports collection makefile for: Nag # Date created: Sun Dec 14, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= nag PORTVERSION= 2.0.4 CATEGORIES= deskutils www MASTER_SITES= ftp://ftp.horde.org/pub/nag/ \ ftp://ftp.planetmirror.com/pub/horde/nag/ \ ftp://ftp.au.horde.org/pub/horde/nag/ \ ftp://ftp.be.horde.org/nag/ \ ftp://ftp.es.horde.org/pub/nag/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/nag/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/nag/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/nag/ \ http://ftp.horde.org/pub/nag/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Nag is a simple, multiuser task list manager RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= NAGDIR=${LNAGDIR} +PLIST_SUB= NAGDIR=${LNAGDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= NAGDIR=${NAGDIR} DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= menu.php prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LNAGDIR?= ${LHORDEDIR}/nag NAGDIR= ${PREFIX}/${LNAGDIR} CONFDIR= ${NAGDIR}/config +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else HORDE_INC= ${LOCALBASE}/etc/horde +.endif pre-configure: @${SED} -e "s:/home/httpd/html/horde/nag:${NAGDIR}:g" \ - ${FILESDIR}/httpd.conf.nag > ${WRKDIR}/httpd.conf.nag + ${FILESDIR}/httpd.conf.nag > ${WRKDIR}/httpd-nag.conf do-install: @${MKDIR} ${NAGDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${NAGDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${NAGDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${NAGDIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.nag ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-nag.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: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/deskutils/horde4-nag/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/deskutils/horde4-nag/files/pkg-deinstall.in =================================================================== --- head/deskutils/horde4-nag/files/pkg-deinstall.in (nonexistent) +++ head/deskutils/horde4-nag/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/deskutils/horde4-nag/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/deskutils/horde4-nag/pkg-plist =================================================================== --- head/deskutils/horde4-nag/pkg-plist (revision 152846) +++ head/deskutils/horde4-nag/pkg-plist (revision 152847) @@ -1,208 +1,208 @@ -etc/horde/httpd.conf.nag +%%HORDE_INC%%/httpd-nag.conf %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%NAGDIR%%/config/.htaccess %%NAGDIR%%/config/conf.xml %%NAGDIR%%/config/menu.php %%NAGDIR%%/config/menu.php.dist %%NAGDIR%%/config/prefs.php %%NAGDIR%%/config/prefs.php.dist %%NAGDIR%%/data.php %%NAGDIR%%/index.php %%NAGDIR%%/lib/.htaccess %%NAGDIR%%/lib/Block/summary.php %%NAGDIR%%/lib/Driver.php %%NAGDIR%%/lib/Driver/datatree.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/cs_CZ/LC_MESSAGES/nag.mo %%NAGDIR%%/locale/da_DK/LC_MESSAGES/nag.mo %%NAGDIR%%/locale/de_DE/help.xml %%NAGDIR%%/locale/de_DE/LC_MESSAGES/nag.mo %%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/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/sv_SE/LC_MESSAGES/nag.mo %%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/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/ro_RO.po %%NAGDIR%%/po/ru_RU.po %%NAGDIR%%/po/sk_SK.po %%NAGDIR%%/po/sv_SE.po %%NAGDIR%%/po/zh_CN.po %%NAGDIR%%/po/zh_TW.po %%NAGDIR%%/scripts/.htaccess %%NAGDIR%%/scripts/migrate_to_datatree_driver.php %%NAGDIR%%/scripts/sql/nag.sql %%NAGDIR%%/scripts/upgrades/1.1_to_2.0.mysql.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/graphics/add.png %%NAGDIR%%/themes/graphics/alarm.png %%NAGDIR%%/themes/graphics/alarm_small.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/screen.css %%NAGDIR%%/view.php %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/sv_SE/LC_MESSAGES @dirrm %%NAGDIR%%/locale/sv_SE @dirrm %%NAGDIR%%/locale/sk_SK/LC_MESSAGES @dirrm %%NAGDIR%%/locale/sk_SK @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_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/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 @unexec rmdir %D/%%NAGDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%NAGDIR%% 2>/dev/null || true Property changes on: head/deskutils/horde4-nag/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/deskutils/kronolith/pkg-deinstall =================================================================== --- head/deskutils/kronolith/pkg-deinstall (revision 152846) +++ head/deskutils/kronolith/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/kronolith/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/deskutils/kronolith/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/deskutils/kronolith/Makefile =================================================================== --- head/deskutils/kronolith/Makefile (revision 152846) +++ head/deskutils/kronolith/Makefile (revision 152847) @@ -1,123 +1,128 @@ # Ports collection makefile for: Kronolith # Date created: Sun Dec 02, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= kronolith PORTVERSION= 2.0.6 CATEGORIES= deskutils www MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \ ftp://ftp.planetmirror.com/pub/horde/kronolith/ \ ftp://ftp.au.horde.org/pub/horde/kronolith/ \ ftp://ftp.be.horde.org/kronolith/ \ ftp://ftp.es.horde.org/pub/kronolith/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/kronolith/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/kronolith/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/kronolith/ \ http://ftp.horde.org/pub/kronolith/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Kronolith is the Horde calendar application #---------------------------------------------------------------------------- # You may define this option: # -# - WITHOUT_MCAL: you won't use the MCAL driver but a database backend -# (only for PHP4). +# - WITH_MCAL: you want to use the MCAL driver (deprecated, and only for PHP4). # #---------------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_PHP= yes # modules set by Horde, but needed to get PHP_VER USE_REINPLACE= yes REINPLACE_ARGS= -i "" DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= keywords.php menu.php prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LKRONOLITHDIR?= ${LHORDEDIR}/kronolith PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= KRONOLITHDIR=${KRONOLITHDIR} -PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR} +PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR} CONFDIR= ${KRONOLITHDIR}/config VAR_CAL= /var/calendar -HORDE_INC= ${LOCALBASE}/etc/horde - .include +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + .if exists(${LOCALBASE}/sbin/htpasswd) HTPASSWD= ${LOCALBASE}/sbin/htpasswd .else HTPASSWD= ${LOCALBASE}/bin/htpasswd .endif pre-configure: @${RM} ${WRKSRC}/config/conf.xml.orig @${SED} -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:" \ - ${FILESDIR}/httpd.conf.kronolith > ${WRKDIR}/httpd.conf.kronolith + ${FILESDIR}/httpd.conf.kronolith > ${WRKDIR}/httpd-kronolith.conf do-install: @${MKDIR} ${KRONOLITHDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${KRONOLITHDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${KRONOLITHDIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.kronolith ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-kronolith.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: -.if !defined(WITHOUT_MCAL) && (${PHP_VER} == 4) +.if defined(WITH_MCAL) && (${PHP_VER} == 4) @if [ ! -d ${VAR_CAL} ]; then \ ${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \ ${MKDIR} ${VAR_CAL} ; \ ${CHMOD} 1777 ${VAR_CAL} ; \ fi -.if !defined(BATCH) +. if !defined(BATCH) @if [ ! -f ${LOCALBASE}/etc/mpasswd ] ; then \ ${ECHO_MSG} "===> Creating ${LOCALBASE}/etc/mpasswd" ; \ ${ECHO} -n "Please enter a password for www's calendar: " ; \ (read PASSCAL; \ ${HTPASSWD} -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \ elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \ ${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \ ${ECHO} -n "Please enter a password for www's calendar: " ; \ (read PASSCAL; \ ${HTPASSWD} -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \ else \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.xml ; \ fi . endif .endif @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/deskutils/kronolith/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.25 \ No newline at end of property +1.26 \ No newline at end of property Index: head/deskutils/kronolith/files/pkg-deinstall.in =================================================================== --- head/deskutils/kronolith/files/pkg-deinstall.in (nonexistent) +++ head/deskutils/kronolith/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/deskutils/kronolith/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/deskutils/kronolith/files/pkg-message.in =================================================================== --- head/deskutils/kronolith/files/pkg-message.in (revision 152846) +++ head/deskutils/kronolith/files/pkg-message.in (revision 152847) @@ -1,29 +1,32 @@ ************************************************************************** Kronolith has been installed in %%KRONOLITHDIR%% with your blank configuration files. Horde must be configured; if not, see `pkg_info -D -x horde'. With PHP4: -If you choose the mcal backend, libmcal must be configured with the driver +If you choosed the mcal backend, libmcal must be configured with the driver mstore for the user www: - mkdir /var/calendar - chmod 1777 /var/calendar - htpasswd -c %%LOCALBASE%%/etc/mpasswd www (this port has tried to make it for you, perhaps you'll just have to check - see `pkg_info -D -x libmcal') If you choose a database backend, you have to create some tables from the SQL scripts in %%KRONOLITHDIR%%/scripts/sql. WARNING! if you are upgrading from Kronolith v. 1.1.x, you have to alter ******** your schemas. Please read the doc %%DOCSDIR%%/UPGRADING. + Please note that the MCAL back-end is deprecated! + To migrate from MCAL to SQL, you can use the provided script + %%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php Finally, you must login to Horde as a Horde Administrator to finish the configuration. To protect your configuration files, you have to restart Apache. ************************************************************************** Property changes on: head/deskutils/kronolith/files/pkg-message.in ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/deskutils/kronolith/pkg-plist =================================================================== --- head/deskutils/kronolith/pkg-plist (revision 152846) +++ head/deskutils/kronolith/pkg-plist (revision 152847) @@ -1,287 +1,287 @@ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%KRONOLITHDIR%%/addevent.php %%KRONOLITHDIR%%/addeventaction.php %%KRONOLITHDIR%%/attendees.php %%KRONOLITHDIR%%/calendars.php %%KRONOLITHDIR%%/config/.htaccess %%KRONOLITHDIR%%/config/conf.xml %%KRONOLITHDIR%%/config/keywords.php %%KRONOLITHDIR%%/config/keywords.php.dist %%KRONOLITHDIR%%/config/menu.php %%KRONOLITHDIR%%/config/menu.php.dist %%KRONOLITHDIR%%/config/prefs.php %%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%%/index.php %%KRONOLITHDIR%%/lib/Block/month.php %%KRONOLITHDIR%%/lib/Block/monthlist.php %%KRONOLITHDIR%%/lib/Block/prevmonthlist.php %%KRONOLITHDIR%%/lib/Block/summary.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/mcal.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/ro_RO/LC_MESSAGES/kronolith.mo %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo %%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/ro_RO.po %%KRONOLITHDIR%%/po/ru_RU.po %%KRONOLITHDIR%%/po/sk_SK.po %%KRONOLITHDIR%%/po/sv_SE.po %%KRONOLITHDIR%%/po/zh_CN.po %%KRONOLITHDIR%%/po/zh_TW.po %%KRONOLITHDIR%%/scripts/.htaccess %%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php %%KRONOLITHDIR%%/scripts/reminders.php %%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/upgrades/1.1_to_2.0.mysql.sql %%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.pgsql.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%%/search.php %%KRONOLITHDIR%%/templates/attendees/attendees.inc %%KRONOLITHDIR%%/templates/calendars/calendars.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/foot.inc %%KRONOLITHDIR%%/templates/day/head.inc %%KRONOLITHDIR%%/templates/day/head_side_by_side.inc %%KRONOLITHDIR%%/templates/day/row.inc %%KRONOLITHDIR%%/templates/day/row_half.inc %%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/header.tpl %%KRONOLITHDIR%%/templates/fbview/legend.inc %%KRONOLITHDIR%%/templates/fbview/linesblock.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.inc %%KRONOLITHDIR%%/templates/javascript/open_attendees_win.js %%KRONOLITHDIR%%/templates/menu.inc %%KRONOLITHDIR%%/templates/month/head.inc %%KRONOLITHDIR%%/templates/month/head_side_by_side.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%%/themes/bluewhite/screen.css %%KRONOLITHDIR%%/themes/burntorange/screen.css %%KRONOLITHDIR%%/themes/graphics/alarm_small.png %%KRONOLITHDIR%%/themes/graphics/attendees.png %%KRONOLITHDIR%%/themes/graphics/calendars.png %%KRONOLITHDIR%%/themes/graphics/dayview.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_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/screen.css %%KRONOLITHDIR%%/themes/mozilla/screen.css %%KRONOLITHDIR%%/themes/print/screen.css %%KRONOLITHDIR%%/themes/simplex/screen.css %%KRONOLITHDIR%%/viewevent.php %%KRONOLITHDIR%%/week.php %%KRONOLITHDIR%%/workweek.php -etc/horde/httpd.conf.kronolith +%%HORDE_INC%%/httpd-kronolith.conf %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/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/sv_SE @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_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 @unexec rmdir %D/%%KRONOLITHDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%KRONOLITHDIR%% 2>/dev/null || true Property changes on: head/deskutils/kronolith/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property Index: head/deskutils/mnemo/pkg-deinstall =================================================================== --- head/deskutils/mnemo/pkg-deinstall (revision 152846) +++ head/deskutils/mnemo/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/mnemo/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/deskutils/mnemo/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/deskutils/mnemo/Makefile =================================================================== --- head/deskutils/mnemo/Makefile (revision 152846) +++ head/deskutils/mnemo/Makefile (revision 152847) @@ -1,78 +1,85 @@ # Ports collection makefile for: Mnemo # Date created: Sun May 19, 2002 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= mnemo PORTVERSION= 2.0.3 CATEGORIES= deskutils www MASTER_SITES= ftp://ftp.horde.org/pub/mnemo/ \ ftp://ftp.planetmirror.com/pub/horde/mnemo/ \ ftp://ftp.au.horde.org/pub/horde/mnemo/ \ ftp://ftp.be.horde.org/mnemo/ \ ftp://ftp.es.horde.org/pub/mnemo/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/mnemo/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/mnemo/ \ http://ftp.horde.org/pub/mnemo/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Mnemo is the Horde notes and memos application RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= MNEMODIR=${LMNEMODIR} +PLIST_SUB= MNEMODIR=${LMNEMODIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall +SUB_LIST= MNEMODIR=${MNEMODIR} DOCS= LICENSE README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LMNEMODIR?= ${LHORDEDIR}/mnemo MNEMODIR= ${PREFIX}/${LMNEMODIR} CONFDIR= ${MNEMODIR}/config +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else HORDE_INC= ${LOCALBASE}/etc/horde +.endif pre-configure: @${SED} -e "s:/home/httpd/html/horde/mnemo:${MNEMODIR}:g" \ - ${FILESDIR}/httpd.conf.mnemo > ${WRKDIR}/httpd.conf.mnemo + ${FILESDIR}/httpd.conf.mnemo > ${WRKDIR}/httpd-mnemo.conf do-install: @${MKDIR} ${MNEMODIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${MNEMODIR} .endfor @${CP} -p ${WRKSRC}/*.php ${MNEMODIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${MNEMODIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.mnemo ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-mnemo.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: - @${SED} -e "s:%%MNEMODIR%%:${MNEMODIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \ - < ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/deskutils/mnemo/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/deskutils/mnemo/files/pkg-deinstall.in =================================================================== --- head/deskutils/mnemo/files/pkg-deinstall.in (nonexistent) +++ head/deskutils/mnemo/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/deskutils/mnemo/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/deskutils/mnemo/pkg-plist =================================================================== --- head/deskutils/mnemo/pkg-plist (revision 152846) +++ head/deskutils/mnemo/pkg-plist (revision 152847) @@ -1,189 +1,189 @@ -etc/horde/httpd.conf.mnemo +%%HORDE_INC%%/httpd-mnemo.conf %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%MNEMODIR%%/config/.htaccess %%MNEMODIR%%/config/conf.xml %%MNEMODIR%%/config/prefs.php %%MNEMODIR%%/config/prefs.php.dist %%MNEMODIR%%/data.php %%MNEMODIR%%/index.php %%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/sk_SK/LC_MESSAGES/mnemo.mo %%MNEMODIR%%/locale/sk_SK/help.xml %%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/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.sql %%MNEMODIR%%/scripts/sql/mnemo.oci8.sql %%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/prefs/showsummaryselect.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 %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/sk_SK @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 @unexec rmdir %D/%%MNEMODIR%%/config 2>/dev/null || true @unexec rmdir %D/%%MNEMODIR%% 2>/dev/null || true Property changes on: head/deskutils/mnemo/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/deskutils/nag/pkg-deinstall =================================================================== --- head/deskutils/nag/pkg-deinstall (revision 152846) +++ head/deskutils/nag/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/nag/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/deskutils/nag/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/deskutils/nag/Makefile =================================================================== --- head/deskutils/nag/Makefile (revision 152846) +++ head/deskutils/nag/Makefile (revision 152847) @@ -1,79 +1,86 @@ # Ports collection makefile for: Nag # Date created: Sun Dec 14, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= nag PORTVERSION= 2.0.4 CATEGORIES= deskutils www MASTER_SITES= ftp://ftp.horde.org/pub/nag/ \ ftp://ftp.planetmirror.com/pub/horde/nag/ \ ftp://ftp.au.horde.org/pub/horde/nag/ \ ftp://ftp.be.horde.org/nag/ \ ftp://ftp.es.horde.org/pub/nag/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/nag/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/nag/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/nag/ \ http://ftp.horde.org/pub/nag/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Nag is a simple, multiuser task list manager RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= NAGDIR=${LNAGDIR} +PLIST_SUB= NAGDIR=${LNAGDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= NAGDIR=${NAGDIR} DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= menu.php prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LNAGDIR?= ${LHORDEDIR}/nag NAGDIR= ${PREFIX}/${LNAGDIR} CONFDIR= ${NAGDIR}/config +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else HORDE_INC= ${LOCALBASE}/etc/horde +.endif pre-configure: @${SED} -e "s:/home/httpd/html/horde/nag:${NAGDIR}:g" \ - ${FILESDIR}/httpd.conf.nag > ${WRKDIR}/httpd.conf.nag + ${FILESDIR}/httpd.conf.nag > ${WRKDIR}/httpd-nag.conf do-install: @${MKDIR} ${NAGDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${NAGDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${NAGDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${NAGDIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.nag ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-nag.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: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/deskutils/nag/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/deskutils/nag/files/pkg-deinstall.in =================================================================== --- head/deskutils/nag/files/pkg-deinstall.in (nonexistent) +++ head/deskutils/nag/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/deskutils/nag/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/deskutils/nag/pkg-plist =================================================================== --- head/deskutils/nag/pkg-plist (revision 152846) +++ head/deskutils/nag/pkg-plist (revision 152847) @@ -1,208 +1,208 @@ -etc/horde/httpd.conf.nag +%%HORDE_INC%%/httpd-nag.conf %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%NAGDIR%%/config/.htaccess %%NAGDIR%%/config/conf.xml %%NAGDIR%%/config/menu.php %%NAGDIR%%/config/menu.php.dist %%NAGDIR%%/config/prefs.php %%NAGDIR%%/config/prefs.php.dist %%NAGDIR%%/data.php %%NAGDIR%%/index.php %%NAGDIR%%/lib/.htaccess %%NAGDIR%%/lib/Block/summary.php %%NAGDIR%%/lib/Driver.php %%NAGDIR%%/lib/Driver/datatree.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/cs_CZ/LC_MESSAGES/nag.mo %%NAGDIR%%/locale/da_DK/LC_MESSAGES/nag.mo %%NAGDIR%%/locale/de_DE/help.xml %%NAGDIR%%/locale/de_DE/LC_MESSAGES/nag.mo %%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/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/sv_SE/LC_MESSAGES/nag.mo %%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/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/ro_RO.po %%NAGDIR%%/po/ru_RU.po %%NAGDIR%%/po/sk_SK.po %%NAGDIR%%/po/sv_SE.po %%NAGDIR%%/po/zh_CN.po %%NAGDIR%%/po/zh_TW.po %%NAGDIR%%/scripts/.htaccess %%NAGDIR%%/scripts/migrate_to_datatree_driver.php %%NAGDIR%%/scripts/sql/nag.sql %%NAGDIR%%/scripts/upgrades/1.1_to_2.0.mysql.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/graphics/add.png %%NAGDIR%%/themes/graphics/alarm.png %%NAGDIR%%/themes/graphics/alarm_small.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/screen.css %%NAGDIR%%/view.php %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/sv_SE/LC_MESSAGES @dirrm %%NAGDIR%%/locale/sv_SE @dirrm %%NAGDIR%%/locale/sk_SK/LC_MESSAGES @dirrm %%NAGDIR%%/locale/sk_SK @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_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/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 @unexec rmdir %D/%%NAGDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%NAGDIR%% 2>/dev/null || true Property changes on: head/deskutils/nag/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/devel/chora/pkg-deinstall =================================================================== --- head/devel/chora/pkg-deinstall (revision 152846) +++ head/devel/chora/pkg-deinstall (nonexistent) @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Chora config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls ${PKG_PREFIX}/www/horde/chora/config/*php ${PKG_PREFIX}/www/horde/chora/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/devel/chora/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/devel/chora/Makefile =================================================================== --- head/devel/chora/Makefile (revision 152846) +++ head/devel/chora/Makefile (revision 152847) @@ -1,130 +1,138 @@ # Ports collection makefile for: Chora # Date created: Mon Nov 26, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= chora PORTVERSION= 2.0.1 CATEGORIES= devel www MASTER_SITES= ftp://ftp.horde.org/pub/chora/ \ ftp://ftp.planetmirror.com/pub/horde/chora/ \ ftp://ftp.au.horde.org/pub/horde/chora/ \ ftp://ftp.be.horde.org/chora/ \ ftp://ftp.es.horde.org/pub/chora/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/chora/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/chora/ \ http://ftp.horde.org/pub/chora/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= The Horde CVS web-viewer #----------------------------------------------------------------------- # You may define these options: # # - WITHOUT_SVN : if you don't need subversion; # # - WITHOUT_CVSPS : if you don't need cvsps; # # - WITHOUT_CVSGRAPH : if you don't need cvsgraph; # # - A4 or DJ : if you run enscript with this paper size. # #----------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde .if !defined(WITHOUT_SVN) RUN_DEPENDS+= ${LOCALBASE}/bin/svn:${PORTSDIR}/devel/subversion .endif .if !defined(WITHOUT_CVSPS) RUN_DEPENDS+= ${LOCALBASE}/bin/cvsps:${PORTSDIR}/devel/cvsps-devel .endif .if !defined(WITHOUT_CVSGRAPH) RUN_DEPENDS+= ${LOCALBASE}/bin/cvsgraph:${PORTSDIR}/devel/cvsgraph .endif NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_REINPLACE= yes # 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 -PKGMESSAGE= ${WRKDIR}/pkg-message LHORDEDIR?= www/horde LCHORADIR= ${LHORDEDIR}/chora -PLIST_SUB= CHORADIR=${LCHORADIR} +PLIST_SUB= CHORADIR=${LCHORADIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} +PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall +SUB_LIST= CHORADIR=${CHORADIR} CONFDIR=${CONFDIR} CHORADIR= ${PREFIX}/${LCHORADIR} CONFDIR= ${CHORADIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde - PATCH2RM= sourceroots.php.dist.orig sourceroots.php.dist.bak conf.xml.bak +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + pre-configure: @${SED} -e "s:/home/httpd/html/horde/chora:${CHORADIR}:" \ - ${FILESDIR}/httpd.conf.chora > ${WRKDIR}/httpd.conf.chora + ${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|" \ ${WRKSRC}/config/conf.xml @${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 \ ${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} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${CHORADIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.chora ${HORDE_INC} + @${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: - @${SED} -e "s:%%CHORADIR%%:${CHORADIR}:;s:%%CONFDIR%%:${CONFDIR}:" \ - < ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/devel/chora/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/devel/chora/distinfo =================================================================== --- head/devel/chora/distinfo (revision 152846) +++ head/devel/chora/distinfo (revision 152847) @@ -1,2 +1,3 @@ MD5 (chora-h3-2.0.1.tar.gz) = 8f3f3e81c839e6f13b797ab911b53652 +SHA256 (chora-h3-2.0.1.tar.gz) = 166b125f08aae7ebda5af7a58bf30c87d7bb4af7a5d3eff8f2429e10d2bd0325 SIZE (chora-h3-2.0.1.tar.gz) = 722536 Property changes on: head/devel/chora/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/devel/chora/files/pkg-deinstall.in =================================================================== --- head/devel/chora/files/pkg-deinstall.in (nonexistent) +++ head/devel/chora/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Backup Chora config files, if needed. + +if [ x$2 != xDEINSTALL ]; then + exit +fi + +if [ -z "${PACKAGE_BUILDING}" ]; then + for cf in `ls %%CHORADIR%%/config/*php %%CHORADIR%%/config/*txt`; do + diff -bBqw $cf $cf.dist >/dev/null 2>&1 + case $? in + 0) # original config file, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/devel/chora/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/devel/chora/pkg-plist =================================================================== --- head/devel/chora/pkg-plist (revision 152846) +++ head/devel/chora/pkg-plist (revision 152847) @@ -1,165 +1,165 @@ -etc/horde/httpd.conf.chora +%%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 %%CHORADIR%%/config/cvsgraph.conf.dist %%CHORADIR%%/config/longIntro.txt %%CHORADIR%%/config/longIntro.txt.dist %%CHORADIR%%/config/mime_drivers.php %%CHORADIR%%/config/mime_drivers.php.dist %%CHORADIR%%/config/prefs.php %%CHORADIR%%/config/prefs.php.dist %%CHORADIR%%/config/sourceroots.php %%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 @unexec rmdir %D/%%CHORADIR%%/config 2>/dev/null || true @unexec rmdir %D/%%CHORADIR%% 2>/dev/null || true Property changes on: head/devel/chora/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property Index: head/devel/horde-chora/pkg-deinstall =================================================================== --- head/devel/horde-chora/pkg-deinstall (revision 152846) +++ head/devel/horde-chora/pkg-deinstall (nonexistent) @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Chora config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls ${PKG_PREFIX}/www/horde/chora/config/*php ${PKG_PREFIX}/www/horde/chora/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/devel/horde-chora/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/devel/horde-chora/Makefile =================================================================== --- head/devel/horde-chora/Makefile (revision 152846) +++ head/devel/horde-chora/Makefile (revision 152847) @@ -1,130 +1,138 @@ # Ports collection makefile for: Chora # Date created: Mon Nov 26, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= chora PORTVERSION= 2.0.1 CATEGORIES= devel www MASTER_SITES= ftp://ftp.horde.org/pub/chora/ \ ftp://ftp.planetmirror.com/pub/horde/chora/ \ ftp://ftp.au.horde.org/pub/horde/chora/ \ ftp://ftp.be.horde.org/chora/ \ ftp://ftp.es.horde.org/pub/chora/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/chora/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/chora/ \ http://ftp.horde.org/pub/chora/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= The Horde CVS web-viewer #----------------------------------------------------------------------- # You may define these options: # # - WITHOUT_SVN : if you don't need subversion; # # - WITHOUT_CVSPS : if you don't need cvsps; # # - WITHOUT_CVSGRAPH : if you don't need cvsgraph; # # - A4 or DJ : if you run enscript with this paper size. # #----------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde .if !defined(WITHOUT_SVN) RUN_DEPENDS+= ${LOCALBASE}/bin/svn:${PORTSDIR}/devel/subversion .endif .if !defined(WITHOUT_CVSPS) RUN_DEPENDS+= ${LOCALBASE}/bin/cvsps:${PORTSDIR}/devel/cvsps-devel .endif .if !defined(WITHOUT_CVSGRAPH) RUN_DEPENDS+= ${LOCALBASE}/bin/cvsgraph:${PORTSDIR}/devel/cvsgraph .endif NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_REINPLACE= yes # 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 -PKGMESSAGE= ${WRKDIR}/pkg-message LHORDEDIR?= www/horde LCHORADIR= ${LHORDEDIR}/chora -PLIST_SUB= CHORADIR=${LCHORADIR} +PLIST_SUB= CHORADIR=${LCHORADIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} +PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall +SUB_LIST= CHORADIR=${CHORADIR} CONFDIR=${CONFDIR} CHORADIR= ${PREFIX}/${LCHORADIR} CONFDIR= ${CHORADIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde - PATCH2RM= sourceroots.php.dist.orig sourceroots.php.dist.bak conf.xml.bak +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + pre-configure: @${SED} -e "s:/home/httpd/html/horde/chora:${CHORADIR}:" \ - ${FILESDIR}/httpd.conf.chora > ${WRKDIR}/httpd.conf.chora + ${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|" \ ${WRKSRC}/config/conf.xml @${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 \ ${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} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${CHORADIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.chora ${HORDE_INC} + @${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: - @${SED} -e "s:%%CHORADIR%%:${CHORADIR}:;s:%%CONFDIR%%:${CONFDIR}:" \ - < ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/devel/horde-chora/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/devel/horde-chora/distinfo =================================================================== --- head/devel/horde-chora/distinfo (revision 152846) +++ head/devel/horde-chora/distinfo (revision 152847) @@ -1,2 +1,3 @@ MD5 (chora-h3-2.0.1.tar.gz) = 8f3f3e81c839e6f13b797ab911b53652 +SHA256 (chora-h3-2.0.1.tar.gz) = 166b125f08aae7ebda5af7a58bf30c87d7bb4af7a5d3eff8f2429e10d2bd0325 SIZE (chora-h3-2.0.1.tar.gz) = 722536 Property changes on: head/devel/horde-chora/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/devel/horde-chora/files/pkg-deinstall.in =================================================================== --- head/devel/horde-chora/files/pkg-deinstall.in (nonexistent) +++ head/devel/horde-chora/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Backup Chora config files, if needed. + +if [ x$2 != xDEINSTALL ]; then + exit +fi + +if [ -z "${PACKAGE_BUILDING}" ]; then + for cf in `ls %%CHORADIR%%/config/*php %%CHORADIR%%/config/*txt`; do + diff -bBqw $cf $cf.dist >/dev/null 2>&1 + case $? in + 0) # original config file, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/devel/horde-chora/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/devel/horde-chora/pkg-plist =================================================================== --- head/devel/horde-chora/pkg-plist (revision 152846) +++ head/devel/horde-chora/pkg-plist (revision 152847) @@ -1,165 +1,165 @@ -etc/horde/httpd.conf.chora +%%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 %%CHORADIR%%/config/cvsgraph.conf.dist %%CHORADIR%%/config/longIntro.txt %%CHORADIR%%/config/longIntro.txt.dist %%CHORADIR%%/config/mime_drivers.php %%CHORADIR%%/config/mime_drivers.php.dist %%CHORADIR%%/config/prefs.php %%CHORADIR%%/config/prefs.php.dist %%CHORADIR%%/config/sourceroots.php %%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 @unexec rmdir %D/%%CHORADIR%%/config 2>/dev/null || true @unexec rmdir %D/%%CHORADIR%% 2>/dev/null || true Property changes on: head/devel/horde-chora/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property Index: head/ftp/gollem/pkg-deinstall =================================================================== --- head/ftp/gollem/pkg-deinstall (revision 152846) +++ head/ftp/gollem/pkg-deinstall (nonexistent) @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Gollem config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls ${PKG_PREFIX}/www/horde/gollem/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/ftp/gollem/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/ftp/gollem/Makefile =================================================================== --- head/ftp/gollem/Makefile (revision 152846) +++ head/ftp/gollem/Makefile (revision 152847) @@ -1,75 +1,82 @@ # Ports collection makefile for: Gollem # Date created: Sun Dec 16, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= gollem PORTVERSION= 1.0.1 CATEGORIES= ftp www MASTER_SITES= ftp://ftp.horde.org/pub/gollem/ \ ftp://ftp.planetmirror.com/pub/horde/gollem/ \ ftp://ftp.be.horde.org/gollem/ \ ftp://ftp.es.horde.org/pub/gollem/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/gollem/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/gollem/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/gollem/\ http://ftp.horde.org/pub/gollem/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Gollem is the Horde web-based File Manager RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= GOLLEMDIR=${LGOLLEMDIR} +PLIST_SUB= GOLLEMDIR=${LGOLLEMDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= GOLLEMDIR=${GOLLEMDIR} DOCS= README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO CONFFILE= backends.php credentials.php menu.php mime_drivers.php motd.php \ prefs.php SUB_DIRS= config lib locale po templates themes LHORDEDIR?= www/horde LGOLLEMDIR?= ${LHORDEDIR}/gollem GOLLEMDIR= ${PREFIX}/${LGOLLEMDIR} CONFDIR= ${GOLLEMDIR}/config +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else HORDE_INC= ${LOCALBASE}/etc/horde +.endif pre-configure: @${SED} -e "s:/home/httpd/html/horde/gollem:${GOLLEMDIR}:g" \ - ${FILESDIR}/httpd.conf.gollem > ${WRKDIR}/httpd.conf.gollem + ${FILESDIR}/httpd.conf.gollem > ${WRKDIR}/httpd-gollem.conf do-install: @${MKDIR} ${GOLLEMDIR} @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${GOLLEMDIR} @${CP} -p ${WRKSRC}/*.php ${GOLLEMDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${GOLLEMDIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.gollem ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-gollem.conf ${HORDE_INC} .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${DOCSDIR} @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif post-install: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/ftp/gollem/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/ftp/gollem/files/pkg-deinstall.in =================================================================== --- head/ftp/gollem/files/pkg-deinstall.in (nonexistent) +++ head/ftp/gollem/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Backup Gollem config files, if needed. + +if [ x$2 != xDEINSTALL ]; then + exit +fi + +if [ -z "${PACKAGE_BUILDING}" ]; then + for cf in `ls %%GOLLEMDIR%%/config/*php`; do + diff -bBqw $cf $cf.dist >/dev/null 2>&1 + case $? in + 0) # original config file, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/ftp/gollem/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/ftp/gollem/pkg-plist =================================================================== --- head/ftp/gollem/pkg-plist (revision 152846) +++ head/ftp/gollem/pkg-plist (revision 152847) @@ -1,164 +1,164 @@ -etc/horde/httpd.conf.gollem +%%HORDE_INC%%/httpd-gollem.conf %%GOLLEMDIR%%/clipboard.php %%GOLLEMDIR%%/config/backends.php %%GOLLEMDIR%%/config/backends.php.dist %%GOLLEMDIR%%/config/conf.xml %%GOLLEMDIR%%/config/credentials.php %%GOLLEMDIR%%/config/credentials.php.dist %%GOLLEMDIR%%/config/menu.php %%GOLLEMDIR%%/config/menu.php.dist %%GOLLEMDIR%%/config/mime_drivers.php %%GOLLEMDIR%%/config/mime_drivers.php.dist %%GOLLEMDIR%%/config/motd.php %%GOLLEMDIR%%/config/motd.php.dist %%GOLLEMDIR%%/config/prefs.php %%GOLLEMDIR%%/config/prefs.php.dist %%GOLLEMDIR%%/index.php %%GOLLEMDIR%%/lib/Auth/gollem.php %%GOLLEMDIR%%/lib/Block/tree_menu.php %%GOLLEMDIR%%/lib/Gollem.php %%GOLLEMDIR%%/lib/MIME/Viewer/images.php %%GOLLEMDIR%%/lib/Session.php %%GOLLEMDIR%%/lib/api.php %%GOLLEMDIR%%/lib/base.php %%GOLLEMDIR%%/lib/prefs.php %%GOLLEMDIR%%/lib/version.php %%GOLLEMDIR%%/locale/bg_BG/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/cs_CZ/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/de_DE/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/en_US/help.xml %%GOLLEMDIR%%/locale/es_ES/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/es_ES/help.xml %%GOLLEMDIR%%/locale/fi_FI/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/fi_FI/help.xml %%GOLLEMDIR%%/locale/fr_FR/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/hu_HU/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/hu_HU/help.xml %%GOLLEMDIR%%/locale/it_IT/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/ko_KR/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/lv_LV/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/nl_NL/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/nn_NO/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/pl_PL/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/ro_RO/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/ru_RU/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/sv_SE/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/zh_TW/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/zh_TW/help.xml %%GOLLEMDIR%%/login.php %%GOLLEMDIR%%/manager.php %%GOLLEMDIR%%/permissions.php %%GOLLEMDIR%%/po/README %%GOLLEMDIR%%/po/bg_BG.po %%GOLLEMDIR%%/po/cs_CZ.po %%GOLLEMDIR%%/po/de_DE.po %%GOLLEMDIR%%/po/es_ES.po %%GOLLEMDIR%%/po/fi_FI.po %%GOLLEMDIR%%/po/fr_FR.po %%GOLLEMDIR%%/po/gollem.pot %%GOLLEMDIR%%/po/hu_HU.po %%GOLLEMDIR%%/po/it_IT.po %%GOLLEMDIR%%/po/ko_KR.po %%GOLLEMDIR%%/po/lv_LV.po %%GOLLEMDIR%%/po/nl_NL.po %%GOLLEMDIR%%/po/nn_NO.po %%GOLLEMDIR%%/po/pl_PL.po %%GOLLEMDIR%%/po/ro_RO.po %%GOLLEMDIR%%/po/ru_RU.po %%GOLLEMDIR%%/po/sv_SE.po %%GOLLEMDIR%%/po/zh_TW.po %%GOLLEMDIR%%/quota.php %%GOLLEMDIR%%/redirect.php %%GOLLEMDIR%%/selectlist.php %%GOLLEMDIR%%/templates/clipboard/clipboard.html %%GOLLEMDIR%%/templates/common-header.inc %%GOLLEMDIR%%/templates/javascript/open_quota_win.js %%GOLLEMDIR%%/templates/javascript/open_selectlist_win.js %%GOLLEMDIR%%/templates/login/login.inc %%GOLLEMDIR%%/templates/login/nologin.inc %%GOLLEMDIR%%/templates/manager/empty_dir.inc %%GOLLEMDIR%%/templates/manager/header.inc %%GOLLEMDIR%%/templates/manager/javascript.inc %%GOLLEMDIR%%/templates/manager/manager.html %%GOLLEMDIR%%/templates/menu.inc %%GOLLEMDIR%%/templates/prefs/columnselect.inc %%GOLLEMDIR%%/templates/quota/quota.html %%GOLLEMDIR%%/templates/selectlist/javascript.inc %%GOLLEMDIR%%/templates/selectlist/selectlist.html %%GOLLEMDIR%%/test.php %%GOLLEMDIR%%/themes/graphics/cd.png %%GOLLEMDIR%%/themes/graphics/clipboard.png %%GOLLEMDIR%%/themes/graphics/copy.png %%GOLLEMDIR%%/themes/graphics/cut.png %%GOLLEMDIR%%/themes/graphics/favicon.ico %%GOLLEMDIR%%/themes/graphics/gollem.png %%GOLLEMDIR%%/themes/graphics/home.png %%GOLLEMDIR%%/themes/graphics/manager/folder.png %%GOLLEMDIR%%/themes/graphics/manager/symlink.png %%GOLLEMDIR%%/themes/graphics/mkdir.png %%GOLLEMDIR%%/themes/purple/screen.css %%GOLLEMDIR%%/themes/screen.css %%GOLLEMDIR%%/view.php %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO @dirrm %%GOLLEMDIR%%/themes/purple @dirrm %%GOLLEMDIR%%/themes/graphics/manager @dirrm %%GOLLEMDIR%%/themes/graphics @dirrm %%GOLLEMDIR%%/themes @dirrm %%GOLLEMDIR%%/templates/selectlist @dirrm %%GOLLEMDIR%%/templates/quota @dirrm %%GOLLEMDIR%%/templates/prefs @dirrm %%GOLLEMDIR%%/templates/manager @dirrm %%GOLLEMDIR%%/templates/login @dirrm %%GOLLEMDIR%%/templates/javascript @dirrm %%GOLLEMDIR%%/templates/clipboard @dirrm %%GOLLEMDIR%%/templates @dirrm %%GOLLEMDIR%%/po @dirrm %%GOLLEMDIR%%/locale/zh_TW/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/zh_TW @dirrm %%GOLLEMDIR%%/locale/sv_SE/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/sv_SE @dirrm %%GOLLEMDIR%%/locale/ru_RU/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/ru_RU @dirrm %%GOLLEMDIR%%/locale/ro_RO/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/ro_RO @dirrm %%GOLLEMDIR%%/locale/pl_PL/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/pl_PL @dirrm %%GOLLEMDIR%%/locale/nn_NO/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/nn_NO @dirrm %%GOLLEMDIR%%/locale/nl_NL/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/nl_NL @dirrm %%GOLLEMDIR%%/locale/lv_LV/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/lv_LV @dirrm %%GOLLEMDIR%%/locale/ko_KR/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/ko_KR @dirrm %%GOLLEMDIR%%/locale/it_IT/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/it_IT @dirrm %%GOLLEMDIR%%/locale/hu_HU/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/hu_HU @dirrm %%GOLLEMDIR%%/locale/fr_FR/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/fr_FR @dirrm %%GOLLEMDIR%%/locale/fi_FI/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/fi_FI @dirrm %%GOLLEMDIR%%/locale/es_ES/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/es_ES @dirrm %%GOLLEMDIR%%/locale/en_US @dirrm %%GOLLEMDIR%%/locale/de_DE/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/de_DE @dirrm %%GOLLEMDIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/cs_CZ @dirrm %%GOLLEMDIR%%/locale/bg_BG/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/bg_BG @dirrm %%GOLLEMDIR%%/locale @dirrm %%GOLLEMDIR%%/lib/MIME/Viewer @dirrm %%GOLLEMDIR%%/lib/MIME @dirrm %%GOLLEMDIR%%/lib/Block @dirrm %%GOLLEMDIR%%/lib/Auth @dirrm %%GOLLEMDIR%%/lib %%PORTDOCS%%@dirrm %%DOCSDIR%% @unexec rmdir %D/%%GOLLEMDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%GOLLEMDIR%% 2>/dev/null || true Property changes on: head/ftp/gollem/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/ftp/horde-gollem/pkg-deinstall =================================================================== --- head/ftp/horde-gollem/pkg-deinstall (revision 152846) +++ head/ftp/horde-gollem/pkg-deinstall (nonexistent) @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Gollem config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls ${PKG_PREFIX}/www/horde/gollem/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/ftp/horde-gollem/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/ftp/horde-gollem/Makefile =================================================================== --- head/ftp/horde-gollem/Makefile (revision 152846) +++ head/ftp/horde-gollem/Makefile (revision 152847) @@ -1,75 +1,82 @@ # Ports collection makefile for: Gollem # Date created: Sun Dec 16, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= gollem PORTVERSION= 1.0.1 CATEGORIES= ftp www MASTER_SITES= ftp://ftp.horde.org/pub/gollem/ \ ftp://ftp.planetmirror.com/pub/horde/gollem/ \ ftp://ftp.be.horde.org/gollem/ \ ftp://ftp.es.horde.org/pub/gollem/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/gollem/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/gollem/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/gollem/\ http://ftp.horde.org/pub/gollem/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Gollem is the Horde web-based File Manager RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= GOLLEMDIR=${LGOLLEMDIR} +PLIST_SUB= GOLLEMDIR=${LGOLLEMDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= GOLLEMDIR=${GOLLEMDIR} DOCS= README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO CONFFILE= backends.php credentials.php menu.php mime_drivers.php motd.php \ prefs.php SUB_DIRS= config lib locale po templates themes LHORDEDIR?= www/horde LGOLLEMDIR?= ${LHORDEDIR}/gollem GOLLEMDIR= ${PREFIX}/${LGOLLEMDIR} CONFDIR= ${GOLLEMDIR}/config +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else HORDE_INC= ${LOCALBASE}/etc/horde +.endif pre-configure: @${SED} -e "s:/home/httpd/html/horde/gollem:${GOLLEMDIR}:g" \ - ${FILESDIR}/httpd.conf.gollem > ${WRKDIR}/httpd.conf.gollem + ${FILESDIR}/httpd.conf.gollem > ${WRKDIR}/httpd-gollem.conf do-install: @${MKDIR} ${GOLLEMDIR} @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${GOLLEMDIR} @${CP} -p ${WRKSRC}/*.php ${GOLLEMDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${GOLLEMDIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.gollem ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-gollem.conf ${HORDE_INC} .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${DOCSDIR} @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif post-install: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/ftp/horde-gollem/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/ftp/horde-gollem/files/pkg-deinstall.in =================================================================== --- head/ftp/horde-gollem/files/pkg-deinstall.in (nonexistent) +++ head/ftp/horde-gollem/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Backup Gollem config files, if needed. + +if [ x$2 != xDEINSTALL ]; then + exit +fi + +if [ -z "${PACKAGE_BUILDING}" ]; then + for cf in `ls %%GOLLEMDIR%%/config/*php`; do + diff -bBqw $cf $cf.dist >/dev/null 2>&1 + case $? in + 0) # original config file, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/ftp/horde-gollem/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/ftp/horde-gollem/pkg-plist =================================================================== --- head/ftp/horde-gollem/pkg-plist (revision 152846) +++ head/ftp/horde-gollem/pkg-plist (revision 152847) @@ -1,164 +1,164 @@ -etc/horde/httpd.conf.gollem +%%HORDE_INC%%/httpd-gollem.conf %%GOLLEMDIR%%/clipboard.php %%GOLLEMDIR%%/config/backends.php %%GOLLEMDIR%%/config/backends.php.dist %%GOLLEMDIR%%/config/conf.xml %%GOLLEMDIR%%/config/credentials.php %%GOLLEMDIR%%/config/credentials.php.dist %%GOLLEMDIR%%/config/menu.php %%GOLLEMDIR%%/config/menu.php.dist %%GOLLEMDIR%%/config/mime_drivers.php %%GOLLEMDIR%%/config/mime_drivers.php.dist %%GOLLEMDIR%%/config/motd.php %%GOLLEMDIR%%/config/motd.php.dist %%GOLLEMDIR%%/config/prefs.php %%GOLLEMDIR%%/config/prefs.php.dist %%GOLLEMDIR%%/index.php %%GOLLEMDIR%%/lib/Auth/gollem.php %%GOLLEMDIR%%/lib/Block/tree_menu.php %%GOLLEMDIR%%/lib/Gollem.php %%GOLLEMDIR%%/lib/MIME/Viewer/images.php %%GOLLEMDIR%%/lib/Session.php %%GOLLEMDIR%%/lib/api.php %%GOLLEMDIR%%/lib/base.php %%GOLLEMDIR%%/lib/prefs.php %%GOLLEMDIR%%/lib/version.php %%GOLLEMDIR%%/locale/bg_BG/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/cs_CZ/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/de_DE/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/en_US/help.xml %%GOLLEMDIR%%/locale/es_ES/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/es_ES/help.xml %%GOLLEMDIR%%/locale/fi_FI/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/fi_FI/help.xml %%GOLLEMDIR%%/locale/fr_FR/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/hu_HU/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/hu_HU/help.xml %%GOLLEMDIR%%/locale/it_IT/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/ko_KR/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/lv_LV/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/nl_NL/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/nn_NO/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/pl_PL/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/ro_RO/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/ru_RU/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/sv_SE/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/zh_TW/LC_MESSAGES/gollem.mo %%GOLLEMDIR%%/locale/zh_TW/help.xml %%GOLLEMDIR%%/login.php %%GOLLEMDIR%%/manager.php %%GOLLEMDIR%%/permissions.php %%GOLLEMDIR%%/po/README %%GOLLEMDIR%%/po/bg_BG.po %%GOLLEMDIR%%/po/cs_CZ.po %%GOLLEMDIR%%/po/de_DE.po %%GOLLEMDIR%%/po/es_ES.po %%GOLLEMDIR%%/po/fi_FI.po %%GOLLEMDIR%%/po/fr_FR.po %%GOLLEMDIR%%/po/gollem.pot %%GOLLEMDIR%%/po/hu_HU.po %%GOLLEMDIR%%/po/it_IT.po %%GOLLEMDIR%%/po/ko_KR.po %%GOLLEMDIR%%/po/lv_LV.po %%GOLLEMDIR%%/po/nl_NL.po %%GOLLEMDIR%%/po/nn_NO.po %%GOLLEMDIR%%/po/pl_PL.po %%GOLLEMDIR%%/po/ro_RO.po %%GOLLEMDIR%%/po/ru_RU.po %%GOLLEMDIR%%/po/sv_SE.po %%GOLLEMDIR%%/po/zh_TW.po %%GOLLEMDIR%%/quota.php %%GOLLEMDIR%%/redirect.php %%GOLLEMDIR%%/selectlist.php %%GOLLEMDIR%%/templates/clipboard/clipboard.html %%GOLLEMDIR%%/templates/common-header.inc %%GOLLEMDIR%%/templates/javascript/open_quota_win.js %%GOLLEMDIR%%/templates/javascript/open_selectlist_win.js %%GOLLEMDIR%%/templates/login/login.inc %%GOLLEMDIR%%/templates/login/nologin.inc %%GOLLEMDIR%%/templates/manager/empty_dir.inc %%GOLLEMDIR%%/templates/manager/header.inc %%GOLLEMDIR%%/templates/manager/javascript.inc %%GOLLEMDIR%%/templates/manager/manager.html %%GOLLEMDIR%%/templates/menu.inc %%GOLLEMDIR%%/templates/prefs/columnselect.inc %%GOLLEMDIR%%/templates/quota/quota.html %%GOLLEMDIR%%/templates/selectlist/javascript.inc %%GOLLEMDIR%%/templates/selectlist/selectlist.html %%GOLLEMDIR%%/test.php %%GOLLEMDIR%%/themes/graphics/cd.png %%GOLLEMDIR%%/themes/graphics/clipboard.png %%GOLLEMDIR%%/themes/graphics/copy.png %%GOLLEMDIR%%/themes/graphics/cut.png %%GOLLEMDIR%%/themes/graphics/favicon.ico %%GOLLEMDIR%%/themes/graphics/gollem.png %%GOLLEMDIR%%/themes/graphics/home.png %%GOLLEMDIR%%/themes/graphics/manager/folder.png %%GOLLEMDIR%%/themes/graphics/manager/symlink.png %%GOLLEMDIR%%/themes/graphics/mkdir.png %%GOLLEMDIR%%/themes/purple/screen.css %%GOLLEMDIR%%/themes/screen.css %%GOLLEMDIR%%/view.php %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO @dirrm %%GOLLEMDIR%%/themes/purple @dirrm %%GOLLEMDIR%%/themes/graphics/manager @dirrm %%GOLLEMDIR%%/themes/graphics @dirrm %%GOLLEMDIR%%/themes @dirrm %%GOLLEMDIR%%/templates/selectlist @dirrm %%GOLLEMDIR%%/templates/quota @dirrm %%GOLLEMDIR%%/templates/prefs @dirrm %%GOLLEMDIR%%/templates/manager @dirrm %%GOLLEMDIR%%/templates/login @dirrm %%GOLLEMDIR%%/templates/javascript @dirrm %%GOLLEMDIR%%/templates/clipboard @dirrm %%GOLLEMDIR%%/templates @dirrm %%GOLLEMDIR%%/po @dirrm %%GOLLEMDIR%%/locale/zh_TW/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/zh_TW @dirrm %%GOLLEMDIR%%/locale/sv_SE/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/sv_SE @dirrm %%GOLLEMDIR%%/locale/ru_RU/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/ru_RU @dirrm %%GOLLEMDIR%%/locale/ro_RO/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/ro_RO @dirrm %%GOLLEMDIR%%/locale/pl_PL/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/pl_PL @dirrm %%GOLLEMDIR%%/locale/nn_NO/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/nn_NO @dirrm %%GOLLEMDIR%%/locale/nl_NL/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/nl_NL @dirrm %%GOLLEMDIR%%/locale/lv_LV/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/lv_LV @dirrm %%GOLLEMDIR%%/locale/ko_KR/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/ko_KR @dirrm %%GOLLEMDIR%%/locale/it_IT/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/it_IT @dirrm %%GOLLEMDIR%%/locale/hu_HU/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/hu_HU @dirrm %%GOLLEMDIR%%/locale/fr_FR/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/fr_FR @dirrm %%GOLLEMDIR%%/locale/fi_FI/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/fi_FI @dirrm %%GOLLEMDIR%%/locale/es_ES/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/es_ES @dirrm %%GOLLEMDIR%%/locale/en_US @dirrm %%GOLLEMDIR%%/locale/de_DE/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/de_DE @dirrm %%GOLLEMDIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/cs_CZ @dirrm %%GOLLEMDIR%%/locale/bg_BG/LC_MESSAGES @dirrm %%GOLLEMDIR%%/locale/bg_BG @dirrm %%GOLLEMDIR%%/locale @dirrm %%GOLLEMDIR%%/lib/MIME/Viewer @dirrm %%GOLLEMDIR%%/lib/MIME @dirrm %%GOLLEMDIR%%/lib/Block @dirrm %%GOLLEMDIR%%/lib/Auth @dirrm %%GOLLEMDIR%%/lib %%PORTDOCS%%@dirrm %%DOCSDIR%% @unexec rmdir %D/%%GOLLEMDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%GOLLEMDIR%% 2>/dev/null || true Property changes on: head/ftp/horde-gollem/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/mail/horde-imp/pkg-deinstall =================================================================== --- head/mail/horde-imp/pkg-deinstall (revision 152846) +++ head/mail/horde-imp/pkg-deinstall (nonexistent) @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup IMP config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls ${PKG_PREFIX}/www/horde/imp/config/*php ${PKG_PREFIX}/www/horde/imp/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/mail/horde-imp/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.3 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/mail/horde-imp/Makefile =================================================================== --- head/mail/horde-imp/Makefile (revision 152846) +++ head/mail/horde-imp/Makefile (revision 152847) @@ -1,247 +1,252 @@ # Ports collection makefile for: imp3 # Date created: Mon Oct 08, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= imp PORTVERSION= 4.0.4 PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/imp/ \ ftp://ftp.planetmirror.com/pub/horde/imp/ \ ftp://ftp.au.horde.org/pub/horde/imp/ \ ftp://ftp.be.horde.org/imp/ \ ftp://ftp.es.horde.org/pub/imp/ \ http://ftp.horde.org/pub/imp/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= A webmail system which accesses mail over IMAP #----------------------------------------------------------------------- # You may define these options: # # - WITHOUT_LDAP : if you do not need OpenLDAP; # # - WITHOUT_SMIME : disable S/MIME; # # - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree; # # - WITHOUT_ASPELL : for spelling bees... # # - WITH_ISPELL : if you prefer ispell; # # - NOCRYPT : if crypto is restricted in your country; # # - WITHOUT_SSL : if you have not installed c-client WITH_SSL; # # - WITH_VALID_CERT : if you own a valid SSL certificate; # # - WITHOUT_INGO : if you don't need filters management; # # - WITHOUT_NAG : if you don't want tasks management; # # - WITHOUT_TURBA : if you do not want adressbooks; # # - WITH_HTML : enable HTML composition mode; # # - WITHOUT_IMAPSERVER : if your IMAP server runs on another machine; # # or you can select to work with one of these servers: # # - WITH_CYRUS-IMAPD : IMP will work with cyrus-imapd; # # - WITH_IMAP-UW : IMP will work with imap-uw; # # - WITH_DOVECOT : IMP will work with dovecot; # # - WITH_COURIER-IMAP : IMP 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 CONFLICTS= imp-3.* USE_PHP= imap .if defined(WITHOUT_TURBA) . if !defined(WITHOUT_LDAP) USE_PHP+= ldap . endif RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde .else RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/turba/minisearch.php:${PORTSDIR}/mail/turba .endif .if !defined(WITHOUT_INGO) RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/ingo/filters.php:${PORTSDIR}/mail/ingo .endif .if !defined(WITHOUT_NAG) RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/nag/data.php:${PORTSDIR}/deskutils/nag .endif .if !defined(WITHOUT_SMIME) USE_PHP+= openssl .endif .if !defined(NOCRYPT) RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg .endif .if !defined(WITHOUT_ASPELL) RUN_DEPENDS+= ${LOCALBASE}/bin/aspell:${PORTSDIR}/textproc/aspell .elif defined(WITH_ISPELL) RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell .endif .if defined(WITH_HTML) RUN_DEPENDS+= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request .endif NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_REINPLACE= yes REINPLACE_ARGS= -i.beforeIMP DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= filter.txt header.txt 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} +PLIST_SUB= IMPDIR=${LIMPDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} +PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= IMPDIR=${IMPDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message - IMPDIR= ${PREFIX}/${LIMPDIR} CONFDIR= ${IMPDIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde - 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 # I have no report about the support of dkimap4 by IMP, # but I shall be happy to add it if someone report success with it. # If an IMAP server is already installed, we just record the dependence, # else we shall install imap-uw. # IMAP servers are ordered according to my tastes, if several are # installed, we just record the first one. .if !defined(WITHOUT_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}/lib/libacap.a) RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd2 . 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 + pre-everything:: .if !defined(WITHOUT_IMAPSERVER) @${ECHO_MSG} "" @${ECHO_MSG} "Press CTRL-C and define WITHOUT_IMAPSERVER" @${ECHO_MSG} "if you intend to run an IMAP server on an other machine." @${ECHO_MSG} "" .endif 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 .elif defined(WITH_ISPELL) @${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/ispell:" \ ${WRKSRC}/config/conf.xml .else @${REINPLACE_CMD} -e "s:%%ASPELL%%::" ${WRKSRC}/config/conf.xml .endif .if !defined(NOCRYPT) @${REINPLACE_CMD} -e "s:%%GPG%%:${LOCALBASE}/bin/gpg:" \ ${WRKSRC}/config/conf.xml .else @${REINPLACE_CMD} -e "s:%%GPG%%::" ${WRKSRC}/config/conf.xml .endif @${REINPLACE_CMD} -e "s:IMP_VERSION:IMP_VERSION . ' / ${SERVOS}':" \ ${WRKSRC}/lib/MIME/Headers.php @${REINPLACE_CMD} -e "s:example.com:${HOSTNAME}:g" \ ${WRKSRC}/config/servers.php.dist .if defined(WITHOUT_SSL) @${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/notls:;s:%%IMAPPORT%%:143:" \ ${WRKSRC}/config/servers.php.dist .else @${REINPLACE_CMD} -e "s:%%IMAPPORT%%:993:" ${WRKSRC}/config/servers.php.dist . if defined(WITH_VALID_CERT) @${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl:" ${WRKSRC}/config/servers.php.dist . else @${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl/novalidate-cert:" \ ${WRKSRC}/config/servers.php.dist . endif .endif @${SED} -e "s:/home/httpd/html/horde/imp:${IMPDIR}:" \ - ${FILESDIR}/httpd.conf.imp > ${WRKDIR}/httpd.conf.imp + ${FILESDIR}/httpd.conf.imp > ${WRKDIR}/httpd-imp.conf .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 \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure c-client with SSL support." ; \ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi .endif do-install: @${MKDIR} ${IMPDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${IMPDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${IMPDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.imp ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-imp.conf ${HORDE_INC} @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IMPDIR} @${CHMOD} -R o-rwx ${CONFDIR} .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for FILE in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} .endfor @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif post-install: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/mail/horde-imp/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.26 \ No newline at end of property +1.27 \ No newline at end of property Index: head/mail/horde-imp/distinfo =================================================================== --- head/mail/horde-imp/distinfo (revision 152846) +++ head/mail/horde-imp/distinfo (revision 152847) @@ -1,2 +1,3 @@ MD5 (imp-h3-4.0.4.tar.gz) = 437767b420c6280e680a42c8e34182d1 +SHA256 (imp-h3-4.0.4.tar.gz) = aa814f8f2bee0912a50df6220c77a60b43d83a52b0bc49dffbd30b63845c08d1 SIZE (imp-h3-4.0.4.tar.gz) = 3349908 Property changes on: head/mail/horde-imp/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/mail/horde-imp/files/pkg-deinstall.in =================================================================== --- head/mail/horde-imp/files/pkg-deinstall.in (nonexistent) +++ head/mail/horde-imp/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Backup IMP config files, if needed. + +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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/mail/horde-imp/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/mail/horde-imp/pkg-plist =================================================================== --- head/mail/horde-imp/pkg-plist (revision 152846) +++ head/mail/horde-imp/pkg-plist (revision 152847) @@ -1,502 +1,502 @@ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%IMPDIR%%/acl.php %%IMPDIR%%/attachment.php %%IMPDIR%%/compose.php %%IMPDIR%%/config/.htaccess %%IMPDIR%%/config/conf.xml %%IMPDIR%%/config/filter.txt %%IMPDIR%%/config/filter.txt.dist %%IMPDIR%%/config/header.txt %%IMPDIR%%/config/header.txt.dist %%IMPDIR%%/config/menu.php %%IMPDIR%%/config/menu.php.dist %%IMPDIR%%/config/mime_drivers.php %%IMPDIR%%/config/mime_drivers.php.dist %%IMPDIR%%/config/motd.php %%IMPDIR%%/config/motd.php.dist %%IMPDIR%%/config/prefs.php %%IMPDIR%%/config/prefs.php.dist %%IMPDIR%%/config/servers.php %%IMPDIR%%/config/servers.php.dist %%IMPDIR%%/config/trailer.txt %%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/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/VFolder.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/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/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/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/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/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%%/scripts/.htaccess %%IMPDIR%%/scripts/Imp.reg %%IMPDIR%%/scripts/custom_login.php %%IMPDIR%%/scripts/singlescript.php %%IMPDIR%%/search.php %%IMPDIR%%/smime.php %%IMPDIR%%/spelling.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/folders/javascript.inc %%IMPDIR%%/templates/javascript/open_compose_win.js %%IMPDIR%%/templates/javascript/open_print_win.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/open_pgp_import.js %%IMPDIR%%/templates/pgp/open_pgp_win.js %%IMPDIR%%/templates/pgp/passphrase.inc %%IMPDIR%%/templates/pgp/pgp.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/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/open_smime_import.js %%IMPDIR%%/templates/smime/open_smime_win.js %%IMPDIR%%/templates/smime/passphrase.inc %%IMPDIR%%/templates/smime/smime.inc %%IMPDIR%%/templates/thread/bottom.inc %%IMPDIR%%/templates/thread/thread.html %%IMPDIR%%/templates/thread/top.inc %%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-blue.png %%IMPDIR%%/themes/graphics/addressbook-red.png %%IMPDIR%%/themes/graphics/apple.png %%IMPDIR%%/themes/graphics/attachment.png %%IMPDIR%%/themes/graphics/compose.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/templates.png %%IMPDIR%%/themes/graphics/folders/trash.png %%IMPDIR%%/themes/graphics/forward.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_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/reply.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/screen.css %%IMPDIR%%/themes/simplex/screen.css %%IMPDIR%%/themes/sun/screen.css %%IMPDIR%%/thread.php %%IMPDIR%%/view.php %%PORTDOCS%%@dirrm %%DOCSDIR%% -etc/horde/httpd.conf.imp +%%HORDE_INC%%/httpd-imp.conf @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 @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/smime @dirrm %%IMPDIR%%/templates/search @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/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/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 @unexec rmdir %D/%%IMPDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%IMPDIR%% 2>/dev/null || true Property changes on: head/mail/horde-imp/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.7 \ No newline at end of property +1.8 \ No newline at end of property Index: head/mail/horde-ingo/pkg-deinstall =================================================================== --- head/mail/horde-ingo/pkg-deinstall (revision 152846) +++ head/mail/horde-ingo/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/ingo/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/mail/horde-ingo/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/mail/horde-ingo/Makefile =================================================================== --- head/mail/horde-ingo/Makefile (revision 152846) +++ head/mail/horde-ingo/Makefile (revision 152847) @@ -1,94 +1,99 @@ # Ports collection makefile for: Ingo # Date created: Dec 3, 2004 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= ingo PORTVERSION= 1.0.2 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/ingo/ \ ftp://ftp.planetmirror.com/pub/horde/ingo/ \ ftp://ftp.au.horde.org/pub/horde/ingo/ \ ftp://ftp.be.horde.org/ingo/ \ ftp://ftp.es.horde.org/pub/ingo/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/ingo/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/ingo/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/ingo/ \ http://ftp.horde.org/pub/ingo/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Horde's email-filter management application #----------------------------------------------------------------------- # You may define this option: # # - WITH_SIEVE : if you run timsieved (with Cyrus). # #----------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes USE_PHP= imap -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= INGODIR=${LINGODIR} +PLIST_SUB= INGODIR=${LINGODIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall +SUB_LIST= INGODIR=${INGODIR} DOCS= LICENSE README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO CONFFILE= backends.php fields.php prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LINGODIR= ${LHORDEDIR}/ingo PEARDIR?= ${LOCALBASE}/share/pear INGODIR= ${PREFIX}/${LINGODIR} CONFDIR= ${INGODIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde - .include .if defined(WITH_SIEVE) || exists(${LOCALBASE}/cyrus/bin/timsieved) RUN_DEPENDS+= ${PEARDIR}/Net/Sieve.php:${PORTSDIR}/net/pear-Net_Sieve .endif +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + pre-configure: @${SED} -e "s:/home/httpd/html/horde/ingo:${INGODIR}:g" \ - ${FILESDIR}/httpd.conf.ingo >${WRKDIR}/httpd.conf.ingo + ${FILESDIR}/httpd.conf.ingo >${WRKDIR}/httpd-ingo.conf do-install: @${MKDIR} ${INGODIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${INGODIR} .endfor @${CP} -p ${WRKSRC}/*.php ${INGODIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${INGODIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.ingo ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-ingo.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: - @${SED} -e "s:%%INGODIR%%:${INGODIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \ - < ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/mail/horde-ingo/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.4 \ No newline at end of property +1.5 \ No newline at end of property Index: head/mail/horde-ingo/distinfo =================================================================== --- head/mail/horde-ingo/distinfo (revision 152846) +++ head/mail/horde-ingo/distinfo (revision 152847) @@ -1,2 +1,3 @@ MD5 (ingo-h3-1.0.2.tar.gz) = 6bc7addfdd3bc18e4d6af5c1d57b7b89 +SHA256 (ingo-h3-1.0.2.tar.gz) = 6bd8d05f986c5b3d58065f7409b9df0912ace8968ed427798497bfd376bb1d29 SIZE (ingo-h3-1.0.2.tar.gz) = 853202 Property changes on: head/mail/horde-ingo/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/mail/horde-ingo/files/pkg-deinstall.in =================================================================== --- head/mail/horde-ingo/files/pkg-deinstall.in (nonexistent) +++ head/mail/horde-ingo/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/mail/horde-ingo/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/mail/horde-ingo/pkg-plist =================================================================== --- head/mail/horde-ingo/pkg-plist (revision 152846) +++ head/mail/horde-ingo/pkg-plist (revision 152847) @@ -1,168 +1,168 @@ -etc/horde/httpd.conf.ingo +%%HORDE_INC%%/httpd-ingo.conf %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%INGODIR%%/blacklist.php %%INGODIR%%/config/.htaccess %%INGODIR%%/config/backends.php %%INGODIR%%/config/backends.php.dist %%INGODIR%%/config/conf.xml %%INGODIR%%/config/fields.php %%INGODIR%%/config/fields.php.dist %%INGODIR%%/config/prefs.php %%INGODIR%%/config/prefs.php.dist %%INGODIR%%/filters.php %%INGODIR%%/forward.php %%INGODIR%%/index.php %%INGODIR%%/lib/Driver.php %%INGODIR%%/lib/Driver/null.php %%INGODIR%%/lib/Driver/timsieved.php %%INGODIR%%/lib/Driver/vfs.php %%INGODIR%%/lib/Ingo.php %%INGODIR%%/lib/Script.php %%INGODIR%%/lib/Script/imap.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/cs_CZ/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/es_ES/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/es_ES/help.xml %%INGODIR%%/locale/fi_FI/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/fi_FI/help.xml %%INGODIR%%/locale/fr_FR/LC_MESSAGES/ingo.mo %%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/ro_RO/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/sv_SE/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/zh_TW/LC_MESSAGES/ingo.mo %%INGODIR%%/po/README %%INGODIR%%/po/cs_CZ.po %%INGODIR%%/po/de_DE.po %%INGODIR%%/po/es_ES.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/ro_RO.po %%INGODIR%%/po/sv_SE.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%%/vacation.php %%INGODIR%%/whitelist.php %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/sv_SE/LC_MESSAGES @dirrm %%INGODIR%%/locale/sv_SE @dirrm %%INGODIR%%/locale/ro_RO/LC_MESSAGES @dirrm %%INGODIR%%/locale/ro_RO @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/es_ES/LC_MESSAGES @dirrm %%INGODIR%%/locale/es_ES @dirrm %%INGODIR%%/locale/en_US @dirrm %%INGODIR%%/locale/de_DE/LC_MESSAGES @dirrm %%INGODIR%%/locale/de_DE @dirrm %%INGODIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%INGODIR%%/locale/cs_CZ @dirrm %%INGODIR%%/locale @dirrm %%INGODIR%%/lib/Storage @dirrm %%INGODIR%%/lib/Script @dirrm %%INGODIR%%/lib/Driver @dirrm %%INGODIR%%/lib @unexec rmdir %D/%%INGODIR%%/config 2>/dev/null || true @unexec rmdir %D/%%INGODIR%% 2>/dev/null || true Property changes on: head/mail/horde-ingo/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/mail/horde-turba/pkg-deinstall =================================================================== --- head/mail/horde-turba/pkg-deinstall (revision 152846) +++ head/mail/horde-turba/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/turba/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/mail/horde-turba/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.3 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/mail/horde-turba/Makefile =================================================================== --- head/mail/horde-turba/Makefile (revision 152846) +++ head/mail/horde-turba/Makefile (revision 152847) @@ -1,106 +1,114 @@ # Ports collection makefile for: turba # Date created: Sat Nov 16, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= turba PORTVERSION= 2.0.5 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/turba/ \ ftp://ftp.planetmirror.com/pub/horde/turba/ \ ftp://ftp.au.horde.org/pub/horde/turba/ \ ftp://ftp.be.horde.org/turba/ \ ftp://ftp.es.horde.org/pub/turba/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/turba/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/turba/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/turba/ \ http://ftp.horde.org/pub/turba/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= The Horde contact management application #----------------------------------------------------------------------- # You may define this option: # # - WITHOUT_LDAP : if you do not need OpenLDAP; # # - WITH_IMSP : run IMSP cyrus-imspd. # #----------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde .if !defined(WITHOUT_LDAP) USE_PHP= ldap .endif NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_REINPLACE= yes REINPLACE_ARGS= -i "" DOCS= README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/LDAP docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= attributes.php menu.php prefs.php sources.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LTURBADIR?= ${LHORDEDIR}/turba -PLIST_SUB= TURBADIR=${LTURBADIR} +PLIST_SUB= TURBADIR=${LTURBADIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= TURBADIR=${TURBADIR} CONFDIR=${CONFDIR} TURBADIR= ${PREFIX}/${LTURBADIR} CONFDIR= ${TURBADIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde +.include .if exists(${LOCALBASE}/sbin/imspd) WITH_IMSP= yes .endif .if defined(WITH_IMSP) RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd .endif +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + pre-configure: @${RM} ${WRKSRC}/config/sources.php.dist.orig @${SED} -e "s:/home/httpd/html/horde/turba:${TURBADIR}:g" \ - ${FILESDIR}/httpd.conf.turba > ${WRKDIR}/httpd.conf.turba + ${FILESDIR}/httpd.conf.turba > ${WRKDIR}/httpd-turba.conf @${REINPLACE_CMD} -e "s:/usr/bin/ldapadd:${LOCALBASE}/bin/ldapadd:" \ ${WRKSRC}/scripts/ldap/addou.pl .if defined(WITH_IMSP) @${REINPLACE_CMD} -e "s://UNCOMMENTIFIMSP ::" ${WRKSRC}/config/sources.php.dist .endif do-install: @${MKDIR} ${TURBADIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${TURBADIR} .endfor @${CP} -p ${WRKSRC}/*.php ${TURBADIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${TURBADIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.turba ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-turba.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: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/mail/horde-turba/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/mail/horde-turba/files/pkg-deinstall.in =================================================================== --- head/mail/horde-turba/files/pkg-deinstall.in (nonexistent) +++ head/mail/horde-turba/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/mail/horde-turba/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/mail/horde-turba/pkg-plist =================================================================== --- head/mail/horde-turba/pkg-plist (revision 152846) +++ head/mail/horde-turba/pkg-plist (revision 152847) @@ -1,261 +1,261 @@ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/LDAP %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%TURBADIR%%/add.php %%TURBADIR%%/browse.php %%TURBADIR%%/config/.htaccess %%TURBADIR%%/config/attributes.php %%TURBADIR%%/config/attributes.php.dist %%TURBADIR%%/config/conf.xml %%TURBADIR%%/config/menu.php %%TURBADIR%%/config/menu.php.dist %%TURBADIR%%/config/prefs.php %%TURBADIR%%/config/prefs.php.dist %%TURBADIR%%/config/sources.php %%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/AbstractObject.php %%TURBADIR%%/lib/Block/minisearch.php %%TURBADIR%%/lib/Driver.php %%TURBADIR%%/lib/Driver/imsp.php %%TURBADIR%%/lib/Driver/kolab.php %%TURBADIR%%/lib/Driver/ldap.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/ObjectView.php %%TURBADIR%%/lib/Renderer.php %%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/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/fi_FI/LC_MESSAGES/turba.mo %%TURBADIR%%/locale/fi_FI/help.xml %%TURBADIR%%/locale/fr_FR/LC_MESSAGES/turba.mo %%TURBADIR%%/locale/gl_ES/LC_MESSAGES/turba.mo %%TURBADIR%%/locale/hu_HU/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/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/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/ldap/addou %%TURBADIR%%/scripts/ldap/addou.pl %%TURBADIR%%/scripts/ldap/core.schema.patch %%TURBADIR%%/scripts/ldap/rfc2739.schema %%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_weddingguests.sql %%TURBADIR%%/scripts/upgrades/1.2_to_2.0.sql %%TURBADIR%%/scripts/upgrades/2004-10-26_create_default_histories.php %%TURBADIR%%/search.php %%TURBADIR%%/templates/.htaccess %%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/search.inc %%TURBADIR%%/templates/browse/search_criteria.inc %%TURBADIR%%/templates/browse/select.inc %%TURBADIR%%/templates/common-header.inc %%TURBADIR%%/templates/data/export.inc %%TURBADIR%%/templates/data/import.inc %%TURBADIR%%/templates/menu.inc %%TURBADIR%%/templates/prefs/columnselect.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/screen.css %%TURBADIR%%/vcard.php -etc/horde/httpd.conf.turba +%%HORDE_INC%%/httpd-turba.conf %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm %%TURBADIR%%/lib/Block @dirrm %%TURBADIR%%/lib/Driver @dirrm %%TURBADIR%%/lib @dirrm %%TURBADIR%%/locale/ar_SY/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ar_SY @dirrm %%TURBADIR%%/locale/bg_BG/LC_MESSAGES @dirrm %%TURBADIR%%/locale/bg_BG @dirrm %%TURBADIR%%/locale/ca_ES/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ca_ES @dirrm %%TURBADIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%TURBADIR%%/locale/cs_CZ @dirrm %%TURBADIR%%/locale/da_DK/LC_MESSAGES @dirrm %%TURBADIR%%/locale/da_DK @dirrm %%TURBADIR%%/locale/de_DE/LC_MESSAGES @dirrm %%TURBADIR%%/locale/de_DE @dirrm %%TURBADIR%%/locale/el_GR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/el_GR @dirrm %%TURBADIR%%/locale/en_US @dirrm %%TURBADIR%%/locale/es_ES/LC_MESSAGES @dirrm %%TURBADIR%%/locale/es_ES @dirrm %%TURBADIR%%/locale/et_EE/LC_MESSAGES @dirrm %%TURBADIR%%/locale/et_EE @dirrm %%TURBADIR%%/locale/fa_IR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/fa_IR @dirrm %%TURBADIR%%/locale/fi_FI/LC_MESSAGES @dirrm %%TURBADIR%%/locale/fi_FI @dirrm %%TURBADIR%%/locale/fr_FR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/fr_FR @dirrm %%TURBADIR%%/locale/gl_ES/LC_MESSAGES @dirrm %%TURBADIR%%/locale/gl_ES @dirrm %%TURBADIR%%/locale/hu_HU/LC_MESSAGES @dirrm %%TURBADIR%%/locale/hu_HU @dirrm %%TURBADIR%%/locale/it_IT/LC_MESSAGES @dirrm %%TURBADIR%%/locale/it_IT @dirrm %%TURBADIR%%/locale/ja_JP/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ja_JP @dirrm %%TURBADIR%%/locale/ko_KR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ko_KR @dirrm %%TURBADIR%%/locale/lt_LT/LC_MESSAGES @dirrm %%TURBADIR%%/locale/lt_LT @dirrm %%TURBADIR%%/locale/lv_LV/LC_MESSAGES @dirrm %%TURBADIR%%/locale/lv_LV @dirrm %%TURBADIR%%/locale/mk_MK/LC_MESSAGES @dirrm %%TURBADIR%%/locale/mk_MK @dirrm %%TURBADIR%%/locale/nb_NO/LC_MESSAGES @dirrm %%TURBADIR%%/locale/nb_NO @dirrm %%TURBADIR%%/locale/nl_NL/LC_MESSAGES @dirrm %%TURBADIR%%/locale/nl_NL @dirrm %%TURBADIR%%/locale/nn_NO/LC_MESSAGES @dirrm %%TURBADIR%%/locale/nn_NO @dirrm %%TURBADIR%%/locale/pl_PL/LC_MESSAGES @dirrm %%TURBADIR%%/locale/pl_PL @dirrm %%TURBADIR%%/locale/pt_BR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/pt_BR @dirrm %%TURBADIR%%/locale/pt_PT/LC_MESSAGES @dirrm %%TURBADIR%%/locale/pt_PT @dirrm %%TURBADIR%%/locale/ro_RO/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ro_RO @dirrm %%TURBADIR%%/locale/ru_RU/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ru_RU @dirrm %%TURBADIR%%/locale/sk_SK/LC_MESSAGES @dirrm %%TURBADIR%%/locale/sk_SK @dirrm %%TURBADIR%%/locale/sl_SI/LC_MESSAGES @dirrm %%TURBADIR%%/locale/sl_SI @dirrm %%TURBADIR%%/locale/sv_SE/LC_MESSAGES @dirrm %%TURBADIR%%/locale/sv_SE @dirrm %%TURBADIR%%/locale/tr_TR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/tr_TR @dirrm %%TURBADIR%%/locale/uk_UA/LC_MESSAGES @dirrm %%TURBADIR%%/locale/uk_UA @dirrm %%TURBADIR%%/locale/zh_CN/LC_MESSAGES @dirrm %%TURBADIR%%/locale/zh_CN @dirrm %%TURBADIR%%/locale/zh_TW/LC_MESSAGES @dirrm %%TURBADIR%%/locale/zh_TW @dirrm %%TURBADIR%%/locale @dirrm %%TURBADIR%%/po @dirrm %%TURBADIR%%/scripts/ldap @dirrm %%TURBADIR%%/scripts/sql @dirrm %%TURBADIR%%/scripts/upgrades @dirrm %%TURBADIR%%/scripts @dirrm %%TURBADIR%%/templates/block @dirrm %%TURBADIR%%/templates/browse @dirrm %%TURBADIR%%/templates/data @dirrm %%TURBADIR%%/templates/prefs @dirrm %%TURBADIR%%/templates @dirrm %%TURBADIR%%/themes/graphics/menu @dirrm %%TURBADIR%%/themes/graphics @dirrm %%TURBADIR%%/themes @unexec rmdir %D/%%TURBADIR%%/config 2>/dev/null || true @unexec rmdir %D/%%TURBADIR%% 2>/dev/null || true Property changes on: head/mail/horde-turba/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/mail/horde4-imp/pkg-deinstall =================================================================== --- head/mail/horde4-imp/pkg-deinstall (revision 152846) +++ head/mail/horde4-imp/pkg-deinstall (nonexistent) @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup IMP config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls ${PKG_PREFIX}/www/horde/imp/config/*php ${PKG_PREFIX}/www/horde/imp/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/mail/horde4-imp/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.3 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/mail/horde4-imp/Makefile =================================================================== --- head/mail/horde4-imp/Makefile (revision 152846) +++ head/mail/horde4-imp/Makefile (revision 152847) @@ -1,247 +1,252 @@ # Ports collection makefile for: imp3 # Date created: Mon Oct 08, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= imp PORTVERSION= 4.0.4 PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/imp/ \ ftp://ftp.planetmirror.com/pub/horde/imp/ \ ftp://ftp.au.horde.org/pub/horde/imp/ \ ftp://ftp.be.horde.org/imp/ \ ftp://ftp.es.horde.org/pub/imp/ \ http://ftp.horde.org/pub/imp/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= A webmail system which accesses mail over IMAP #----------------------------------------------------------------------- # You may define these options: # # - WITHOUT_LDAP : if you do not need OpenLDAP; # # - WITHOUT_SMIME : disable S/MIME; # # - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree; # # - WITHOUT_ASPELL : for spelling bees... # # - WITH_ISPELL : if you prefer ispell; # # - NOCRYPT : if crypto is restricted in your country; # # - WITHOUT_SSL : if you have not installed c-client WITH_SSL; # # - WITH_VALID_CERT : if you own a valid SSL certificate; # # - WITHOUT_INGO : if you don't need filters management; # # - WITHOUT_NAG : if you don't want tasks management; # # - WITHOUT_TURBA : if you do not want adressbooks; # # - WITH_HTML : enable HTML composition mode; # # - WITHOUT_IMAPSERVER : if your IMAP server runs on another machine; # # or you can select to work with one of these servers: # # - WITH_CYRUS-IMAPD : IMP will work with cyrus-imapd; # # - WITH_IMAP-UW : IMP will work with imap-uw; # # - WITH_DOVECOT : IMP will work with dovecot; # # - WITH_COURIER-IMAP : IMP 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 CONFLICTS= imp-3.* USE_PHP= imap .if defined(WITHOUT_TURBA) . if !defined(WITHOUT_LDAP) USE_PHP+= ldap . endif RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde .else RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/turba/minisearch.php:${PORTSDIR}/mail/turba .endif .if !defined(WITHOUT_INGO) RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/ingo/filters.php:${PORTSDIR}/mail/ingo .endif .if !defined(WITHOUT_NAG) RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/nag/data.php:${PORTSDIR}/deskutils/nag .endif .if !defined(WITHOUT_SMIME) USE_PHP+= openssl .endif .if !defined(NOCRYPT) RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg .endif .if !defined(WITHOUT_ASPELL) RUN_DEPENDS+= ${LOCALBASE}/bin/aspell:${PORTSDIR}/textproc/aspell .elif defined(WITH_ISPELL) RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell .endif .if defined(WITH_HTML) RUN_DEPENDS+= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request .endif NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_REINPLACE= yes REINPLACE_ARGS= -i.beforeIMP DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= filter.txt header.txt 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} +PLIST_SUB= IMPDIR=${LIMPDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} +PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= IMPDIR=${IMPDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message - IMPDIR= ${PREFIX}/${LIMPDIR} CONFDIR= ${IMPDIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde - 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 # I have no report about the support of dkimap4 by IMP, # but I shall be happy to add it if someone report success with it. # If an IMAP server is already installed, we just record the dependence, # else we shall install imap-uw. # IMAP servers are ordered according to my tastes, if several are # installed, we just record the first one. .if !defined(WITHOUT_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}/lib/libacap.a) RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd2 . 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 + pre-everything:: .if !defined(WITHOUT_IMAPSERVER) @${ECHO_MSG} "" @${ECHO_MSG} "Press CTRL-C and define WITHOUT_IMAPSERVER" @${ECHO_MSG} "if you intend to run an IMAP server on an other machine." @${ECHO_MSG} "" .endif 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 .elif defined(WITH_ISPELL) @${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/ispell:" \ ${WRKSRC}/config/conf.xml .else @${REINPLACE_CMD} -e "s:%%ASPELL%%::" ${WRKSRC}/config/conf.xml .endif .if !defined(NOCRYPT) @${REINPLACE_CMD} -e "s:%%GPG%%:${LOCALBASE}/bin/gpg:" \ ${WRKSRC}/config/conf.xml .else @${REINPLACE_CMD} -e "s:%%GPG%%::" ${WRKSRC}/config/conf.xml .endif @${REINPLACE_CMD} -e "s:IMP_VERSION:IMP_VERSION . ' / ${SERVOS}':" \ ${WRKSRC}/lib/MIME/Headers.php @${REINPLACE_CMD} -e "s:example.com:${HOSTNAME}:g" \ ${WRKSRC}/config/servers.php.dist .if defined(WITHOUT_SSL) @${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/notls:;s:%%IMAPPORT%%:143:" \ ${WRKSRC}/config/servers.php.dist .else @${REINPLACE_CMD} -e "s:%%IMAPPORT%%:993:" ${WRKSRC}/config/servers.php.dist . if defined(WITH_VALID_CERT) @${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl:" ${WRKSRC}/config/servers.php.dist . else @${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl/novalidate-cert:" \ ${WRKSRC}/config/servers.php.dist . endif .endif @${SED} -e "s:/home/httpd/html/horde/imp:${IMPDIR}:" \ - ${FILESDIR}/httpd.conf.imp > ${WRKDIR}/httpd.conf.imp + ${FILESDIR}/httpd.conf.imp > ${WRKDIR}/httpd-imp.conf .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 \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure c-client with SSL support." ; \ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi .endif do-install: @${MKDIR} ${IMPDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${IMPDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${IMPDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.imp ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-imp.conf ${HORDE_INC} @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IMPDIR} @${CHMOD} -R o-rwx ${CONFDIR} .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for FILE in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} .endfor @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif post-install: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/mail/horde4-imp/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.26 \ No newline at end of property +1.27 \ No newline at end of property Index: head/mail/horde4-imp/distinfo =================================================================== --- head/mail/horde4-imp/distinfo (revision 152846) +++ head/mail/horde4-imp/distinfo (revision 152847) @@ -1,2 +1,3 @@ MD5 (imp-h3-4.0.4.tar.gz) = 437767b420c6280e680a42c8e34182d1 +SHA256 (imp-h3-4.0.4.tar.gz) = aa814f8f2bee0912a50df6220c77a60b43d83a52b0bc49dffbd30b63845c08d1 SIZE (imp-h3-4.0.4.tar.gz) = 3349908 Property changes on: head/mail/horde4-imp/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/mail/horde4-imp/files/pkg-deinstall.in =================================================================== --- head/mail/horde4-imp/files/pkg-deinstall.in (nonexistent) +++ head/mail/horde4-imp/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Backup IMP config files, if needed. + +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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/mail/horde4-imp/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/mail/horde4-imp/pkg-plist =================================================================== --- head/mail/horde4-imp/pkg-plist (revision 152846) +++ head/mail/horde4-imp/pkg-plist (revision 152847) @@ -1,502 +1,502 @@ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%IMPDIR%%/acl.php %%IMPDIR%%/attachment.php %%IMPDIR%%/compose.php %%IMPDIR%%/config/.htaccess %%IMPDIR%%/config/conf.xml %%IMPDIR%%/config/filter.txt %%IMPDIR%%/config/filter.txt.dist %%IMPDIR%%/config/header.txt %%IMPDIR%%/config/header.txt.dist %%IMPDIR%%/config/menu.php %%IMPDIR%%/config/menu.php.dist %%IMPDIR%%/config/mime_drivers.php %%IMPDIR%%/config/mime_drivers.php.dist %%IMPDIR%%/config/motd.php %%IMPDIR%%/config/motd.php.dist %%IMPDIR%%/config/prefs.php %%IMPDIR%%/config/prefs.php.dist %%IMPDIR%%/config/servers.php %%IMPDIR%%/config/servers.php.dist %%IMPDIR%%/config/trailer.txt %%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/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/VFolder.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/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/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/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/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/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%%/scripts/.htaccess %%IMPDIR%%/scripts/Imp.reg %%IMPDIR%%/scripts/custom_login.php %%IMPDIR%%/scripts/singlescript.php %%IMPDIR%%/search.php %%IMPDIR%%/smime.php %%IMPDIR%%/spelling.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/folders/javascript.inc %%IMPDIR%%/templates/javascript/open_compose_win.js %%IMPDIR%%/templates/javascript/open_print_win.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/open_pgp_import.js %%IMPDIR%%/templates/pgp/open_pgp_win.js %%IMPDIR%%/templates/pgp/passphrase.inc %%IMPDIR%%/templates/pgp/pgp.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/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/open_smime_import.js %%IMPDIR%%/templates/smime/open_smime_win.js %%IMPDIR%%/templates/smime/passphrase.inc %%IMPDIR%%/templates/smime/smime.inc %%IMPDIR%%/templates/thread/bottom.inc %%IMPDIR%%/templates/thread/thread.html %%IMPDIR%%/templates/thread/top.inc %%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-blue.png %%IMPDIR%%/themes/graphics/addressbook-red.png %%IMPDIR%%/themes/graphics/apple.png %%IMPDIR%%/themes/graphics/attachment.png %%IMPDIR%%/themes/graphics/compose.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/templates.png %%IMPDIR%%/themes/graphics/folders/trash.png %%IMPDIR%%/themes/graphics/forward.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_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/reply.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/screen.css %%IMPDIR%%/themes/simplex/screen.css %%IMPDIR%%/themes/sun/screen.css %%IMPDIR%%/thread.php %%IMPDIR%%/view.php %%PORTDOCS%%@dirrm %%DOCSDIR%% -etc/horde/httpd.conf.imp +%%HORDE_INC%%/httpd-imp.conf @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 @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/smime @dirrm %%IMPDIR%%/templates/search @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/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/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 @unexec rmdir %D/%%IMPDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%IMPDIR%% 2>/dev/null || true Property changes on: head/mail/horde4-imp/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.7 \ No newline at end of property +1.8 \ No newline at end of property Index: head/mail/horde4-ingo/pkg-deinstall =================================================================== --- head/mail/horde4-ingo/pkg-deinstall (revision 152846) +++ head/mail/horde4-ingo/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/ingo/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/mail/horde4-ingo/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/mail/horde4-ingo/Makefile =================================================================== --- head/mail/horde4-ingo/Makefile (revision 152846) +++ head/mail/horde4-ingo/Makefile (revision 152847) @@ -1,94 +1,99 @@ # Ports collection makefile for: Ingo # Date created: Dec 3, 2004 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= ingo PORTVERSION= 1.0.2 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/ingo/ \ ftp://ftp.planetmirror.com/pub/horde/ingo/ \ ftp://ftp.au.horde.org/pub/horde/ingo/ \ ftp://ftp.be.horde.org/ingo/ \ ftp://ftp.es.horde.org/pub/ingo/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/ingo/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/ingo/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/ingo/ \ http://ftp.horde.org/pub/ingo/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Horde's email-filter management application #----------------------------------------------------------------------- # You may define this option: # # - WITH_SIEVE : if you run timsieved (with Cyrus). # #----------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes USE_PHP= imap -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= INGODIR=${LINGODIR} +PLIST_SUB= INGODIR=${LINGODIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall +SUB_LIST= INGODIR=${INGODIR} DOCS= LICENSE README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO CONFFILE= backends.php fields.php prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LINGODIR= ${LHORDEDIR}/ingo PEARDIR?= ${LOCALBASE}/share/pear INGODIR= ${PREFIX}/${LINGODIR} CONFDIR= ${INGODIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde - .include .if defined(WITH_SIEVE) || exists(${LOCALBASE}/cyrus/bin/timsieved) RUN_DEPENDS+= ${PEARDIR}/Net/Sieve.php:${PORTSDIR}/net/pear-Net_Sieve .endif +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + pre-configure: @${SED} -e "s:/home/httpd/html/horde/ingo:${INGODIR}:g" \ - ${FILESDIR}/httpd.conf.ingo >${WRKDIR}/httpd.conf.ingo + ${FILESDIR}/httpd.conf.ingo >${WRKDIR}/httpd-ingo.conf do-install: @${MKDIR} ${INGODIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${INGODIR} .endfor @${CP} -p ${WRKSRC}/*.php ${INGODIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${INGODIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.ingo ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-ingo.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: - @${SED} -e "s:%%INGODIR%%:${INGODIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \ - < ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/mail/horde4-ingo/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.4 \ No newline at end of property +1.5 \ No newline at end of property Index: head/mail/horde4-ingo/distinfo =================================================================== --- head/mail/horde4-ingo/distinfo (revision 152846) +++ head/mail/horde4-ingo/distinfo (revision 152847) @@ -1,2 +1,3 @@ MD5 (ingo-h3-1.0.2.tar.gz) = 6bc7addfdd3bc18e4d6af5c1d57b7b89 +SHA256 (ingo-h3-1.0.2.tar.gz) = 6bd8d05f986c5b3d58065f7409b9df0912ace8968ed427798497bfd376bb1d29 SIZE (ingo-h3-1.0.2.tar.gz) = 853202 Property changes on: head/mail/horde4-ingo/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/mail/horde4-ingo/files/pkg-deinstall.in =================================================================== --- head/mail/horde4-ingo/files/pkg-deinstall.in (nonexistent) +++ head/mail/horde4-ingo/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/mail/horde4-ingo/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/mail/horde4-ingo/pkg-plist =================================================================== --- head/mail/horde4-ingo/pkg-plist (revision 152846) +++ head/mail/horde4-ingo/pkg-plist (revision 152847) @@ -1,168 +1,168 @@ -etc/horde/httpd.conf.ingo +%%HORDE_INC%%/httpd-ingo.conf %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%INGODIR%%/blacklist.php %%INGODIR%%/config/.htaccess %%INGODIR%%/config/backends.php %%INGODIR%%/config/backends.php.dist %%INGODIR%%/config/conf.xml %%INGODIR%%/config/fields.php %%INGODIR%%/config/fields.php.dist %%INGODIR%%/config/prefs.php %%INGODIR%%/config/prefs.php.dist %%INGODIR%%/filters.php %%INGODIR%%/forward.php %%INGODIR%%/index.php %%INGODIR%%/lib/Driver.php %%INGODIR%%/lib/Driver/null.php %%INGODIR%%/lib/Driver/timsieved.php %%INGODIR%%/lib/Driver/vfs.php %%INGODIR%%/lib/Ingo.php %%INGODIR%%/lib/Script.php %%INGODIR%%/lib/Script/imap.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/cs_CZ/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/es_ES/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/es_ES/help.xml %%INGODIR%%/locale/fi_FI/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/fi_FI/help.xml %%INGODIR%%/locale/fr_FR/LC_MESSAGES/ingo.mo %%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/ro_RO/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/sv_SE/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/zh_TW/LC_MESSAGES/ingo.mo %%INGODIR%%/po/README %%INGODIR%%/po/cs_CZ.po %%INGODIR%%/po/de_DE.po %%INGODIR%%/po/es_ES.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/ro_RO.po %%INGODIR%%/po/sv_SE.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%%/vacation.php %%INGODIR%%/whitelist.php %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/sv_SE/LC_MESSAGES @dirrm %%INGODIR%%/locale/sv_SE @dirrm %%INGODIR%%/locale/ro_RO/LC_MESSAGES @dirrm %%INGODIR%%/locale/ro_RO @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/es_ES/LC_MESSAGES @dirrm %%INGODIR%%/locale/es_ES @dirrm %%INGODIR%%/locale/en_US @dirrm %%INGODIR%%/locale/de_DE/LC_MESSAGES @dirrm %%INGODIR%%/locale/de_DE @dirrm %%INGODIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%INGODIR%%/locale/cs_CZ @dirrm %%INGODIR%%/locale @dirrm %%INGODIR%%/lib/Storage @dirrm %%INGODIR%%/lib/Script @dirrm %%INGODIR%%/lib/Driver @dirrm %%INGODIR%%/lib @unexec rmdir %D/%%INGODIR%%/config 2>/dev/null || true @unexec rmdir %D/%%INGODIR%% 2>/dev/null || true Property changes on: head/mail/horde4-ingo/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/mail/horde4-turba/pkg-deinstall =================================================================== --- head/mail/horde4-turba/pkg-deinstall (revision 152846) +++ head/mail/horde4-turba/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/turba/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/mail/horde4-turba/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.3 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/mail/horde4-turba/Makefile =================================================================== --- head/mail/horde4-turba/Makefile (revision 152846) +++ head/mail/horde4-turba/Makefile (revision 152847) @@ -1,106 +1,114 @@ # Ports collection makefile for: turba # Date created: Sat Nov 16, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= turba PORTVERSION= 2.0.5 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/turba/ \ ftp://ftp.planetmirror.com/pub/horde/turba/ \ ftp://ftp.au.horde.org/pub/horde/turba/ \ ftp://ftp.be.horde.org/turba/ \ ftp://ftp.es.horde.org/pub/turba/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/turba/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/turba/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/turba/ \ http://ftp.horde.org/pub/turba/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= The Horde contact management application #----------------------------------------------------------------------- # You may define this option: # # - WITHOUT_LDAP : if you do not need OpenLDAP; # # - WITH_IMSP : run IMSP cyrus-imspd. # #----------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde .if !defined(WITHOUT_LDAP) USE_PHP= ldap .endif NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_REINPLACE= yes REINPLACE_ARGS= -i "" DOCS= README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/LDAP docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= attributes.php menu.php prefs.php sources.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LTURBADIR?= ${LHORDEDIR}/turba -PLIST_SUB= TURBADIR=${LTURBADIR} +PLIST_SUB= TURBADIR=${LTURBADIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= TURBADIR=${TURBADIR} CONFDIR=${CONFDIR} TURBADIR= ${PREFIX}/${LTURBADIR} CONFDIR= ${TURBADIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde +.include .if exists(${LOCALBASE}/sbin/imspd) WITH_IMSP= yes .endif .if defined(WITH_IMSP) RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd .endif +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + pre-configure: @${RM} ${WRKSRC}/config/sources.php.dist.orig @${SED} -e "s:/home/httpd/html/horde/turba:${TURBADIR}:g" \ - ${FILESDIR}/httpd.conf.turba > ${WRKDIR}/httpd.conf.turba + ${FILESDIR}/httpd.conf.turba > ${WRKDIR}/httpd-turba.conf @${REINPLACE_CMD} -e "s:/usr/bin/ldapadd:${LOCALBASE}/bin/ldapadd:" \ ${WRKSRC}/scripts/ldap/addou.pl .if defined(WITH_IMSP) @${REINPLACE_CMD} -e "s://UNCOMMENTIFIMSP ::" ${WRKSRC}/config/sources.php.dist .endif do-install: @${MKDIR} ${TURBADIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${TURBADIR} .endfor @${CP} -p ${WRKSRC}/*.php ${TURBADIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${TURBADIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.turba ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-turba.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: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/mail/horde4-turba/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/mail/horde4-turba/files/pkg-deinstall.in =================================================================== --- head/mail/horde4-turba/files/pkg-deinstall.in (nonexistent) +++ head/mail/horde4-turba/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/mail/horde4-turba/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/mail/horde4-turba/pkg-plist =================================================================== --- head/mail/horde4-turba/pkg-plist (revision 152846) +++ head/mail/horde4-turba/pkg-plist (revision 152847) @@ -1,261 +1,261 @@ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/LDAP %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%TURBADIR%%/add.php %%TURBADIR%%/browse.php %%TURBADIR%%/config/.htaccess %%TURBADIR%%/config/attributes.php %%TURBADIR%%/config/attributes.php.dist %%TURBADIR%%/config/conf.xml %%TURBADIR%%/config/menu.php %%TURBADIR%%/config/menu.php.dist %%TURBADIR%%/config/prefs.php %%TURBADIR%%/config/prefs.php.dist %%TURBADIR%%/config/sources.php %%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/AbstractObject.php %%TURBADIR%%/lib/Block/minisearch.php %%TURBADIR%%/lib/Driver.php %%TURBADIR%%/lib/Driver/imsp.php %%TURBADIR%%/lib/Driver/kolab.php %%TURBADIR%%/lib/Driver/ldap.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/ObjectView.php %%TURBADIR%%/lib/Renderer.php %%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/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/fi_FI/LC_MESSAGES/turba.mo %%TURBADIR%%/locale/fi_FI/help.xml %%TURBADIR%%/locale/fr_FR/LC_MESSAGES/turba.mo %%TURBADIR%%/locale/gl_ES/LC_MESSAGES/turba.mo %%TURBADIR%%/locale/hu_HU/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/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/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/ldap/addou %%TURBADIR%%/scripts/ldap/addou.pl %%TURBADIR%%/scripts/ldap/core.schema.patch %%TURBADIR%%/scripts/ldap/rfc2739.schema %%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_weddingguests.sql %%TURBADIR%%/scripts/upgrades/1.2_to_2.0.sql %%TURBADIR%%/scripts/upgrades/2004-10-26_create_default_histories.php %%TURBADIR%%/search.php %%TURBADIR%%/templates/.htaccess %%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/search.inc %%TURBADIR%%/templates/browse/search_criteria.inc %%TURBADIR%%/templates/browse/select.inc %%TURBADIR%%/templates/common-header.inc %%TURBADIR%%/templates/data/export.inc %%TURBADIR%%/templates/data/import.inc %%TURBADIR%%/templates/menu.inc %%TURBADIR%%/templates/prefs/columnselect.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/screen.css %%TURBADIR%%/vcard.php -etc/horde/httpd.conf.turba +%%HORDE_INC%%/httpd-turba.conf %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm %%TURBADIR%%/lib/Block @dirrm %%TURBADIR%%/lib/Driver @dirrm %%TURBADIR%%/lib @dirrm %%TURBADIR%%/locale/ar_SY/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ar_SY @dirrm %%TURBADIR%%/locale/bg_BG/LC_MESSAGES @dirrm %%TURBADIR%%/locale/bg_BG @dirrm %%TURBADIR%%/locale/ca_ES/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ca_ES @dirrm %%TURBADIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%TURBADIR%%/locale/cs_CZ @dirrm %%TURBADIR%%/locale/da_DK/LC_MESSAGES @dirrm %%TURBADIR%%/locale/da_DK @dirrm %%TURBADIR%%/locale/de_DE/LC_MESSAGES @dirrm %%TURBADIR%%/locale/de_DE @dirrm %%TURBADIR%%/locale/el_GR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/el_GR @dirrm %%TURBADIR%%/locale/en_US @dirrm %%TURBADIR%%/locale/es_ES/LC_MESSAGES @dirrm %%TURBADIR%%/locale/es_ES @dirrm %%TURBADIR%%/locale/et_EE/LC_MESSAGES @dirrm %%TURBADIR%%/locale/et_EE @dirrm %%TURBADIR%%/locale/fa_IR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/fa_IR @dirrm %%TURBADIR%%/locale/fi_FI/LC_MESSAGES @dirrm %%TURBADIR%%/locale/fi_FI @dirrm %%TURBADIR%%/locale/fr_FR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/fr_FR @dirrm %%TURBADIR%%/locale/gl_ES/LC_MESSAGES @dirrm %%TURBADIR%%/locale/gl_ES @dirrm %%TURBADIR%%/locale/hu_HU/LC_MESSAGES @dirrm %%TURBADIR%%/locale/hu_HU @dirrm %%TURBADIR%%/locale/it_IT/LC_MESSAGES @dirrm %%TURBADIR%%/locale/it_IT @dirrm %%TURBADIR%%/locale/ja_JP/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ja_JP @dirrm %%TURBADIR%%/locale/ko_KR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ko_KR @dirrm %%TURBADIR%%/locale/lt_LT/LC_MESSAGES @dirrm %%TURBADIR%%/locale/lt_LT @dirrm %%TURBADIR%%/locale/lv_LV/LC_MESSAGES @dirrm %%TURBADIR%%/locale/lv_LV @dirrm %%TURBADIR%%/locale/mk_MK/LC_MESSAGES @dirrm %%TURBADIR%%/locale/mk_MK @dirrm %%TURBADIR%%/locale/nb_NO/LC_MESSAGES @dirrm %%TURBADIR%%/locale/nb_NO @dirrm %%TURBADIR%%/locale/nl_NL/LC_MESSAGES @dirrm %%TURBADIR%%/locale/nl_NL @dirrm %%TURBADIR%%/locale/nn_NO/LC_MESSAGES @dirrm %%TURBADIR%%/locale/nn_NO @dirrm %%TURBADIR%%/locale/pl_PL/LC_MESSAGES @dirrm %%TURBADIR%%/locale/pl_PL @dirrm %%TURBADIR%%/locale/pt_BR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/pt_BR @dirrm %%TURBADIR%%/locale/pt_PT/LC_MESSAGES @dirrm %%TURBADIR%%/locale/pt_PT @dirrm %%TURBADIR%%/locale/ro_RO/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ro_RO @dirrm %%TURBADIR%%/locale/ru_RU/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ru_RU @dirrm %%TURBADIR%%/locale/sk_SK/LC_MESSAGES @dirrm %%TURBADIR%%/locale/sk_SK @dirrm %%TURBADIR%%/locale/sl_SI/LC_MESSAGES @dirrm %%TURBADIR%%/locale/sl_SI @dirrm %%TURBADIR%%/locale/sv_SE/LC_MESSAGES @dirrm %%TURBADIR%%/locale/sv_SE @dirrm %%TURBADIR%%/locale/tr_TR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/tr_TR @dirrm %%TURBADIR%%/locale/uk_UA/LC_MESSAGES @dirrm %%TURBADIR%%/locale/uk_UA @dirrm %%TURBADIR%%/locale/zh_CN/LC_MESSAGES @dirrm %%TURBADIR%%/locale/zh_CN @dirrm %%TURBADIR%%/locale/zh_TW/LC_MESSAGES @dirrm %%TURBADIR%%/locale/zh_TW @dirrm %%TURBADIR%%/locale @dirrm %%TURBADIR%%/po @dirrm %%TURBADIR%%/scripts/ldap @dirrm %%TURBADIR%%/scripts/sql @dirrm %%TURBADIR%%/scripts/upgrades @dirrm %%TURBADIR%%/scripts @dirrm %%TURBADIR%%/templates/block @dirrm %%TURBADIR%%/templates/browse @dirrm %%TURBADIR%%/templates/data @dirrm %%TURBADIR%%/templates/prefs @dirrm %%TURBADIR%%/templates @dirrm %%TURBADIR%%/themes/graphics/menu @dirrm %%TURBADIR%%/themes/graphics @dirrm %%TURBADIR%%/themes @unexec rmdir %D/%%TURBADIR%%/config 2>/dev/null || true @unexec rmdir %D/%%TURBADIR%% 2>/dev/null || true Property changes on: head/mail/horde4-turba/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/mail/imp/pkg-deinstall =================================================================== --- head/mail/imp/pkg-deinstall (revision 152846) +++ head/mail/imp/pkg-deinstall (nonexistent) @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup IMP config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls ${PKG_PREFIX}/www/horde/imp/config/*php ${PKG_PREFIX}/www/horde/imp/config/*txt`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/mail/imp/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.3 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/mail/imp/Makefile =================================================================== --- head/mail/imp/Makefile (revision 152846) +++ head/mail/imp/Makefile (revision 152847) @@ -1,247 +1,252 @@ # Ports collection makefile for: imp3 # Date created: Mon Oct 08, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= imp PORTVERSION= 4.0.4 PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/imp/ \ ftp://ftp.planetmirror.com/pub/horde/imp/ \ ftp://ftp.au.horde.org/pub/horde/imp/ \ ftp://ftp.be.horde.org/imp/ \ ftp://ftp.es.horde.org/pub/imp/ \ http://ftp.horde.org/pub/imp/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= A webmail system which accesses mail over IMAP #----------------------------------------------------------------------- # You may define these options: # # - WITHOUT_LDAP : if you do not need OpenLDAP; # # - WITHOUT_SMIME : disable S/MIME; # # - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree; # # - WITHOUT_ASPELL : for spelling bees... # # - WITH_ISPELL : if you prefer ispell; # # - NOCRYPT : if crypto is restricted in your country; # # - WITHOUT_SSL : if you have not installed c-client WITH_SSL; # # - WITH_VALID_CERT : if you own a valid SSL certificate; # # - WITHOUT_INGO : if you don't need filters management; # # - WITHOUT_NAG : if you don't want tasks management; # # - WITHOUT_TURBA : if you do not want adressbooks; # # - WITH_HTML : enable HTML composition mode; # # - WITHOUT_IMAPSERVER : if your IMAP server runs on another machine; # # or you can select to work with one of these servers: # # - WITH_CYRUS-IMAPD : IMP will work with cyrus-imapd; # # - WITH_IMAP-UW : IMP will work with imap-uw; # # - WITH_DOVECOT : IMP will work with dovecot; # # - WITH_COURIER-IMAP : IMP 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 CONFLICTS= imp-3.* USE_PHP= imap .if defined(WITHOUT_TURBA) . if !defined(WITHOUT_LDAP) USE_PHP+= ldap . endif RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde .else RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/turba/minisearch.php:${PORTSDIR}/mail/turba .endif .if !defined(WITHOUT_INGO) RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/ingo/filters.php:${PORTSDIR}/mail/ingo .endif .if !defined(WITHOUT_NAG) RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/nag/data.php:${PORTSDIR}/deskutils/nag .endif .if !defined(WITHOUT_SMIME) USE_PHP+= openssl .endif .if !defined(NOCRYPT) RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg .endif .if !defined(WITHOUT_ASPELL) RUN_DEPENDS+= ${LOCALBASE}/bin/aspell:${PORTSDIR}/textproc/aspell .elif defined(WITH_ISPELL) RUN_DEPENDS+= ${LOCALBASE}/bin/ispell:${PORTSDIR}/textproc/ispell .endif .if defined(WITH_HTML) RUN_DEPENDS+= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request .endif NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_REINPLACE= yes REINPLACE_ARGS= -i.beforeIMP DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= filter.txt header.txt 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} +PLIST_SUB= IMPDIR=${LIMPDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} +PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= IMPDIR=${IMPDIR} PORTSDIR=${PORTSDIR} CONFDIR=${CONFDIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message - IMPDIR= ${PREFIX}/${LIMPDIR} CONFDIR= ${IMPDIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde - 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 # I have no report about the support of dkimap4 by IMP, # but I shall be happy to add it if someone report success with it. # If an IMAP server is already installed, we just record the dependence, # else we shall install imap-uw. # IMAP servers are ordered according to my tastes, if several are # installed, we just record the first one. .if !defined(WITHOUT_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}/lib/libacap.a) RUN_DEPENDS+= ${LOCALBASE}/lib/libacap.a:${PORTSDIR}/mail/cyrus-imapd2 . 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 + pre-everything:: .if !defined(WITHOUT_IMAPSERVER) @${ECHO_MSG} "" @${ECHO_MSG} "Press CTRL-C and define WITHOUT_IMAPSERVER" @${ECHO_MSG} "if you intend to run an IMAP server on an other machine." @${ECHO_MSG} "" .endif 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 .elif defined(WITH_ISPELL) @${REINPLACE_CMD} -e "s:%%ASPELL%%:${LOCALBASE}/bin/ispell:" \ ${WRKSRC}/config/conf.xml .else @${REINPLACE_CMD} -e "s:%%ASPELL%%::" ${WRKSRC}/config/conf.xml .endif .if !defined(NOCRYPT) @${REINPLACE_CMD} -e "s:%%GPG%%:${LOCALBASE}/bin/gpg:" \ ${WRKSRC}/config/conf.xml .else @${REINPLACE_CMD} -e "s:%%GPG%%::" ${WRKSRC}/config/conf.xml .endif @${REINPLACE_CMD} -e "s:IMP_VERSION:IMP_VERSION . ' / ${SERVOS}':" \ ${WRKSRC}/lib/MIME/Headers.php @${REINPLACE_CMD} -e "s:example.com:${HOSTNAME}:g" \ ${WRKSRC}/config/servers.php.dist .if defined(WITHOUT_SSL) @${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/notls:;s:%%IMAPPORT%%:143:" \ ${WRKSRC}/config/servers.php.dist .else @${REINPLACE_CMD} -e "s:%%IMAPPORT%%:993:" ${WRKSRC}/config/servers.php.dist . if defined(WITH_VALID_CERT) @${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl:" ${WRKSRC}/config/servers.php.dist . else @${REINPLACE_CMD} -e "s:%%PROTOCOL%%:imap/ssl/novalidate-cert:" \ ${WRKSRC}/config/servers.php.dist . endif .endif @${SED} -e "s:/home/httpd/html/horde/imp:${IMPDIR}:" \ - ${FILESDIR}/httpd.conf.imp > ${WRKDIR}/httpd.conf.imp + ${FILESDIR}/httpd.conf.imp > ${WRKDIR}/httpd-imp.conf .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 \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure c-client with SSL support." ; \ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi .endif do-install: @${MKDIR} ${IMPDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${IMPDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${IMPDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.imp ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-imp.conf ${HORDE_INC} @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${IMPDIR} @${CHMOD} -R o-rwx ${CONFDIR} .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for FILE in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} .endfor @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif post-install: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/mail/imp/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.26 \ No newline at end of property +1.27 \ No newline at end of property Index: head/mail/imp/distinfo =================================================================== --- head/mail/imp/distinfo (revision 152846) +++ head/mail/imp/distinfo (revision 152847) @@ -1,2 +1,3 @@ MD5 (imp-h3-4.0.4.tar.gz) = 437767b420c6280e680a42c8e34182d1 +SHA256 (imp-h3-4.0.4.tar.gz) = aa814f8f2bee0912a50df6220c77a60b43d83a52b0bc49dffbd30b63845c08d1 SIZE (imp-h3-4.0.4.tar.gz) = 3349908 Property changes on: head/mail/imp/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/mail/imp/files/pkg-deinstall.in =================================================================== --- head/mail/imp/files/pkg-deinstall.in (nonexistent) +++ head/mail/imp/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Backup IMP config files, if needed. + +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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/mail/imp/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/mail/imp/pkg-plist =================================================================== --- head/mail/imp/pkg-plist (revision 152846) +++ head/mail/imp/pkg-plist (revision 152847) @@ -1,502 +1,502 @@ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%IMPDIR%%/acl.php %%IMPDIR%%/attachment.php %%IMPDIR%%/compose.php %%IMPDIR%%/config/.htaccess %%IMPDIR%%/config/conf.xml %%IMPDIR%%/config/filter.txt %%IMPDIR%%/config/filter.txt.dist %%IMPDIR%%/config/header.txt %%IMPDIR%%/config/header.txt.dist %%IMPDIR%%/config/menu.php %%IMPDIR%%/config/menu.php.dist %%IMPDIR%%/config/mime_drivers.php %%IMPDIR%%/config/mime_drivers.php.dist %%IMPDIR%%/config/motd.php %%IMPDIR%%/config/motd.php.dist %%IMPDIR%%/config/prefs.php %%IMPDIR%%/config/prefs.php.dist %%IMPDIR%%/config/servers.php %%IMPDIR%%/config/servers.php.dist %%IMPDIR%%/config/trailer.txt %%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/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/VFolder.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/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/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/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/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/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%%/scripts/.htaccess %%IMPDIR%%/scripts/Imp.reg %%IMPDIR%%/scripts/custom_login.php %%IMPDIR%%/scripts/singlescript.php %%IMPDIR%%/search.php %%IMPDIR%%/smime.php %%IMPDIR%%/spelling.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/folders/javascript.inc %%IMPDIR%%/templates/javascript/open_compose_win.js %%IMPDIR%%/templates/javascript/open_print_win.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/open_pgp_import.js %%IMPDIR%%/templates/pgp/open_pgp_win.js %%IMPDIR%%/templates/pgp/passphrase.inc %%IMPDIR%%/templates/pgp/pgp.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/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/open_smime_import.js %%IMPDIR%%/templates/smime/open_smime_win.js %%IMPDIR%%/templates/smime/passphrase.inc %%IMPDIR%%/templates/smime/smime.inc %%IMPDIR%%/templates/thread/bottom.inc %%IMPDIR%%/templates/thread/thread.html %%IMPDIR%%/templates/thread/top.inc %%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-blue.png %%IMPDIR%%/themes/graphics/addressbook-red.png %%IMPDIR%%/themes/graphics/apple.png %%IMPDIR%%/themes/graphics/attachment.png %%IMPDIR%%/themes/graphics/compose.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/templates.png %%IMPDIR%%/themes/graphics/folders/trash.png %%IMPDIR%%/themes/graphics/forward.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_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/reply.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/screen.css %%IMPDIR%%/themes/simplex/screen.css %%IMPDIR%%/themes/sun/screen.css %%IMPDIR%%/thread.php %%IMPDIR%%/view.php %%PORTDOCS%%@dirrm %%DOCSDIR%% -etc/horde/httpd.conf.imp +%%HORDE_INC%%/httpd-imp.conf @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 @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/smime @dirrm %%IMPDIR%%/templates/search @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/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/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 @unexec rmdir %D/%%IMPDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%IMPDIR%% 2>/dev/null || true Property changes on: head/mail/imp/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.7 \ No newline at end of property +1.8 \ No newline at end of property Index: head/mail/ingo/pkg-deinstall =================================================================== --- head/mail/ingo/pkg-deinstall (revision 152846) +++ head/mail/ingo/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/ingo/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/mail/ingo/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/mail/ingo/Makefile =================================================================== --- head/mail/ingo/Makefile (revision 152846) +++ head/mail/ingo/Makefile (revision 152847) @@ -1,94 +1,99 @@ # Ports collection makefile for: Ingo # Date created: Dec 3, 2004 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= ingo PORTVERSION= 1.0.2 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/ingo/ \ ftp://ftp.planetmirror.com/pub/horde/ingo/ \ ftp://ftp.au.horde.org/pub/horde/ingo/ \ ftp://ftp.be.horde.org/ingo/ \ ftp://ftp.es.horde.org/pub/ingo/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/ingo/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/ingo/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/ingo/ \ http://ftp.horde.org/pub/ingo/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= Horde's email-filter management application #----------------------------------------------------------------------- # You may define this option: # # - WITH_SIEVE : if you run timsieved (with Cyrus). # #----------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes USE_PHP= imap -USE_REINPLACE= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= INGODIR=${LINGODIR} +PLIST_SUB= INGODIR=${LINGODIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall +SUB_LIST= INGODIR=${INGODIR} DOCS= LICENSE README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO CONFFILE= backends.php fields.php prefs.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LINGODIR= ${LHORDEDIR}/ingo PEARDIR?= ${LOCALBASE}/share/pear INGODIR= ${PREFIX}/${LINGODIR} CONFDIR= ${INGODIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde - .include .if defined(WITH_SIEVE) || exists(${LOCALBASE}/cyrus/bin/timsieved) RUN_DEPENDS+= ${PEARDIR}/Net/Sieve.php:${PORTSDIR}/net/pear-Net_Sieve .endif +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + pre-configure: @${SED} -e "s:/home/httpd/html/horde/ingo:${INGODIR}:g" \ - ${FILESDIR}/httpd.conf.ingo >${WRKDIR}/httpd.conf.ingo + ${FILESDIR}/httpd.conf.ingo >${WRKDIR}/httpd-ingo.conf do-install: @${MKDIR} ${INGODIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${INGODIR} .endfor @${CP} -p ${WRKSRC}/*.php ${INGODIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${INGODIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.ingo ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-ingo.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: - @${SED} -e "s:%%INGODIR%%:${INGODIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \ - < ${FILESDIR}/pkg-message.in > ${PKGMESSAGE} @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} .include Property changes on: head/mail/ingo/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.4 \ No newline at end of property +1.5 \ No newline at end of property Index: head/mail/ingo/distinfo =================================================================== --- head/mail/ingo/distinfo (revision 152846) +++ head/mail/ingo/distinfo (revision 152847) @@ -1,2 +1,3 @@ MD5 (ingo-h3-1.0.2.tar.gz) = 6bc7addfdd3bc18e4d6af5c1d57b7b89 +SHA256 (ingo-h3-1.0.2.tar.gz) = 6bd8d05f986c5b3d58065f7409b9df0912ace8968ed427798497bfd376bb1d29 SIZE (ingo-h3-1.0.2.tar.gz) = 853202 Property changes on: head/mail/ingo/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/mail/ingo/files/pkg-deinstall.in =================================================================== --- head/mail/ingo/files/pkg-deinstall.in (nonexistent) +++ head/mail/ingo/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/mail/ingo/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/mail/ingo/pkg-plist =================================================================== --- head/mail/ingo/pkg-plist (revision 152846) +++ head/mail/ingo/pkg-plist (revision 152847) @@ -1,168 +1,168 @@ -etc/horde/httpd.conf.ingo +%%HORDE_INC%%/httpd-ingo.conf %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%INGODIR%%/blacklist.php %%INGODIR%%/config/.htaccess %%INGODIR%%/config/backends.php %%INGODIR%%/config/backends.php.dist %%INGODIR%%/config/conf.xml %%INGODIR%%/config/fields.php %%INGODIR%%/config/fields.php.dist %%INGODIR%%/config/prefs.php %%INGODIR%%/config/prefs.php.dist %%INGODIR%%/filters.php %%INGODIR%%/forward.php %%INGODIR%%/index.php %%INGODIR%%/lib/Driver.php %%INGODIR%%/lib/Driver/null.php %%INGODIR%%/lib/Driver/timsieved.php %%INGODIR%%/lib/Driver/vfs.php %%INGODIR%%/lib/Ingo.php %%INGODIR%%/lib/Script.php %%INGODIR%%/lib/Script/imap.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/cs_CZ/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/es_ES/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/es_ES/help.xml %%INGODIR%%/locale/fi_FI/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/fi_FI/help.xml %%INGODIR%%/locale/fr_FR/LC_MESSAGES/ingo.mo %%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/ro_RO/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/sv_SE/LC_MESSAGES/ingo.mo %%INGODIR%%/locale/zh_TW/LC_MESSAGES/ingo.mo %%INGODIR%%/po/README %%INGODIR%%/po/cs_CZ.po %%INGODIR%%/po/de_DE.po %%INGODIR%%/po/es_ES.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/ro_RO.po %%INGODIR%%/po/sv_SE.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%%/vacation.php %%INGODIR%%/whitelist.php %%PORTDOCS%%@dirrm %%DOCSDIR%% @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/sv_SE/LC_MESSAGES @dirrm %%INGODIR%%/locale/sv_SE @dirrm %%INGODIR%%/locale/ro_RO/LC_MESSAGES @dirrm %%INGODIR%%/locale/ro_RO @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/es_ES/LC_MESSAGES @dirrm %%INGODIR%%/locale/es_ES @dirrm %%INGODIR%%/locale/en_US @dirrm %%INGODIR%%/locale/de_DE/LC_MESSAGES @dirrm %%INGODIR%%/locale/de_DE @dirrm %%INGODIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%INGODIR%%/locale/cs_CZ @dirrm %%INGODIR%%/locale @dirrm %%INGODIR%%/lib/Storage @dirrm %%INGODIR%%/lib/Script @dirrm %%INGODIR%%/lib/Driver @dirrm %%INGODIR%%/lib @unexec rmdir %D/%%INGODIR%%/config 2>/dev/null || true @unexec rmdir %D/%%INGODIR%% 2>/dev/null || true Property changes on: head/mail/ingo/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/mail/turba/pkg-deinstall =================================================================== --- head/mail/turba/pkg-deinstall (revision 152846) +++ head/mail/turba/pkg-deinstall (nonexistent) @@ -1,27 +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 ${PKG_PREFIX}/www/horde/turba/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, will be deleted by pkg-plist - ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" - ;; - *) # not found? - ;; - esac - done -fi Property changes on: head/mail/turba/pkg-deinstall ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.3 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/mail/turba/Makefile =================================================================== --- head/mail/turba/Makefile (revision 152846) +++ head/mail/turba/Makefile (revision 152847) @@ -1,106 +1,114 @@ # Ports collection makefile for: turba # Date created: Sat Nov 16, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= turba PORTVERSION= 2.0.5 CATEGORIES= mail www MASTER_SITES= ftp://ftp.horde.org/pub/turba/ \ ftp://ftp.planetmirror.com/pub/horde/turba/ \ ftp://ftp.au.horde.org/pub/horde/turba/ \ ftp://ftp.be.horde.org/turba/ \ ftp://ftp.es.horde.org/pub/turba/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/turba/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/turba/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/turba/ \ http://ftp.horde.org/pub/turba/ DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= thierry@FreeBSD.org COMMENT= The Horde contact management application #----------------------------------------------------------------------- # You may define this option: # # - WITHOUT_LDAP : if you do not need OpenLDAP; # # - WITH_IMSP : run IMSP cyrus-imspd. # #----------------------------------------------------------------------- RUN_DEPENDS+= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde .if !defined(WITHOUT_LDAP) USE_PHP= ldap .endif NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION USE_REINPLACE= yes REINPLACE_ARGS= -i "" DOCS= README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/LDAP docs/RELEASE_NOTES docs/TODO docs/UPGRADING CONFFILE= attributes.php menu.php prefs.php sources.php SUB_DIRS= config lib locale po scripts templates themes LHORDEDIR?= www/horde LTURBADIR?= ${LHORDEDIR}/turba -PLIST_SUB= TURBADIR=${LTURBADIR} +PLIST_SUB= TURBADIR=${LTURBADIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= TURBADIR=${TURBADIR} CONFDIR=${CONFDIR} TURBADIR= ${PREFIX}/${LTURBADIR} CONFDIR= ${TURBADIR}/config -HORDE_INC= ${LOCALBASE}/etc/horde +.include .if exists(${LOCALBASE}/sbin/imspd) WITH_IMSP= yes .endif .if defined(WITH_IMSP) RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd .endif +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else +HORDE_INC= ${LOCALBASE}/etc/horde +.endif + pre-configure: @${RM} ${WRKSRC}/config/sources.php.dist.orig @${SED} -e "s:/home/httpd/html/horde/turba:${TURBADIR}:g" \ - ${FILESDIR}/httpd.conf.turba > ${WRKDIR}/httpd.conf.turba + ${FILESDIR}/httpd.conf.turba > ${WRKDIR}/httpd-turba.conf @${REINPLACE_CMD} -e "s:/usr/bin/ldapadd:${LOCALBASE}/bin/ldapadd:" \ ${WRKSRC}/scripts/ldap/addou.pl .if defined(WITH_IMSP) @${REINPLACE_CMD} -e "s://UNCOMMENTIFIMSP ::" ${WRKSRC}/config/sources.php.dist .endif do-install: @${MKDIR} ${TURBADIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${TURBADIR} .endfor @${CP} -p ${WRKSRC}/*.php ${TURBADIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${TURBADIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.turba ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-turba.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: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/mail/turba/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.33 \ No newline at end of property +1.34 \ No newline at end of property Index: head/mail/turba/files/pkg-deinstall.in =================================================================== --- head/mail/turba/files/pkg-deinstall.in (nonexistent) +++ head/mail/turba/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/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, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/mail/turba/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/mail/turba/pkg-plist =================================================================== --- head/mail/turba/pkg-plist (revision 152846) +++ head/mail/turba/pkg-plist (revision 152847) @@ -1,261 +1,261 @@ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/LDAP %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%TURBADIR%%/add.php %%TURBADIR%%/browse.php %%TURBADIR%%/config/.htaccess %%TURBADIR%%/config/attributes.php %%TURBADIR%%/config/attributes.php.dist %%TURBADIR%%/config/conf.xml %%TURBADIR%%/config/menu.php %%TURBADIR%%/config/menu.php.dist %%TURBADIR%%/config/prefs.php %%TURBADIR%%/config/prefs.php.dist %%TURBADIR%%/config/sources.php %%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/AbstractObject.php %%TURBADIR%%/lib/Block/minisearch.php %%TURBADIR%%/lib/Driver.php %%TURBADIR%%/lib/Driver/imsp.php %%TURBADIR%%/lib/Driver/kolab.php %%TURBADIR%%/lib/Driver/ldap.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/ObjectView.php %%TURBADIR%%/lib/Renderer.php %%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/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/fi_FI/LC_MESSAGES/turba.mo %%TURBADIR%%/locale/fi_FI/help.xml %%TURBADIR%%/locale/fr_FR/LC_MESSAGES/turba.mo %%TURBADIR%%/locale/gl_ES/LC_MESSAGES/turba.mo %%TURBADIR%%/locale/hu_HU/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/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/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/ldap/addou %%TURBADIR%%/scripts/ldap/addou.pl %%TURBADIR%%/scripts/ldap/core.schema.patch %%TURBADIR%%/scripts/ldap/rfc2739.schema %%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_weddingguests.sql %%TURBADIR%%/scripts/upgrades/1.2_to_2.0.sql %%TURBADIR%%/scripts/upgrades/2004-10-26_create_default_histories.php %%TURBADIR%%/search.php %%TURBADIR%%/templates/.htaccess %%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/search.inc %%TURBADIR%%/templates/browse/search_criteria.inc %%TURBADIR%%/templates/browse/select.inc %%TURBADIR%%/templates/common-header.inc %%TURBADIR%%/templates/data/export.inc %%TURBADIR%%/templates/data/import.inc %%TURBADIR%%/templates/menu.inc %%TURBADIR%%/templates/prefs/columnselect.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/screen.css %%TURBADIR%%/vcard.php -etc/horde/httpd.conf.turba +%%HORDE_INC%%/httpd-turba.conf %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm %%TURBADIR%%/lib/Block @dirrm %%TURBADIR%%/lib/Driver @dirrm %%TURBADIR%%/lib @dirrm %%TURBADIR%%/locale/ar_SY/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ar_SY @dirrm %%TURBADIR%%/locale/bg_BG/LC_MESSAGES @dirrm %%TURBADIR%%/locale/bg_BG @dirrm %%TURBADIR%%/locale/ca_ES/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ca_ES @dirrm %%TURBADIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%TURBADIR%%/locale/cs_CZ @dirrm %%TURBADIR%%/locale/da_DK/LC_MESSAGES @dirrm %%TURBADIR%%/locale/da_DK @dirrm %%TURBADIR%%/locale/de_DE/LC_MESSAGES @dirrm %%TURBADIR%%/locale/de_DE @dirrm %%TURBADIR%%/locale/el_GR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/el_GR @dirrm %%TURBADIR%%/locale/en_US @dirrm %%TURBADIR%%/locale/es_ES/LC_MESSAGES @dirrm %%TURBADIR%%/locale/es_ES @dirrm %%TURBADIR%%/locale/et_EE/LC_MESSAGES @dirrm %%TURBADIR%%/locale/et_EE @dirrm %%TURBADIR%%/locale/fa_IR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/fa_IR @dirrm %%TURBADIR%%/locale/fi_FI/LC_MESSAGES @dirrm %%TURBADIR%%/locale/fi_FI @dirrm %%TURBADIR%%/locale/fr_FR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/fr_FR @dirrm %%TURBADIR%%/locale/gl_ES/LC_MESSAGES @dirrm %%TURBADIR%%/locale/gl_ES @dirrm %%TURBADIR%%/locale/hu_HU/LC_MESSAGES @dirrm %%TURBADIR%%/locale/hu_HU @dirrm %%TURBADIR%%/locale/it_IT/LC_MESSAGES @dirrm %%TURBADIR%%/locale/it_IT @dirrm %%TURBADIR%%/locale/ja_JP/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ja_JP @dirrm %%TURBADIR%%/locale/ko_KR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ko_KR @dirrm %%TURBADIR%%/locale/lt_LT/LC_MESSAGES @dirrm %%TURBADIR%%/locale/lt_LT @dirrm %%TURBADIR%%/locale/lv_LV/LC_MESSAGES @dirrm %%TURBADIR%%/locale/lv_LV @dirrm %%TURBADIR%%/locale/mk_MK/LC_MESSAGES @dirrm %%TURBADIR%%/locale/mk_MK @dirrm %%TURBADIR%%/locale/nb_NO/LC_MESSAGES @dirrm %%TURBADIR%%/locale/nb_NO @dirrm %%TURBADIR%%/locale/nl_NL/LC_MESSAGES @dirrm %%TURBADIR%%/locale/nl_NL @dirrm %%TURBADIR%%/locale/nn_NO/LC_MESSAGES @dirrm %%TURBADIR%%/locale/nn_NO @dirrm %%TURBADIR%%/locale/pl_PL/LC_MESSAGES @dirrm %%TURBADIR%%/locale/pl_PL @dirrm %%TURBADIR%%/locale/pt_BR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/pt_BR @dirrm %%TURBADIR%%/locale/pt_PT/LC_MESSAGES @dirrm %%TURBADIR%%/locale/pt_PT @dirrm %%TURBADIR%%/locale/ro_RO/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ro_RO @dirrm %%TURBADIR%%/locale/ru_RU/LC_MESSAGES @dirrm %%TURBADIR%%/locale/ru_RU @dirrm %%TURBADIR%%/locale/sk_SK/LC_MESSAGES @dirrm %%TURBADIR%%/locale/sk_SK @dirrm %%TURBADIR%%/locale/sl_SI/LC_MESSAGES @dirrm %%TURBADIR%%/locale/sl_SI @dirrm %%TURBADIR%%/locale/sv_SE/LC_MESSAGES @dirrm %%TURBADIR%%/locale/sv_SE @dirrm %%TURBADIR%%/locale/tr_TR/LC_MESSAGES @dirrm %%TURBADIR%%/locale/tr_TR @dirrm %%TURBADIR%%/locale/uk_UA/LC_MESSAGES @dirrm %%TURBADIR%%/locale/uk_UA @dirrm %%TURBADIR%%/locale/zh_CN/LC_MESSAGES @dirrm %%TURBADIR%%/locale/zh_CN @dirrm %%TURBADIR%%/locale/zh_TW/LC_MESSAGES @dirrm %%TURBADIR%%/locale/zh_TW @dirrm %%TURBADIR%%/locale @dirrm %%TURBADIR%%/po @dirrm %%TURBADIR%%/scripts/ldap @dirrm %%TURBADIR%%/scripts/sql @dirrm %%TURBADIR%%/scripts/upgrades @dirrm %%TURBADIR%%/scripts @dirrm %%TURBADIR%%/templates/block @dirrm %%TURBADIR%%/templates/browse @dirrm %%TURBADIR%%/templates/data @dirrm %%TURBADIR%%/templates/prefs @dirrm %%TURBADIR%%/templates @dirrm %%TURBADIR%%/themes/graphics/menu @dirrm %%TURBADIR%%/themes/graphics @dirrm %%TURBADIR%%/themes @unexec rmdir %D/%%TURBADIR%%/config 2>/dev/null || true @unexec rmdir %D/%%TURBADIR%% 2>/dev/null || true Property changes on: head/mail/turba/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/www/horde/Makefile =================================================================== --- head/www/horde/Makefile (revision 152846) +++ head/www/horde/Makefile (revision 152847) @@ -1,364 +1,377 @@ # Ports collection makefile for: horde2 # Date created: Sun Oct 07, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= horde PORTVERSION= 3.0.9 CATEGORIES= www MASTER_SITES= ftp://ftp.horde.org/pub/horde/ \ ftp://ftp.planetmirror.com/pub/horde/horde/ \ ftp://ftp.au.horde.org/pub/horde/horde/ \ ftp://ftp.be.horde.org/horde/ \ ftp://ftp.es.horde.org/pub/horde/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/horde/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/horde/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/horde/ \ http://ftp.horde.org/pub/horde/ .if defined(WITH_PHP5) PKGNAMESUFFIX= -php5 .endif MAINTAINER= thierry@FreeBSD.org COMMENT= A common code-base used by Horde applications, written in PHP #---------------------------------------------------------------------------- # You may define these options: # -# - WITH_APACHE2: if you run Apache2. -# # - WITH_PHP5: if you run PHP5 (you could use www/horde-php5). # # - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree. # # - WITHOUT_MYSQL: this port is built with MySQL by default # but you might choose any other database # supported by PHP (e.g. WITH_POSTGRESQL / WITH_SQLITE). # # - WITHOUT_IMAP: this port uses IMAP as a default authentication # backend; use this knob if for # example you only need Chora. # # - WITHOUT_LDAP: if you do not need OpenLDAP. # # - WITHOUT_FTP: if you do not need the VFS FTP driver. # -# - WITHOUT_MCAL: if you don't plan to install Kronolith. +# - WITH_MCAL: if you plan to install Kronolith with mcal (deprecated). # # - WITH_IMSP: use IMSP as a preferences backend. # # - WITHOUT_FILEINFO: use native code to perform MIME magic lookups. # # - WITHOUT_GD: don't perform manipulations on image data with gd. # # - WITHOUT_ZLIB: don't compress pages and don't handle zip or gz data. # # - WITH_MAGICK: use ImageMagick to perform these image manipulations. # # - WITHOUT_ICONV: remove support for UTF-8 character sets. # - WITHOUT_MBSTRING: # # - WITHOUT_WV if your users never receive MS-Word docs; # # - WITHOUT_XL if your users never receive MS-Excel sheets # (or .ppt presentations); # # - WITHOUT_GEOIP don't activate MaxMind GeoIP Hostname to Country lookup. # # - WITHOUT_SW don't use the weather.com block on the portal page. # # - WITHOUT_WEBCPP: don't highlight sources with webcpp. # # - WITH_SRCHIGH: highlight sources with source-highlight. # # - WITH_ENSCRIPT: highlight sources with enscript. # # - WITH_RPM: handle RPM packages. # # - WITH_DEB: handle Debian packages. # # - WITH_SUPHP: Install appropriately for use with the www/suphp port. # #---------------------------------------------------------------------------- RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \ ${PEARDIR}/Mail/RFC822.php:${PORTSDIR}/mail/pear-Mail \ ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \ ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \ ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File \ ${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP CONFLICTS= horde-2.* NO_BUILD= yes +USE_APACHE= 1.3+ USE_PHP= ctype gettext session USE_REINPLACE= yes 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 WANT_PHP_CGI= yes HORDEADMUSR?= horde SUB_LIST= WITH_SUPHP=yes .else WANT_PHP_MOD= yes .endif .if !defined(WITHOUT_FILEINFO) USE_PHP+= fileinfo .endif .if !defined(WITHOUT_FTP) USE_PHP+= ftp .endif .if !defined(WITHOUT_GD) USE_PHP+= gd .endif .if !defined(WITHOUT_ICONV) USE_PHP+= iconv .endif .if !defined(WITHOUT_IMAP) USE_PHP+= imap .endif .if !defined(WITHOUT_LDAP) USE_PHP+= ldap .endif .if !defined(WITHOUT_MBSTRING) USE_PHP+= mbstring .endif .if !defined(NOCRYPT) USE_PHP+= mcrypt .endif .if !defined(WITHOUT_SUPPORTED_DB) . if !defined(WITHOUT_MYSQL) USE_PHP+= mysql . endif . if defined(WITH_POSTGRESQL) USE_PHP+= pgsql . endif . if defined(WITH_SQLITE) USE_PHP+= sqlite . endif .endif .if !defined(WITHOUT_ZLIB) USE_PHP+= zlib .endif .if defined(WITH_MAGICK) RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick .endif .if defined(WITH_IMSP) RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd .endif .if !defined(WITHOUT_X11) . if !defined(WITHOUT_WV) RUN_DEPENDS+= ${LOCALBASE}/bin/wvHtml:${PORTSDIR}/textproc/wv . endif . if !defined(WITHOUT_XL) RUN_DEPENDS+= ${LOCALBASE}/bin/xlhtml:${PORTSDIR}/textproc/xlhtml . endif .endif .if !defined(WITHOUT_WEBCPP) RUN_DEPENDS+= webcpp:${PORTSDIR}/textproc/webcpp .endif .if exists(${LOCALBASE}/bin/source-highlight) WITH_SRCHIGH= yes .endif .if defined(WITH_SRCHIGH) RUN_DEPENDS+= source-highlight:${PORTSDIR}/textproc/source-highlight .endif .if exists(${LOCALBASE}/bin/enscript) WITH_ENSCRIPT= yes .endif .if defined(WITH_ENSCRIPT) . if defined(A4) RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-a4 . elif defined(DJ) RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letterdj . else RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letter . endif .endif .if exists(${LOCALBASE}/bin/rpm) WITH_RPM= yes .endif .if defined(WITH_RPM) RUN_DEPENDS+= rpm:${PORTSDIR}/archivers/rpm4 .endif .if exists(${LOCALBASE}/bin/dpkg) WITH_DEB= yes .endif .if defined(WITH_DEB) RUN_DEPENDS+= dpkg:${PORTSDIR}/archivers/dpkg .endif .if !defined(WITHOUT_SW) RUN_DEPENDS+= ${PEARDIR}/Services/Weather.php:${PORTSDIR}/misc/pear-Services_Weather .endif .if !defined(WITHOUT_GEOIP) RUN_DEPENDS+= ${LOCALBASE}/share/GeoIP/GeoIP.dat:${PORTSDIR}/net/GeoIP .endif REINPLACE_ARGS= -i.beforeHorde DOCS= COPYING README docs/CHANGES docs/CODING_STANDARDS \ docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL \ docs/PERFORMANCE docs/RELEASE_NOTES docs/SECURITY docs/TODO \ docs/TRANSLATIONS docs/UPGRADING CONFFILE= conf.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} APACHE_CONF=${APACHE_CONF} HORDESBIN=${HORDESBIN} \ - HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} +PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN} \ + HORDE_INC=${LHORDE_INC} +SUB_LIST+= HORDEDIR=${HORDEDIR} APACHE_CONF=${APACHE_CONF} \ + HORDESBIN=${HORDESBIN} HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} HORDEDIR= ${PREFIX}/${LHORDEDIR} HORDESBIN= ${PREFIX}/${LHORDESBIN} CONFDIR= ${HORDEDIR}/config APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf PEARDIR?= ${LOCALBASE}/share/pear -.if defined(WITH_APACHE2) -APACHE_CNFDIR= ${LOCALBASE}/etc/apache2 -.else -APACHE_CNFDIR= ${LOCALBASE}/etc/apache -.endif -HORDE_INC= ${PREFIX}/etc/horde LOG_FILE?= /var/log/horde.log .if defined(WITH_PHP5) USE_PHP+= dom .else USE_PHP+= domxml -. if !defined(WITHOUT_MCAL) +. if defined(WITH_MCAL) USE_PHP+= mcal . endif .endif 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 # Required to test PHP_VER +.include +.if ${APACHE_VERSION} >= 20 +APACHE_CNFDIR= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/} +HORDE_INC= ${APACHE_CNFDIR}/Includes +LHORDE_INC= ${HORDE_INC:S|^${LOCALBASE}/||} +PLIST_SUB+= RMDIRINC="@comment " +.else +APACHE_CNFDIR= ${LOCALBASE}/etc/apache +HORDE_INC= ${PREFIX}/etc/horde +LHORDE_INC= ${HORDE_INC:S|^${PREFIX}/||} +PLIST_SUB+= RMDIRINC="" +.endif + pre-configure: @${RM} ${PATCHES2RM:S|^|${WRKSRC}/|:S|$|.orig|} @${SED} -e "s:/home/httpd/html/horde:${HORDEDIR}:" \ -e "s:php_value auto_prepend_file:# php_value auto_prepend_file:" \ -e "s:/home/httpd/phplib:${PEARDIR}:" \ - ${FILESDIR}/httpd.conf.horde > ${WRKDIR}/httpd.conf.horde + ${FILESDIR}/httpd.conf.horde > ${WRKDIR}/httpd-horde.conf .if ${PHP_VER} == 5 - @${REINPLACE_CMD} -e "s:mod_php4.c:mod_php5.c:" ${WRKDIR}/httpd.conf.horde + @${REINPLACE_CMD} -e "s:mod_php4.c:mod_php5.c:" ${WRKDIR}/httpd-horde.conf .endif @${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:" ${WRKSRC}/config/mime_drivers.php.dist .if !defined(WITHOUT_X11) . if !defined(WITHOUT_WV) @${REINPLACE_CMD} -e "s://UNCOMMENTIFWV::" ${WRKSRC}/config/mime_drivers.php.dist . endif . if !defined(WITHOUT_XL) @${REINPLACE_CMD} -e "s://UNCOMMENTIFXL::" ${WRKSRC}/config/mime_drivers.php.dist . endif .endif .if !defined(WITHOUT_WEBCPP) @${REINPLACE_CMD} -e "s://UNCOMMENTIFWCPP::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_SRCHIGH) @${REINPLACE_CMD} -e "s://UNCOMMENTIFSRCHIGH::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_ENSCRIPT) @${REINPLACE_CMD} -e "s://UNCOMMENTIFES::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_RPM) @${REINPLACE_CMD} -e "s://UNCOMMENTIFRPM::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_DEB) @${REINPLACE_CMD} -e "s://UNCOMMENTIFDEB::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if !defined(WITHOUT_GEOIP) @${REINPLACE_CMD} -e "s:GeoIP lookup will not be performed.\"/>:GeoIP lookup will not be performed.\">${LOCALBASE}/share/GeoIP/GeoIP.dat:" \ ${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|} pre-install: .if !defined(WITHOUT_SUPPORTED_DB) @if ! php -m | ${GREP} -q -e "mysql" ; then \ if ! php -m | ${GREP} -q -e "pgsql" ; then \ if ! php -m | ${GREP} -q -e "sybase" ; then \ if ! php -m | ${GREP} -q -e "SQLite" ; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure PHP with a database support." ; \ ${ECHO_MSG} "MySQL, PostgreSQL, SQLite and Sybase (CTLIB or DBLIB)" ; \ ${ECHO_MSG} "can be used with PHP AND Horde." ; \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "(If everything will run on this machine, do not" ; \ ${ECHO_MSG} " forget to install the database server-side!)" ; \ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi ; \ fi ; \ fi ; \ fi .endif .if defined(WITH_SUPHP) ${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL .endif do-install: @${MKDIR} ${HORDEDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${HORDEDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${HORDEDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh +.if ${APACHE_VERSION} >= 20 + ${INSTALL_DATA} ${WRKDIR}/httpd-horde.conf ${HORDE_INC} +.else @${MKDIR} ${HORDE_INC} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.horde ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-horde.conf ${HORDE_INC} +. if !defined(PACKAGE_BUILDING) @(if [ -f ${APACHE_CONF} ] ; then \ ${ECHO_MSG} "===> Updating ${APACHE_CONF}..." ; \ + ${CP} -p ${APACHE_CONF} ${APACHE_CONF}.beforeHorde ; \ ${ECHO_CMD} "# Horde's include directory" >> ${APACHE_CONF} ; \ ${ECHO_CMD} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \ fi) +. endif +.endif @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDEDIR} @${CHMOD} -R o-rwx ${CONFDIR} @${TOUCH} ${LOG_FILE} @${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE} .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 Property changes on: head/www/horde/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/www/horde/pkg-plist =================================================================== --- head/www/horde/pkg-plist (revision 152846) +++ head/www/horde/pkg-plist (revision 152847) @@ -1,1593 +1,1593 @@ -etc/horde/httpd.conf.horde +%%HORDE_INC%%/httpd-horde.conf %%HORDESBIN%%/horde_set_perms.sh %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CODING_STANDARDS %%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTING %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/HACKING %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/PERFORMANCE %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/SECURITY %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/TRANSLATIONS %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%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/perms/addchild.php %%HORDEDIR%%/admin/perms/delete.php %%HORDEDIR%%/admin/perms/edit.php %%HORDEDIR%%/admin/perms/index.php %%HORDEDIR%%/admin/phpshell.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 %%HORDEDIR%%/config/conf.php.dist %%HORDEDIR%%/config/conf.xml %%HORDEDIR%%/config/hooks.php.dist %%HORDEDIR%%/config/mime_drivers.php %%HORDEDIR%%/config/mime_drivers.php.dist %%HORDEDIR%%/config/motd.php %%HORDEDIR%%/config/motd.php.dist %%HORDEDIR%%/config/nls.php %%HORDEDIR%%/config/nls.php.dist %%HORDEDIR%%/config/prefs.php %%HORDEDIR%%/config/prefs.php.dist %%HORDEDIR%%/config/registry.php %%HORDEDIR%%/config/registry.php.dist %%HORDEDIR%%/index.php %%HORDEDIR%%/js/addEvent.php %%HORDEDIR%%/js/alphaImageLoader.php %%HORDEDIR%%/js/ieEscGuard.js %%HORDEDIR%%/js/enter_key_trap.js %%HORDEDIR%%/js/form_assign.js %%HORDEDIR%%/js/form_helpers.js %%HORDEDIR%%/js/hideable.js %%HORDEDIR%%/js/httpclient.js %%HORDEDIR%%/js/image.js %%HORDEDIR%%/js/open_colorpicker.js %%HORDEDIR%%/js/popup.js %%HORDEDIR%%/js/sorter.js %%HORDEDIR%%/js/stripe.js %%HORDEDIR%%/js/tooltip.js %%HORDEDIR%%/lib/.htaccess %%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/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/radius.php %%HORDEDIR%%/lib/Horde/Auth/sasl.php %%HORDEDIR%%/lib/Horde/Auth/smb.php %%HORDEDIR%%/lib/Horde/Auth/sql.php %%HORDEDIR%%/lib/Horde/Auth/yahoo.php %%HORDEDIR%%/lib/Horde/Block.php %%HORDEDIR%%/lib/Horde/Block/Collection.php %%HORDEDIR%%/lib/Horde/Block/Layout.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/palm.php %%HORDEDIR%%/lib/Horde/Data/pdb.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/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/Help.php %%HORDEDIR%%/lib/Horde/History.php %%HORDEDIR%%/lib/Horde/IMAP/ACL.php %%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc2086.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/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/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/Relationship/Manager.php %%HORDEDIR%%/lib/Horde/SQL.php %%HORDEDIR%%/lib/Horde/SQL/Attributes.php %%HORDEDIR%%/lib/Horde/SQL/Keywords.php %%HORDEDIR%%/lib/Horde/Scheduler.php %%HORDEDIR%%/lib/Horde/Scheduler/cron.php %%HORDEDIR%%/lib/Horde/Search.php %%HORDEDIR%%/lib/Horde/Search/google.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/memcached.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/SyncML.php %%HORDEDIR%%/lib/Horde/SyncML/Backend.php %%HORDEDIR%%/lib/Horde/SyncML/Command.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Alert.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Final.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Get.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Map.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Put.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Results.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Status.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Sync.php %%HORDEDIR%%/lib/Horde/SyncML/Command/SyncElement.php %%HORDEDIR%%/lib/Horde/SyncML/Constants.php %%HORDEDIR%%/lib/Horde/SyncML/Device.php %%HORDEDIR%%/lib/Horde/SyncML/Device/P800.php %%HORDEDIR%%/lib/Horde/SyncML/Device/Sync4j.php %%HORDEDIR%%/lib/Horde/SyncML/Device/Synthesis.php %%HORDEDIR%%/lib/Horde/SyncML/DeviceInfo.php %%HORDEDIR%%/lib/Horde/SyncML/ResultsSender.php %%HORDEDIR%%/lib/Horde/SyncML/State.php %%HORDEDIR%%/lib/Horde/SyncML/Sync.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/Timer.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/Table.php %%HORDEDIR%%/lib/Horde/UI/Tabs.php %%HORDEDIR%%/lib/Horde/UI/VarRenderer.php %%HORDEDIR%%/lib/Horde/UI/VarRenderer/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/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/sms2email_http.php %%HORDEDIR%%/lib/Net/SMS/vodafoneitaly_smtp.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/sql.php %%HORDEDIR%%/lib/VFS/sql_file.php %%HORDEDIR%%/lib/XML/RAX.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/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/hu_HU/LC_MESSAGES/horde.mo %%HORDEDIR%%/locale/hu_HU/help.xml %%HORDEDIR%%/locale/id_ID/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/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/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/horde.pot %%HORDEDIR%%/po/hu_HU.po %%HORDEDIR%%/po/id_ID.po %%HORDEDIR%%/po/it_IT.po %%HORDEDIR%%/po/ja_JP.po %%HORDEDIR%%/po/ko_KR.po %%HORDEDIR%%/po/lt_LT.po %%HORDEDIR%%/po/lv_LV.po %%HORDEDIR%%/po/mk_MK.po %%HORDEDIR%%/po/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/create-symlinks.php %%HORDEDIR%%/scripts/crond %%HORDEDIR%%/scripts/get_login.php %%HORDEDIR%%/scripts/http_login_refer.php %%HORDEDIR%%/scripts/ldap/horde.schema %%HORDEDIR%%/scripts/migrate_user_categories.php %%HORDEDIR%%/scripts/remove_prefs.php %%HORDEDIR%%/scripts/set_perms.sh %%HORDEDIR%%/scripts/setup.php %%HORDEDIR%%/scripts/sql/README %%HORDEDIR%%/scripts/sql/README.OCI8 %%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/horde_datatree.mysql.sql %%HORDEDIR%%/scripts/sql/horde_datatree.sql %%HORDEDIR%%/scripts/sql/horde_log.sql %%HORDEDIR%%/scripts/sql/horde_muvfs.sql %%HORDEDIR%%/scripts/sql/horde_prefs.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.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/themes_check.php %%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql %%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.pgsql.sql %%HORDEDIR%%/services/cacheview.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/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/form_sections.js %%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_help_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/agreement_bottom.inc %%HORDEDIR%%/templates/maintenance/agreement_middle.inc %%HORDEDIR%%/templates/maintenance/agreement_top.inc %%HORDEDIR%%/templates/maintenance/confirm_bottom.inc %%HORDEDIR%%/templates/maintenance/confirm_middle.inc %%HORDEDIR%%/templates/maintenance/confirm_top.inc %%HORDEDIR%%/templates/maintenance/javascript.inc %%HORDEDIR%%/templates/maintenance/maintenance_bottom.inc %%HORDEDIR%%/templates/maintenance/maintenance_top.inc %%HORDEDIR%%/templates/maintenance/notice_bottom.inc %%HORDEDIR%%/templates/maintenance/notice_middle.inc %%HORDEDIR%%/templates/maintenance/notice_top.inc %%HORDEDIR%%/templates/menu/menu.inc %%HORDEDIR%%/templates/portal/add.inc %%HORDEDIR%%/templates/portal/block.inc %%HORDEDIR%%/templates/portal/edit.inc %%HORDEDIR%%/templates/portal/empty.inc %%HORDEDIR%%/templates/portal/footer.inc %%HORDEDIR%%/templates/portal/header.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/info.php %%HORDEDIR%%/themes/cornflower/screen.css %%HORDEDIR%%/themes/gennevilliers/info.php %%HORDEDIR%%/themes/gennevilliers/screen.css %%HORDEDIR%%/themes/green/info.php %%HORDEDIR%%/themes/green/screen.css %%HORDEDIR%%/themes/grey/info.php %%HORDEDIR%%/themes/grey/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/az.png %%HORDEDIR%%/themes/graphics/blank.gif %%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/delete-small.png %%HORDEDIR%%/themes/graphics/delete.png %%HORDEDIR%%/themes/graphics/devel.png %%HORDEDIR%%/themes/graphics/download.png %%HORDEDIR%%/themes/graphics/edit.png %%HORDEDIR%%/themes/graphics/edit-small.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/flip.png %%HORDEDIR%%/themes/graphics/image/grayscale.png %%HORDEDIR%%/themes/graphics/image/mirror.png %%HORDEDIR%%/themes/graphics/image/ratio.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/mail.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/csv.png %%HORDEDIR%%/themes/graphics/mime/deb.png %%HORDEDIR%%/themes/graphics/mime/encryption.png %%HORDEDIR%%/themes/graphics/mime/executable.png %%HORDEDIR%%/themes/graphics/mime/html.png %%HORDEDIR%%/themes/graphics/mime/icalendar.png %%HORDEDIR%%/themes/graphics/mime/image.png %%HORDEDIR%%/themes/graphics/mime/inf.png %%HORDEDIR%%/themes/graphics/mime/mail.png %%HORDEDIR%%/themes/graphics/mime/makefile.png %%HORDEDIR%%/themes/graphics/mime/msexcel.png %%HORDEDIR%%/themes/graphics/mime/msi.png %%HORDEDIR%%/themes/graphics/mime/msp.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/quicktime.png %%HORDEDIR%%/themes/graphics/mime/readme.png %%HORDEDIR%%/themes/graphics/mime/realaudio.png %%HORDEDIR%%/themes/graphics/mime/rpm.png %%HORDEDIR%%/themes/graphics/mime/script-asa.png %%HORDEDIR%%/themes/graphics/mime/script-asp.png %%HORDEDIR%%/themes/graphics/mime/script-js.png %%HORDEDIR%%/themes/graphics/mime/setup.png %%HORDEDIR%%/themes/graphics/mime/signed.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/unknown.png %%HORDEDIR%%/themes/graphics/mime/vcard.png %%HORDEDIR%%/themes/graphics/mime/video.png %%HORDEDIR%%/themes/graphics/mime/xcode.png %%HORDEDIR%%/themes/graphics/mime/xml.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/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-minusonly.png %%HORDEDIR%%/themes/graphics/tree/rev-joinbottom-down.png %%HORDEDIR%%/themes/graphics/tree/rev-plusonly.png %%HORDEDIR%%/themes/graphics/tree/rev-line.png %%HORDEDIR%%/themes/graphics/tree/rev-minusbottom.png %%HORDEDIR%%/themes/graphics/tree/rev-plus.png %%HORDEDIR%%/themes/graphics/tree/rev-plusbottom.png %%HORDEDIR%%/themes/graphics/tree/rev-leaf.png %%HORDEDIR%%/themes/graphics/tree/rev-joinbottom.png %%HORDEDIR%%/themes/graphics/tree/rev-nullonly.png %%HORDEDIR%%/themes/graphics/tree/rev-minus.png %%HORDEDIR%%/themes/graphics/tree/rev-plustop.png %%HORDEDIR%%/themes/graphics/tree/rev-minustop.png %%HORDEDIR%%/themes/graphics/unlocked.png %%HORDEDIR%%/themes/graphics/user.png %%HORDEDIR%%/themes/graphics/website.png %%HORDEDIR%%/themes/graphics/za.png %%HORDEDIR%%/themes/ie.css %%HORDEDIR%%/themes/ie5mac.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/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/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/regex_test.php @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 @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/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/alerts @dirrm %%HORDEDIR%%/themes/graphics @dirrm %%HORDEDIR%%/themes/grey @dirrm %%HORDEDIR%%/themes/green @dirrm %%HORDEDIR%%/themes/gennevilliers @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/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/ja_JP/LC_MESSAGES @dirrm %%HORDEDIR%%/locale/ja_JP @dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES @dirrm %%HORDEDIR%%/locale/it_IT @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/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/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/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/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/SyncML/Device @dirrm %%HORDEDIR%%/lib/Horde/SyncML/Command @dirrm %%HORDEDIR%%/lib/Horde/SyncML @dirrm %%HORDEDIR%%/lib/Horde/SessionHandler @dirrm %%HORDEDIR%%/lib/Horde/Search @dirrm %%HORDEDIR%%/lib/Horde/Scheduler @dirrm %%HORDEDIR%%/lib/Horde/SQL @dirrm %%HORDEDIR%%/lib/Horde/Relationship @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/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 @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 @unexec rmdir %D/%%HORDEDIR%%/lib/data 2>/dev/null || true @dirrm %%HORDEDIR%%/lib @dirrm %%HORDEDIR%%/js @unexec rmdir %D/%%HORDEDIR%%/config 2>/dev/null || true @dirrm %%HORDEDIR%%/admin/setup @dirrm %%HORDEDIR%%/admin/perms @dirrm %%HORDEDIR%%/admin/locale/fi_FI @dirrm %%HORDEDIR%%/admin/locale/en_US @dirrm %%HORDEDIR%%/admin/locale @dirrm %%HORDEDIR%%/admin @unexec rmdir %D/%%HORDEDIR%% 2>/dev/null || true %%PORTDOCS%%@dirrm %%DOCSDIR%% -@unexec rmdir %D/etc/horde 2>/dev/null || true +%%RMDIRINC%%@unexec rmdir %D/%%HORDE_INC%% 2>/dev/null || true Property changes on: head/www/horde/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/www/horde-base/Makefile =================================================================== --- head/www/horde-base/Makefile (revision 152846) +++ head/www/horde-base/Makefile (revision 152847) @@ -1,364 +1,377 @@ # Ports collection makefile for: horde2 # Date created: Sun Oct 07, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= horde PORTVERSION= 3.0.9 CATEGORIES= www MASTER_SITES= ftp://ftp.horde.org/pub/horde/ \ ftp://ftp.planetmirror.com/pub/horde/horde/ \ ftp://ftp.au.horde.org/pub/horde/horde/ \ ftp://ftp.be.horde.org/horde/ \ ftp://ftp.es.horde.org/pub/horde/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/horde/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/horde/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/horde/ \ http://ftp.horde.org/pub/horde/ .if defined(WITH_PHP5) PKGNAMESUFFIX= -php5 .endif MAINTAINER= thierry@FreeBSD.org COMMENT= A common code-base used by Horde applications, written in PHP #---------------------------------------------------------------------------- # You may define these options: # -# - WITH_APACHE2: if you run Apache2. -# # - WITH_PHP5: if you run PHP5 (you could use www/horde-php5). # # - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree. # # - WITHOUT_MYSQL: this port is built with MySQL by default # but you might choose any other database # supported by PHP (e.g. WITH_POSTGRESQL / WITH_SQLITE). # # - WITHOUT_IMAP: this port uses IMAP as a default authentication # backend; use this knob if for # example you only need Chora. # # - WITHOUT_LDAP: if you do not need OpenLDAP. # # - WITHOUT_FTP: if you do not need the VFS FTP driver. # -# - WITHOUT_MCAL: if you don't plan to install Kronolith. +# - WITH_MCAL: if you plan to install Kronolith with mcal (deprecated). # # - WITH_IMSP: use IMSP as a preferences backend. # # - WITHOUT_FILEINFO: use native code to perform MIME magic lookups. # # - WITHOUT_GD: don't perform manipulations on image data with gd. # # - WITHOUT_ZLIB: don't compress pages and don't handle zip or gz data. # # - WITH_MAGICK: use ImageMagick to perform these image manipulations. # # - WITHOUT_ICONV: remove support for UTF-8 character sets. # - WITHOUT_MBSTRING: # # - WITHOUT_WV if your users never receive MS-Word docs; # # - WITHOUT_XL if your users never receive MS-Excel sheets # (or .ppt presentations); # # - WITHOUT_GEOIP don't activate MaxMind GeoIP Hostname to Country lookup. # # - WITHOUT_SW don't use the weather.com block on the portal page. # # - WITHOUT_WEBCPP: don't highlight sources with webcpp. # # - WITH_SRCHIGH: highlight sources with source-highlight. # # - WITH_ENSCRIPT: highlight sources with enscript. # # - WITH_RPM: handle RPM packages. # # - WITH_DEB: handle Debian packages. # # - WITH_SUPHP: Install appropriately for use with the www/suphp port. # #---------------------------------------------------------------------------- RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \ ${PEARDIR}/Mail/RFC822.php:${PORTSDIR}/mail/pear-Mail \ ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \ ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \ ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File \ ${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP CONFLICTS= horde-2.* NO_BUILD= yes +USE_APACHE= 1.3+ USE_PHP= ctype gettext session USE_REINPLACE= yes 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 WANT_PHP_CGI= yes HORDEADMUSR?= horde SUB_LIST= WITH_SUPHP=yes .else WANT_PHP_MOD= yes .endif .if !defined(WITHOUT_FILEINFO) USE_PHP+= fileinfo .endif .if !defined(WITHOUT_FTP) USE_PHP+= ftp .endif .if !defined(WITHOUT_GD) USE_PHP+= gd .endif .if !defined(WITHOUT_ICONV) USE_PHP+= iconv .endif .if !defined(WITHOUT_IMAP) USE_PHP+= imap .endif .if !defined(WITHOUT_LDAP) USE_PHP+= ldap .endif .if !defined(WITHOUT_MBSTRING) USE_PHP+= mbstring .endif .if !defined(NOCRYPT) USE_PHP+= mcrypt .endif .if !defined(WITHOUT_SUPPORTED_DB) . if !defined(WITHOUT_MYSQL) USE_PHP+= mysql . endif . if defined(WITH_POSTGRESQL) USE_PHP+= pgsql . endif . if defined(WITH_SQLITE) USE_PHP+= sqlite . endif .endif .if !defined(WITHOUT_ZLIB) USE_PHP+= zlib .endif .if defined(WITH_MAGICK) RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick .endif .if defined(WITH_IMSP) RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd .endif .if !defined(WITHOUT_X11) . if !defined(WITHOUT_WV) RUN_DEPENDS+= ${LOCALBASE}/bin/wvHtml:${PORTSDIR}/textproc/wv . endif . if !defined(WITHOUT_XL) RUN_DEPENDS+= ${LOCALBASE}/bin/xlhtml:${PORTSDIR}/textproc/xlhtml . endif .endif .if !defined(WITHOUT_WEBCPP) RUN_DEPENDS+= webcpp:${PORTSDIR}/textproc/webcpp .endif .if exists(${LOCALBASE}/bin/source-highlight) WITH_SRCHIGH= yes .endif .if defined(WITH_SRCHIGH) RUN_DEPENDS+= source-highlight:${PORTSDIR}/textproc/source-highlight .endif .if exists(${LOCALBASE}/bin/enscript) WITH_ENSCRIPT= yes .endif .if defined(WITH_ENSCRIPT) . if defined(A4) RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-a4 . elif defined(DJ) RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letterdj . else RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letter . endif .endif .if exists(${LOCALBASE}/bin/rpm) WITH_RPM= yes .endif .if defined(WITH_RPM) RUN_DEPENDS+= rpm:${PORTSDIR}/archivers/rpm4 .endif .if exists(${LOCALBASE}/bin/dpkg) WITH_DEB= yes .endif .if defined(WITH_DEB) RUN_DEPENDS+= dpkg:${PORTSDIR}/archivers/dpkg .endif .if !defined(WITHOUT_SW) RUN_DEPENDS+= ${PEARDIR}/Services/Weather.php:${PORTSDIR}/misc/pear-Services_Weather .endif .if !defined(WITHOUT_GEOIP) RUN_DEPENDS+= ${LOCALBASE}/share/GeoIP/GeoIP.dat:${PORTSDIR}/net/GeoIP .endif REINPLACE_ARGS= -i.beforeHorde DOCS= COPYING README docs/CHANGES docs/CODING_STANDARDS \ docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL \ docs/PERFORMANCE docs/RELEASE_NOTES docs/SECURITY docs/TODO \ docs/TRANSLATIONS docs/UPGRADING CONFFILE= conf.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} APACHE_CONF=${APACHE_CONF} HORDESBIN=${HORDESBIN} \ - HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} +PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN} \ + HORDE_INC=${LHORDE_INC} +SUB_LIST+= HORDEDIR=${HORDEDIR} APACHE_CONF=${APACHE_CONF} \ + HORDESBIN=${HORDESBIN} HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} HORDEDIR= ${PREFIX}/${LHORDEDIR} HORDESBIN= ${PREFIX}/${LHORDESBIN} CONFDIR= ${HORDEDIR}/config APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf PEARDIR?= ${LOCALBASE}/share/pear -.if defined(WITH_APACHE2) -APACHE_CNFDIR= ${LOCALBASE}/etc/apache2 -.else -APACHE_CNFDIR= ${LOCALBASE}/etc/apache -.endif -HORDE_INC= ${PREFIX}/etc/horde LOG_FILE?= /var/log/horde.log .if defined(WITH_PHP5) USE_PHP+= dom .else USE_PHP+= domxml -. if !defined(WITHOUT_MCAL) +. if defined(WITH_MCAL) USE_PHP+= mcal . endif .endif 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 # Required to test PHP_VER +.include +.if ${APACHE_VERSION} >= 20 +APACHE_CNFDIR= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/} +HORDE_INC= ${APACHE_CNFDIR}/Includes +LHORDE_INC= ${HORDE_INC:S|^${LOCALBASE}/||} +PLIST_SUB+= RMDIRINC="@comment " +.else +APACHE_CNFDIR= ${LOCALBASE}/etc/apache +HORDE_INC= ${PREFIX}/etc/horde +LHORDE_INC= ${HORDE_INC:S|^${PREFIX}/||} +PLIST_SUB+= RMDIRINC="" +.endif + pre-configure: @${RM} ${PATCHES2RM:S|^|${WRKSRC}/|:S|$|.orig|} @${SED} -e "s:/home/httpd/html/horde:${HORDEDIR}:" \ -e "s:php_value auto_prepend_file:# php_value auto_prepend_file:" \ -e "s:/home/httpd/phplib:${PEARDIR}:" \ - ${FILESDIR}/httpd.conf.horde > ${WRKDIR}/httpd.conf.horde + ${FILESDIR}/httpd.conf.horde > ${WRKDIR}/httpd-horde.conf .if ${PHP_VER} == 5 - @${REINPLACE_CMD} -e "s:mod_php4.c:mod_php5.c:" ${WRKDIR}/httpd.conf.horde + @${REINPLACE_CMD} -e "s:mod_php4.c:mod_php5.c:" ${WRKDIR}/httpd-horde.conf .endif @${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:" ${WRKSRC}/config/mime_drivers.php.dist .if !defined(WITHOUT_X11) . if !defined(WITHOUT_WV) @${REINPLACE_CMD} -e "s://UNCOMMENTIFWV::" ${WRKSRC}/config/mime_drivers.php.dist . endif . if !defined(WITHOUT_XL) @${REINPLACE_CMD} -e "s://UNCOMMENTIFXL::" ${WRKSRC}/config/mime_drivers.php.dist . endif .endif .if !defined(WITHOUT_WEBCPP) @${REINPLACE_CMD} -e "s://UNCOMMENTIFWCPP::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_SRCHIGH) @${REINPLACE_CMD} -e "s://UNCOMMENTIFSRCHIGH::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_ENSCRIPT) @${REINPLACE_CMD} -e "s://UNCOMMENTIFES::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_RPM) @${REINPLACE_CMD} -e "s://UNCOMMENTIFRPM::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_DEB) @${REINPLACE_CMD} -e "s://UNCOMMENTIFDEB::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if !defined(WITHOUT_GEOIP) @${REINPLACE_CMD} -e "s:GeoIP lookup will not be performed.\"/>:GeoIP lookup will not be performed.\">${LOCALBASE}/share/GeoIP/GeoIP.dat:" \ ${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|} pre-install: .if !defined(WITHOUT_SUPPORTED_DB) @if ! php -m | ${GREP} -q -e "mysql" ; then \ if ! php -m | ${GREP} -q -e "pgsql" ; then \ if ! php -m | ${GREP} -q -e "sybase" ; then \ if ! php -m | ${GREP} -q -e "SQLite" ; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure PHP with a database support." ; \ ${ECHO_MSG} "MySQL, PostgreSQL, SQLite and Sybase (CTLIB or DBLIB)" ; \ ${ECHO_MSG} "can be used with PHP AND Horde." ; \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "(If everything will run on this machine, do not" ; \ ${ECHO_MSG} " forget to install the database server-side!)" ; \ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi ; \ fi ; \ fi ; \ fi .endif .if defined(WITH_SUPHP) ${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL .endif do-install: @${MKDIR} ${HORDEDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${HORDEDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${HORDEDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh +.if ${APACHE_VERSION} >= 20 + ${INSTALL_DATA} ${WRKDIR}/httpd-horde.conf ${HORDE_INC} +.else @${MKDIR} ${HORDE_INC} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.horde ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-horde.conf ${HORDE_INC} +. if !defined(PACKAGE_BUILDING) @(if [ -f ${APACHE_CONF} ] ; then \ ${ECHO_MSG} "===> Updating ${APACHE_CONF}..." ; \ + ${CP} -p ${APACHE_CONF} ${APACHE_CONF}.beforeHorde ; \ ${ECHO_CMD} "# Horde's include directory" >> ${APACHE_CONF} ; \ ${ECHO_CMD} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \ fi) +. endif +.endif @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDEDIR} @${CHMOD} -R o-rwx ${CONFDIR} @${TOUCH} ${LOG_FILE} @${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE} .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 Property changes on: head/www/horde-base/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/www/horde-base/pkg-plist =================================================================== --- head/www/horde-base/pkg-plist (revision 152846) +++ head/www/horde-base/pkg-plist (revision 152847) @@ -1,1593 +1,1593 @@ -etc/horde/httpd.conf.horde +%%HORDE_INC%%/httpd-horde.conf %%HORDESBIN%%/horde_set_perms.sh %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CODING_STANDARDS %%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTING %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/HACKING %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/PERFORMANCE %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/SECURITY %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/TRANSLATIONS %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%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/perms/addchild.php %%HORDEDIR%%/admin/perms/delete.php %%HORDEDIR%%/admin/perms/edit.php %%HORDEDIR%%/admin/perms/index.php %%HORDEDIR%%/admin/phpshell.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 %%HORDEDIR%%/config/conf.php.dist %%HORDEDIR%%/config/conf.xml %%HORDEDIR%%/config/hooks.php.dist %%HORDEDIR%%/config/mime_drivers.php %%HORDEDIR%%/config/mime_drivers.php.dist %%HORDEDIR%%/config/motd.php %%HORDEDIR%%/config/motd.php.dist %%HORDEDIR%%/config/nls.php %%HORDEDIR%%/config/nls.php.dist %%HORDEDIR%%/config/prefs.php %%HORDEDIR%%/config/prefs.php.dist %%HORDEDIR%%/config/registry.php %%HORDEDIR%%/config/registry.php.dist %%HORDEDIR%%/index.php %%HORDEDIR%%/js/addEvent.php %%HORDEDIR%%/js/alphaImageLoader.php %%HORDEDIR%%/js/ieEscGuard.js %%HORDEDIR%%/js/enter_key_trap.js %%HORDEDIR%%/js/form_assign.js %%HORDEDIR%%/js/form_helpers.js %%HORDEDIR%%/js/hideable.js %%HORDEDIR%%/js/httpclient.js %%HORDEDIR%%/js/image.js %%HORDEDIR%%/js/open_colorpicker.js %%HORDEDIR%%/js/popup.js %%HORDEDIR%%/js/sorter.js %%HORDEDIR%%/js/stripe.js %%HORDEDIR%%/js/tooltip.js %%HORDEDIR%%/lib/.htaccess %%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/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/radius.php %%HORDEDIR%%/lib/Horde/Auth/sasl.php %%HORDEDIR%%/lib/Horde/Auth/smb.php %%HORDEDIR%%/lib/Horde/Auth/sql.php %%HORDEDIR%%/lib/Horde/Auth/yahoo.php %%HORDEDIR%%/lib/Horde/Block.php %%HORDEDIR%%/lib/Horde/Block/Collection.php %%HORDEDIR%%/lib/Horde/Block/Layout.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/palm.php %%HORDEDIR%%/lib/Horde/Data/pdb.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/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/Help.php %%HORDEDIR%%/lib/Horde/History.php %%HORDEDIR%%/lib/Horde/IMAP/ACL.php %%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc2086.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/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/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/Relationship/Manager.php %%HORDEDIR%%/lib/Horde/SQL.php %%HORDEDIR%%/lib/Horde/SQL/Attributes.php %%HORDEDIR%%/lib/Horde/SQL/Keywords.php %%HORDEDIR%%/lib/Horde/Scheduler.php %%HORDEDIR%%/lib/Horde/Scheduler/cron.php %%HORDEDIR%%/lib/Horde/Search.php %%HORDEDIR%%/lib/Horde/Search/google.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/memcached.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/SyncML.php %%HORDEDIR%%/lib/Horde/SyncML/Backend.php %%HORDEDIR%%/lib/Horde/SyncML/Command.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Alert.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Final.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Get.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Map.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Put.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Results.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Status.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Sync.php %%HORDEDIR%%/lib/Horde/SyncML/Command/SyncElement.php %%HORDEDIR%%/lib/Horde/SyncML/Constants.php %%HORDEDIR%%/lib/Horde/SyncML/Device.php %%HORDEDIR%%/lib/Horde/SyncML/Device/P800.php %%HORDEDIR%%/lib/Horde/SyncML/Device/Sync4j.php %%HORDEDIR%%/lib/Horde/SyncML/Device/Synthesis.php %%HORDEDIR%%/lib/Horde/SyncML/DeviceInfo.php %%HORDEDIR%%/lib/Horde/SyncML/ResultsSender.php %%HORDEDIR%%/lib/Horde/SyncML/State.php %%HORDEDIR%%/lib/Horde/SyncML/Sync.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/Timer.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/Table.php %%HORDEDIR%%/lib/Horde/UI/Tabs.php %%HORDEDIR%%/lib/Horde/UI/VarRenderer.php %%HORDEDIR%%/lib/Horde/UI/VarRenderer/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/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/sms2email_http.php %%HORDEDIR%%/lib/Net/SMS/vodafoneitaly_smtp.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/sql.php %%HORDEDIR%%/lib/VFS/sql_file.php %%HORDEDIR%%/lib/XML/RAX.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/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/hu_HU/LC_MESSAGES/horde.mo %%HORDEDIR%%/locale/hu_HU/help.xml %%HORDEDIR%%/locale/id_ID/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/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/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/horde.pot %%HORDEDIR%%/po/hu_HU.po %%HORDEDIR%%/po/id_ID.po %%HORDEDIR%%/po/it_IT.po %%HORDEDIR%%/po/ja_JP.po %%HORDEDIR%%/po/ko_KR.po %%HORDEDIR%%/po/lt_LT.po %%HORDEDIR%%/po/lv_LV.po %%HORDEDIR%%/po/mk_MK.po %%HORDEDIR%%/po/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/create-symlinks.php %%HORDEDIR%%/scripts/crond %%HORDEDIR%%/scripts/get_login.php %%HORDEDIR%%/scripts/http_login_refer.php %%HORDEDIR%%/scripts/ldap/horde.schema %%HORDEDIR%%/scripts/migrate_user_categories.php %%HORDEDIR%%/scripts/remove_prefs.php %%HORDEDIR%%/scripts/set_perms.sh %%HORDEDIR%%/scripts/setup.php %%HORDEDIR%%/scripts/sql/README %%HORDEDIR%%/scripts/sql/README.OCI8 %%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/horde_datatree.mysql.sql %%HORDEDIR%%/scripts/sql/horde_datatree.sql %%HORDEDIR%%/scripts/sql/horde_log.sql %%HORDEDIR%%/scripts/sql/horde_muvfs.sql %%HORDEDIR%%/scripts/sql/horde_prefs.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.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/themes_check.php %%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql %%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.pgsql.sql %%HORDEDIR%%/services/cacheview.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/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/form_sections.js %%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_help_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/agreement_bottom.inc %%HORDEDIR%%/templates/maintenance/agreement_middle.inc %%HORDEDIR%%/templates/maintenance/agreement_top.inc %%HORDEDIR%%/templates/maintenance/confirm_bottom.inc %%HORDEDIR%%/templates/maintenance/confirm_middle.inc %%HORDEDIR%%/templates/maintenance/confirm_top.inc %%HORDEDIR%%/templates/maintenance/javascript.inc %%HORDEDIR%%/templates/maintenance/maintenance_bottom.inc %%HORDEDIR%%/templates/maintenance/maintenance_top.inc %%HORDEDIR%%/templates/maintenance/notice_bottom.inc %%HORDEDIR%%/templates/maintenance/notice_middle.inc %%HORDEDIR%%/templates/maintenance/notice_top.inc %%HORDEDIR%%/templates/menu/menu.inc %%HORDEDIR%%/templates/portal/add.inc %%HORDEDIR%%/templates/portal/block.inc %%HORDEDIR%%/templates/portal/edit.inc %%HORDEDIR%%/templates/portal/empty.inc %%HORDEDIR%%/templates/portal/footer.inc %%HORDEDIR%%/templates/portal/header.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/info.php %%HORDEDIR%%/themes/cornflower/screen.css %%HORDEDIR%%/themes/gennevilliers/info.php %%HORDEDIR%%/themes/gennevilliers/screen.css %%HORDEDIR%%/themes/green/info.php %%HORDEDIR%%/themes/green/screen.css %%HORDEDIR%%/themes/grey/info.php %%HORDEDIR%%/themes/grey/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/az.png %%HORDEDIR%%/themes/graphics/blank.gif %%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/delete-small.png %%HORDEDIR%%/themes/graphics/delete.png %%HORDEDIR%%/themes/graphics/devel.png %%HORDEDIR%%/themes/graphics/download.png %%HORDEDIR%%/themes/graphics/edit.png %%HORDEDIR%%/themes/graphics/edit-small.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/flip.png %%HORDEDIR%%/themes/graphics/image/grayscale.png %%HORDEDIR%%/themes/graphics/image/mirror.png %%HORDEDIR%%/themes/graphics/image/ratio.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/mail.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/csv.png %%HORDEDIR%%/themes/graphics/mime/deb.png %%HORDEDIR%%/themes/graphics/mime/encryption.png %%HORDEDIR%%/themes/graphics/mime/executable.png %%HORDEDIR%%/themes/graphics/mime/html.png %%HORDEDIR%%/themes/graphics/mime/icalendar.png %%HORDEDIR%%/themes/graphics/mime/image.png %%HORDEDIR%%/themes/graphics/mime/inf.png %%HORDEDIR%%/themes/graphics/mime/mail.png %%HORDEDIR%%/themes/graphics/mime/makefile.png %%HORDEDIR%%/themes/graphics/mime/msexcel.png %%HORDEDIR%%/themes/graphics/mime/msi.png %%HORDEDIR%%/themes/graphics/mime/msp.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/quicktime.png %%HORDEDIR%%/themes/graphics/mime/readme.png %%HORDEDIR%%/themes/graphics/mime/realaudio.png %%HORDEDIR%%/themes/graphics/mime/rpm.png %%HORDEDIR%%/themes/graphics/mime/script-asa.png %%HORDEDIR%%/themes/graphics/mime/script-asp.png %%HORDEDIR%%/themes/graphics/mime/script-js.png %%HORDEDIR%%/themes/graphics/mime/setup.png %%HORDEDIR%%/themes/graphics/mime/signed.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/unknown.png %%HORDEDIR%%/themes/graphics/mime/vcard.png %%HORDEDIR%%/themes/graphics/mime/video.png %%HORDEDIR%%/themes/graphics/mime/xcode.png %%HORDEDIR%%/themes/graphics/mime/xml.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/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-minusonly.png %%HORDEDIR%%/themes/graphics/tree/rev-joinbottom-down.png %%HORDEDIR%%/themes/graphics/tree/rev-plusonly.png %%HORDEDIR%%/themes/graphics/tree/rev-line.png %%HORDEDIR%%/themes/graphics/tree/rev-minusbottom.png %%HORDEDIR%%/themes/graphics/tree/rev-plus.png %%HORDEDIR%%/themes/graphics/tree/rev-plusbottom.png %%HORDEDIR%%/themes/graphics/tree/rev-leaf.png %%HORDEDIR%%/themes/graphics/tree/rev-joinbottom.png %%HORDEDIR%%/themes/graphics/tree/rev-nullonly.png %%HORDEDIR%%/themes/graphics/tree/rev-minus.png %%HORDEDIR%%/themes/graphics/tree/rev-plustop.png %%HORDEDIR%%/themes/graphics/tree/rev-minustop.png %%HORDEDIR%%/themes/graphics/unlocked.png %%HORDEDIR%%/themes/graphics/user.png %%HORDEDIR%%/themes/graphics/website.png %%HORDEDIR%%/themes/graphics/za.png %%HORDEDIR%%/themes/ie.css %%HORDEDIR%%/themes/ie5mac.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/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/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/regex_test.php @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 @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/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/alerts @dirrm %%HORDEDIR%%/themes/graphics @dirrm %%HORDEDIR%%/themes/grey @dirrm %%HORDEDIR%%/themes/green @dirrm %%HORDEDIR%%/themes/gennevilliers @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/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/ja_JP/LC_MESSAGES @dirrm %%HORDEDIR%%/locale/ja_JP @dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES @dirrm %%HORDEDIR%%/locale/it_IT @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/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/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/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/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/SyncML/Device @dirrm %%HORDEDIR%%/lib/Horde/SyncML/Command @dirrm %%HORDEDIR%%/lib/Horde/SyncML @dirrm %%HORDEDIR%%/lib/Horde/SessionHandler @dirrm %%HORDEDIR%%/lib/Horde/Search @dirrm %%HORDEDIR%%/lib/Horde/Scheduler @dirrm %%HORDEDIR%%/lib/Horde/SQL @dirrm %%HORDEDIR%%/lib/Horde/Relationship @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/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 @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 @unexec rmdir %D/%%HORDEDIR%%/lib/data 2>/dev/null || true @dirrm %%HORDEDIR%%/lib @dirrm %%HORDEDIR%%/js @unexec rmdir %D/%%HORDEDIR%%/config 2>/dev/null || true @dirrm %%HORDEDIR%%/admin/setup @dirrm %%HORDEDIR%%/admin/perms @dirrm %%HORDEDIR%%/admin/locale/fi_FI @dirrm %%HORDEDIR%%/admin/locale/en_US @dirrm %%HORDEDIR%%/admin/locale @dirrm %%HORDEDIR%%/admin @unexec rmdir %D/%%HORDEDIR%% 2>/dev/null || true %%PORTDOCS%%@dirrm %%DOCSDIR%% -@unexec rmdir %D/etc/horde 2>/dev/null || true +%%RMDIRINC%%@unexec rmdir %D/%%HORDE_INC%% 2>/dev/null || true Property changes on: head/www/horde-base/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/www/horde-passwd/Makefile =================================================================== --- head/www/horde-passwd/Makefile (revision 152846) +++ head/www/horde-passwd/Makefile (revision 152847) @@ -1,80 +1,89 @@ # Ports collection makefile for: horde-passwd # Date created: Thu Feb 12, 2004 # Whom: João Carlos Mendes Luís () # # $FreeBSD$ # PORTNAME= horde-passwd PORTVERSION= 3.0 CATEGORIES= www mail MASTER_SITES= ftp://ftp.horde.org/pub/passwd/ \ ftp://ftp.planetmirror.com/pub/horde/passwd/ \ ftp://ftp.au.horde.org/pub/horde/passwd/ \ ftp://ftp.be.horde.org/passwd/ \ ftp://ftp.es.horde.org/pub/passwd/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/passwd/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/passwd/ \ http://ftp.horde.org/pub/passwd/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/passwd/ DISTNAME= passwd-h3-${PORTVERSION} DIST_SUBDIR= horde MAINTAINER= ports@FreeBSD.org COMMENT= A password changing module for Horde RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde NO_BUILD= yes +USE_APACHE= 1.3+ # needed to test APACHE_VERSION -PLIST_SUB= LPWDDIR=${LPWDDIR} PWDDIR=${PWDDIR} +PLIST_SUB= LPWDDIR=${LPWDDIR} PWDDIR=${PWDDIR} \ + HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||} PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +SUB_FILES= pkg-message pkg-deinstall SUB_LIST= PWDDIR=${PWDDIR} CONFDIR=${CONFDIR} HORDEDIR=${HORDEDIR} DOCS= LICENSE README docs/CHANGES docs/CREDITS docs/INSTALL \ docs/RELEASE_NOTES docs/TODO SUB_DIRS= config lib locale po scripts templates themes CONFFILE= backends.php LHORDEDIR?= www/horde LPWDDIR?= ${LHORDEDIR}/passwd HORDEDIR= ${PREFIX}/${LHORDEDIR} PWDDIR= ${PREFIX}/${LPWDDIR} CONFDIR= ${PWDDIR}/config +.include + +.if ${APACHE_VERSION} >= 20 +HORDE_INC= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/}/Includes +.else HORDE_INC= ${LOCALBASE}/etc/horde +.endif pre-configure: @${SED} -e "s:/home/httpd/html/horde/passwd:${PWDDIR}:g" \ - ${FILESDIR}/httpd.conf.pwd > ${WRKDIR}/httpd.conf.pwd + ${FILESDIR}/httpd.conf.pwd > ${WRKDIR}/httpd-pwd.conf do-install: @${MKDIR} ${PWDDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${PWDDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${PWDDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CHOWN} -R www:www ${PWDDIR} @${CHMOD} -R o-rwx ${CONFDIR} - @${CP} -p ${FILESDIR}/httpd.conf.pwd ${HORDE_INC}/httpd.conf.pwd + @${INSTALL_DATA} ${WRKDIR}/httpd-pwd.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: @${ECHO_MSG} @${CAT} ${PKGMESSAGE} @${ECHO_MSG} -.include +.include Property changes on: head/www/horde-passwd/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/www/horde-passwd/files/pkg-deinstall.in =================================================================== --- head/www/horde-passwd/files/pkg-deinstall.in (nonexistent) +++ head/www/horde-passwd/files/pkg-deinstall.in (revision 152847) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Backup horde-passwd config files, if needed. + +if [ x$2 != xDEINSTALL ]; then + exit +fi + +if [ -z "${PACKAGE_BUILDING}" ]; then + for cf in `ls %%PWDDIR%%/config/*php`; do + diff -bBqw $cf $cf.dist >/dev/null 2>&1 + case $? in + 0) # original config file, will be deleted by pkg-plist + ;; + 1) # config file has been updated, must be backuped + cp -p $cf $cf.previous + echo "===> Backing-up..." + echo "---> $cf has been saved ***" + echo "---> as $cf.previous ***" + ;; + *) # not found? + ;; + esac + done +fi Property changes on: head/www/horde-passwd/files/pkg-deinstall.in ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/www/horde-passwd/pkg-plist =================================================================== --- head/www/horde-passwd/pkg-plist (revision 152846) +++ head/www/horde-passwd/pkg-plist (revision 152847) @@ -1,170 +1,170 @@ @unexec /usr/bin/cmp %%PWDDIR%%/config/backends.php %%PWDDIR%%/config/backends.php.dist && /bin/rm -f %%PWDDIR%%/config/backends.php || ${TRUE} %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/TODO %%LPWDDIR%%/config/.htaccess %%LPWDDIR%%/config/backends.php.dist %%LPWDDIR%%/config/conf.xml %%LPWDDIR%%/index.php %%LPWDDIR%%/lib/.htaccess %%LPWDDIR%%/lib/Driver.php %%LPWDDIR%%/lib/Driver/adsi.php %%LPWDDIR%%/lib/Driver/composite.php %%LPWDDIR%%/lib/Driver/expect.php %%LPWDDIR%%/lib/Driver/kolab.php %%LPWDDIR%%/lib/Driver/ldap.php %%LPWDDIR%%/lib/Driver/pine.php %%LPWDDIR%%/lib/Driver/poppassd.php %%LPWDDIR%%/lib/Driver/procopen.php %%LPWDDIR%%/lib/Driver/pspasswd.php %%LPWDDIR%%/lib/Driver/servuftp.php %%LPWDDIR%%/lib/Driver/smbldap.php %%LPWDDIR%%/lib/Driver/smbpasswd.php %%LPWDDIR%%/lib/Driver/sql.php %%LPWDDIR%%/lib/Driver/vmailmgr.php %%LPWDDIR%%/lib/Driver/vpopmail.php %%LPWDDIR%%/lib/Passwd.php %%LPWDDIR%%/lib/base.php %%LPWDDIR%%/lib/version.php %%LPWDDIR%%/locale/ar_SY/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/bg_BG/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/ca_ES/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/cs_CZ/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/da_DK/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/de_DE/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/de_DE/help.xml %%LPWDDIR%%/locale/en_US/help.xml %%LPWDDIR%%/locale/es_ES/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/et_EE/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/fa_IR/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/fa_IR/help.xml %%LPWDDIR%%/locale/fi_FI/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/fi_FI/help.xml %%LPWDDIR%%/locale/fr_FR/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/gl_ES/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/hu_HU/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/hu_HU/help.xml %%LPWDDIR%%/locale/id_ID/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/it_IT/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/lt_LT/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/nl_NL/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/nl_NL/help.xml %%LPWDDIR%%/locale/nn_NO/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/pl_PL/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/pt_BR/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/ro_RO/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/ru_RU/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/ru_RU/help.xml %%LPWDDIR%%/locale/sk_SK/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/sv_SE/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/zh_CN/LC_MESSAGES/passwd.mo %%LPWDDIR%%/locale/zh_TW/LC_MESSAGES/passwd.mo %%LPWDDIR%%/main.php %%LPWDDIR%%/po/.htaccess %%LPWDDIR%%/po/README %%LPWDDIR%%/po/ar_SY.po %%LPWDDIR%%/po/bg_BG.po %%LPWDDIR%%/po/ca_ES.po %%LPWDDIR%%/po/cs_CZ.po %%LPWDDIR%%/po/da_DK.po %%LPWDDIR%%/po/de_DE.po %%LPWDDIR%%/po/es_ES.po %%LPWDDIR%%/po/et_EE.po %%LPWDDIR%%/po/fa_IR.po %%LPWDDIR%%/po/fi_FI.po %%LPWDDIR%%/po/fr_FR.po %%LPWDDIR%%/po/gl_ES.po %%LPWDDIR%%/po/hu_HU.po %%LPWDDIR%%/po/id_ID.po %%LPWDDIR%%/po/it_IT.po %%LPWDDIR%%/po/lt_LT.po %%LPWDDIR%%/po/nl_NL.po %%LPWDDIR%%/po/nn_NO.po %%LPWDDIR%%/po/passwd.pot %%LPWDDIR%%/po/pl_PL.po %%LPWDDIR%%/po/pt_BR.po %%LPWDDIR%%/po/ro_RO.po %%LPWDDIR%%/po/ru_RU.po %%LPWDDIR%%/po/sk_SK.po %%LPWDDIR%%/po/sv_SE.po %%LPWDDIR%%/po/zh_CN.po %%LPWDDIR%%/po/zh_TW.po %%LPWDDIR%%/scripts/.htaccess %%LPWDDIR%%/scripts/kpasswd_expect %%LPWDDIR%%/scripts/passwd_expect %%LPWDDIR%%/templates/.htaccess %%LPWDDIR%%/templates/common-header.inc %%LPWDDIR%%/templates/main/main.inc %%LPWDDIR%%/test.php %%LPWDDIR%%/themes/graphics/favicon.ico %%LPWDDIR%%/themes/graphics/passwd.png -etc/horde/httpd.conf.pwd +%%HORDE_INC%%/httpd-pwd.conf %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm %%LPWDDIR%%/themes/graphics @dirrm %%LPWDDIR%%/themes @dirrm %%LPWDDIR%%/templates/main @dirrm %%LPWDDIR%%/templates @dirrm %%LPWDDIR%%/scripts @dirrm %%LPWDDIR%%/po @dirrm %%LPWDDIR%%/locale/zh_TW/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/zh_TW @dirrm %%LPWDDIR%%/locale/zh_CN/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/zh_CN @dirrm %%LPWDDIR%%/locale/sv_SE/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/sv_SE @dirrm %%LPWDDIR%%/locale/sk_SK/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/sk_SK @dirrm %%LPWDDIR%%/locale/ru_RU/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/ru_RU @dirrm %%LPWDDIR%%/locale/ro_RO/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/ro_RO @dirrm %%LPWDDIR%%/locale/pt_BR/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/pt_BR @dirrm %%LPWDDIR%%/locale/pl_PL/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/pl_PL @dirrm %%LPWDDIR%%/locale/nn_NO/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/nn_NO @dirrm %%LPWDDIR%%/locale/nl_NL/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/nl_NL @dirrm %%LPWDDIR%%/locale/lt_LT/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/lt_LT @dirrm %%LPWDDIR%%/locale/it_IT/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/it_IT @dirrm %%LPWDDIR%%/locale/id_ID/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/id_ID @dirrm %%LPWDDIR%%/locale/hu_HU/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/hu_HU @dirrm %%LPWDDIR%%/locale/gl_ES/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/gl_ES @dirrm %%LPWDDIR%%/locale/fr_FR/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/fr_FR @dirrm %%LPWDDIR%%/locale/fi_FI/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/fi_FI @dirrm %%LPWDDIR%%/locale/fa_IR/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/fa_IR @dirrm %%LPWDDIR%%/locale/et_EE/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/et_EE @dirrm %%LPWDDIR%%/locale/es_ES/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/es_ES @dirrm %%LPWDDIR%%/locale/en_US @dirrm %%LPWDDIR%%/locale/de_DE/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/de_DE @dirrm %%LPWDDIR%%/locale/da_DK/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/da_DK @dirrm %%LPWDDIR%%/locale/cs_CZ/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/cs_CZ @dirrm %%LPWDDIR%%/locale/ca_ES/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/ca_ES @dirrm %%LPWDDIR%%/locale/bg_BG/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/bg_BG @dirrm %%LPWDDIR%%/locale/ar_SY/LC_MESSAGES @dirrm %%LPWDDIR%%/locale/ar_SY @dirrm %%LPWDDIR%%/locale @dirrm %%LPWDDIR%%/lib/Driver @dirrm %%LPWDDIR%%/lib @unexec rmdir %D/%%LPWDDIR%%/config 2>/dev/null || true @unexec rmdir %D/%%LPWDDIR%% 2>/dev/null || true Property changes on: head/www/horde-passwd/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/www/horde4-base/Makefile =================================================================== --- head/www/horde4-base/Makefile (revision 152846) +++ head/www/horde4-base/Makefile (revision 152847) @@ -1,364 +1,377 @@ # Ports collection makefile for: horde2 # Date created: Sun Oct 07, 2001 # Whom: Thierry Thomas () # # $FreeBSD$ # PORTNAME= horde PORTVERSION= 3.0.9 CATEGORIES= www MASTER_SITES= ftp://ftp.horde.org/pub/horde/ \ ftp://ftp.planetmirror.com/pub/horde/horde/ \ ftp://ftp.au.horde.org/pub/horde/horde/ \ ftp://ftp.be.horde.org/horde/ \ ftp://ftp.es.horde.org/pub/horde/ \ ftp://ftp.it.horde.org/pub/mirror/horde.org/horde/ \ ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/horde/ \ ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/horde/ \ http://ftp.horde.org/pub/horde/ .if defined(WITH_PHP5) PKGNAMESUFFIX= -php5 .endif MAINTAINER= thierry@FreeBSD.org COMMENT= A common code-base used by Horde applications, written in PHP #---------------------------------------------------------------------------- # You may define these options: # -# - WITH_APACHE2: if you run Apache2. -# # - WITH_PHP5: if you run PHP5 (you could use www/horde-php5). # # - WITHOUT_SUPPORTED_DB: if you run a database not in the ports tree. # # - WITHOUT_MYSQL: this port is built with MySQL by default # but you might choose any other database # supported by PHP (e.g. WITH_POSTGRESQL / WITH_SQLITE). # # - WITHOUT_IMAP: this port uses IMAP as a default authentication # backend; use this knob if for # example you only need Chora. # # - WITHOUT_LDAP: if you do not need OpenLDAP. # # - WITHOUT_FTP: if you do not need the VFS FTP driver. # -# - WITHOUT_MCAL: if you don't plan to install Kronolith. +# - WITH_MCAL: if you plan to install Kronolith with mcal (deprecated). # # - WITH_IMSP: use IMSP as a preferences backend. # # - WITHOUT_FILEINFO: use native code to perform MIME magic lookups. # # - WITHOUT_GD: don't perform manipulations on image data with gd. # # - WITHOUT_ZLIB: don't compress pages and don't handle zip or gz data. # # - WITH_MAGICK: use ImageMagick to perform these image manipulations. # # - WITHOUT_ICONV: remove support for UTF-8 character sets. # - WITHOUT_MBSTRING: # # - WITHOUT_WV if your users never receive MS-Word docs; # # - WITHOUT_XL if your users never receive MS-Excel sheets # (or .ppt presentations); # # - WITHOUT_GEOIP don't activate MaxMind GeoIP Hostname to Country lookup. # # - WITHOUT_SW don't use the weather.com block on the portal page. # # - WITHOUT_WEBCPP: don't highlight sources with webcpp. # # - WITH_SRCHIGH: highlight sources with source-highlight. # # - WITH_ENSCRIPT: highlight sources with enscript. # # - WITH_RPM: handle RPM packages. # # - WITH_DEB: handle Debian packages. # # - WITH_SUPHP: Install appropriately for use with the www/suphp port. # #---------------------------------------------------------------------------- RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date \ ${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \ ${PEARDIR}/Mail/RFC822.php:${PORTSDIR}/mail/pear-Mail \ ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime \ ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \ ${PEARDIR}/File.php:${PORTSDIR}/sysutils/pear-File \ ${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP CONFLICTS= horde-2.* NO_BUILD= yes +USE_APACHE= 1.3+ USE_PHP= ctype gettext session USE_REINPLACE= yes 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 WANT_PHP_CGI= yes HORDEADMUSR?= horde SUB_LIST= WITH_SUPHP=yes .else WANT_PHP_MOD= yes .endif .if !defined(WITHOUT_FILEINFO) USE_PHP+= fileinfo .endif .if !defined(WITHOUT_FTP) USE_PHP+= ftp .endif .if !defined(WITHOUT_GD) USE_PHP+= gd .endif .if !defined(WITHOUT_ICONV) USE_PHP+= iconv .endif .if !defined(WITHOUT_IMAP) USE_PHP+= imap .endif .if !defined(WITHOUT_LDAP) USE_PHP+= ldap .endif .if !defined(WITHOUT_MBSTRING) USE_PHP+= mbstring .endif .if !defined(NOCRYPT) USE_PHP+= mcrypt .endif .if !defined(WITHOUT_SUPPORTED_DB) . if !defined(WITHOUT_MYSQL) USE_PHP+= mysql . endif . if defined(WITH_POSTGRESQL) USE_PHP+= pgsql . endif . if defined(WITH_SQLITE) USE_PHP+= sqlite . endif .endif .if !defined(WITHOUT_ZLIB) USE_PHP+= zlib .endif .if defined(WITH_MAGICK) RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick .endif .if defined(WITH_IMSP) RUN_DEPENDS+= imspd:${PORTSDIR}/databases/cyrus-imspd .endif .if !defined(WITHOUT_X11) . if !defined(WITHOUT_WV) RUN_DEPENDS+= ${LOCALBASE}/bin/wvHtml:${PORTSDIR}/textproc/wv . endif . if !defined(WITHOUT_XL) RUN_DEPENDS+= ${LOCALBASE}/bin/xlhtml:${PORTSDIR}/textproc/xlhtml . endif .endif .if !defined(WITHOUT_WEBCPP) RUN_DEPENDS+= webcpp:${PORTSDIR}/textproc/webcpp .endif .if exists(${LOCALBASE}/bin/source-highlight) WITH_SRCHIGH= yes .endif .if defined(WITH_SRCHIGH) RUN_DEPENDS+= source-highlight:${PORTSDIR}/textproc/source-highlight .endif .if exists(${LOCALBASE}/bin/enscript) WITH_ENSCRIPT= yes .endif .if defined(WITH_ENSCRIPT) . if defined(A4) RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-a4 . elif defined(DJ) RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letterdj . else RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letter . endif .endif .if exists(${LOCALBASE}/bin/rpm) WITH_RPM= yes .endif .if defined(WITH_RPM) RUN_DEPENDS+= rpm:${PORTSDIR}/archivers/rpm4 .endif .if exists(${LOCALBASE}/bin/dpkg) WITH_DEB= yes .endif .if defined(WITH_DEB) RUN_DEPENDS+= dpkg:${PORTSDIR}/archivers/dpkg .endif .if !defined(WITHOUT_SW) RUN_DEPENDS+= ${PEARDIR}/Services/Weather.php:${PORTSDIR}/misc/pear-Services_Weather .endif .if !defined(WITHOUT_GEOIP) RUN_DEPENDS+= ${LOCALBASE}/share/GeoIP/GeoIP.dat:${PORTSDIR}/net/GeoIP .endif REINPLACE_ARGS= -i.beforeHorde DOCS= COPYING README docs/CHANGES docs/CODING_STANDARDS \ docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL \ docs/PERFORMANCE docs/RELEASE_NOTES docs/SECURITY docs/TODO \ docs/TRANSLATIONS docs/UPGRADING CONFFILE= conf.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} APACHE_CONF=${APACHE_CONF} HORDESBIN=${HORDESBIN} \ - HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} +PLIST_SUB= HORDEDIR=${LHORDEDIR} HORDESBIN=${LHORDESBIN} \ + HORDE_INC=${LHORDE_INC} +SUB_LIST+= HORDEDIR=${HORDEDIR} APACHE_CONF=${APACHE_CONF} \ + HORDESBIN=${HORDESBIN} HORDEADMUSR=${HORDEADMUSR} HORDEGRP=${WWWGRP} HORDEDIR= ${PREFIX}/${LHORDEDIR} HORDESBIN= ${PREFIX}/${LHORDESBIN} CONFDIR= ${HORDEDIR}/config APACHE_CONF= ${APACHE_CNFDIR}/httpd.conf PEARDIR?= ${LOCALBASE}/share/pear -.if defined(WITH_APACHE2) -APACHE_CNFDIR= ${LOCALBASE}/etc/apache2 -.else -APACHE_CNFDIR= ${LOCALBASE}/etc/apache -.endif -HORDE_INC= ${PREFIX}/etc/horde LOG_FILE?= /var/log/horde.log .if defined(WITH_PHP5) USE_PHP+= dom .else USE_PHP+= domxml -. if !defined(WITHOUT_MCAL) +. if defined(WITH_MCAL) USE_PHP+= mcal . endif .endif 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 # Required to test PHP_VER +.include +.if ${APACHE_VERSION} >= 20 +APACHE_CNFDIR= ${LOCALBASE}/etc/apache${APACHE_VERSION:S/20/2/} +HORDE_INC= ${APACHE_CNFDIR}/Includes +LHORDE_INC= ${HORDE_INC:S|^${LOCALBASE}/||} +PLIST_SUB+= RMDIRINC="@comment " +.else +APACHE_CNFDIR= ${LOCALBASE}/etc/apache +HORDE_INC= ${PREFIX}/etc/horde +LHORDE_INC= ${HORDE_INC:S|^${PREFIX}/||} +PLIST_SUB+= RMDIRINC="" +.endif + pre-configure: @${RM} ${PATCHES2RM:S|^|${WRKSRC}/|:S|$|.orig|} @${SED} -e "s:/home/httpd/html/horde:${HORDEDIR}:" \ -e "s:php_value auto_prepend_file:# php_value auto_prepend_file:" \ -e "s:/home/httpd/phplib:${PEARDIR}:" \ - ${FILESDIR}/httpd.conf.horde > ${WRKDIR}/httpd.conf.horde + ${FILESDIR}/httpd.conf.horde > ${WRKDIR}/httpd-horde.conf .if ${PHP_VER} == 5 - @${REINPLACE_CMD} -e "s:mod_php4.c:mod_php5.c:" ${WRKDIR}/httpd.conf.horde + @${REINPLACE_CMD} -e "s:mod_php4.c:mod_php5.c:" ${WRKDIR}/httpd-horde.conf .endif @${REINPLACE_CMD} -e "s:%%LOCALBASE%%:${LOCALBASE}:" ${WRKSRC}/config/mime_drivers.php.dist .if !defined(WITHOUT_X11) . if !defined(WITHOUT_WV) @${REINPLACE_CMD} -e "s://UNCOMMENTIFWV::" ${WRKSRC}/config/mime_drivers.php.dist . endif . if !defined(WITHOUT_XL) @${REINPLACE_CMD} -e "s://UNCOMMENTIFXL::" ${WRKSRC}/config/mime_drivers.php.dist . endif .endif .if !defined(WITHOUT_WEBCPP) @${REINPLACE_CMD} -e "s://UNCOMMENTIFWCPP::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_SRCHIGH) @${REINPLACE_CMD} -e "s://UNCOMMENTIFSRCHIGH::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_ENSCRIPT) @${REINPLACE_CMD} -e "s://UNCOMMENTIFES::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_RPM) @${REINPLACE_CMD} -e "s://UNCOMMENTIFRPM::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if defined(WITH_DEB) @${REINPLACE_CMD} -e "s://UNCOMMENTIFDEB::" ${WRKSRC}/config/mime_drivers.php.dist .endif .if !defined(WITHOUT_GEOIP) @${REINPLACE_CMD} -e "s:GeoIP lookup will not be performed.\"/>:GeoIP lookup will not be performed.\">${LOCALBASE}/share/GeoIP/GeoIP.dat:" \ ${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|} pre-install: .if !defined(WITHOUT_SUPPORTED_DB) @if ! php -m | ${GREP} -q -e "mysql" ; then \ if ! php -m | ${GREP} -q -e "pgsql" ; then \ if ! php -m | ${GREP} -q -e "sybase" ; then \ if ! php -m | ${GREP} -q -e "SQLite" ; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please configure PHP with a database support." ; \ ${ECHO_MSG} "MySQL, PostgreSQL, SQLite and Sybase (CTLIB or DBLIB)" ; \ ${ECHO_MSG} "can be used with PHP AND Horde." ; \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "(If everything will run on this machine, do not" ; \ ${ECHO_MSG} " forget to install the database server-side!)" ; \ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi ; \ fi ; \ fi ; \ fi .endif .if defined(WITH_SUPHP) ${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL .endif do-install: @${MKDIR} ${HORDEDIR} .for REP in ${SUB_DIRS} @${CP} -Rp ${WRKSRC}/${REP} ${HORDEDIR} .endfor @${CP} -p ${WRKSRC}/*.php ${HORDEDIR} .for FILE in ${CONFFILE} @if [ ! -f ${CONFDIR}/${FILE} ]; then \ ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor @${CP} ${WRKSRC}/scripts/set_perms.sh ${HORDESBIN}/horde_set_perms.sh @${CHMOD} u+x ${HORDESBIN}/horde_set_perms.sh +.if ${APACHE_VERSION} >= 20 + ${INSTALL_DATA} ${WRKDIR}/httpd-horde.conf ${HORDE_INC} +.else @${MKDIR} ${HORDE_INC} - @${INSTALL_DATA} ${WRKDIR}/httpd.conf.horde ${HORDE_INC} + @${INSTALL_DATA} ${WRKDIR}/httpd-horde.conf ${HORDE_INC} +. if !defined(PACKAGE_BUILDING) @(if [ -f ${APACHE_CONF} ] ; then \ ${ECHO_MSG} "===> Updating ${APACHE_CONF}..." ; \ + ${CP} -p ${APACHE_CONF} ${APACHE_CONF}.beforeHorde ; \ ${ECHO_CMD} "# Horde's include directory" >> ${APACHE_CONF} ; \ ${ECHO_CMD} "Include ${HORDE_INC}" >> ${APACHE_CONF} ; \ fi) +. endif +.endif @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${HORDEDIR} @${CHMOD} -R o-rwx ${CONFDIR} @${TOUCH} ${LOG_FILE} @${CHOWN} ${WWWOWN}:${WWWGRP} ${LOG_FILE} .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 Property changes on: head/www/horde4-base/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.27 \ No newline at end of property +1.28 \ No newline at end of property Index: head/www/horde4-base/pkg-plist =================================================================== --- head/www/horde4-base/pkg-plist (revision 152846) +++ head/www/horde4-base/pkg-plist (revision 152847) @@ -1,1593 +1,1593 @@ -etc/horde/httpd.conf.horde +%%HORDE_INC%%/httpd-horde.conf %%HORDESBIN%%/horde_set_perms.sh %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/CODING_STANDARDS %%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTING %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/HACKING %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/PERFORMANCE %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES %%PORTDOCS%%%%DOCSDIR%%/SECURITY %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/TRANSLATIONS %%PORTDOCS%%%%DOCSDIR%%/UPGRADING %%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/perms/addchild.php %%HORDEDIR%%/admin/perms/delete.php %%HORDEDIR%%/admin/perms/edit.php %%HORDEDIR%%/admin/perms/index.php %%HORDEDIR%%/admin/phpshell.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 %%HORDEDIR%%/config/conf.php.dist %%HORDEDIR%%/config/conf.xml %%HORDEDIR%%/config/hooks.php.dist %%HORDEDIR%%/config/mime_drivers.php %%HORDEDIR%%/config/mime_drivers.php.dist %%HORDEDIR%%/config/motd.php %%HORDEDIR%%/config/motd.php.dist %%HORDEDIR%%/config/nls.php %%HORDEDIR%%/config/nls.php.dist %%HORDEDIR%%/config/prefs.php %%HORDEDIR%%/config/prefs.php.dist %%HORDEDIR%%/config/registry.php %%HORDEDIR%%/config/registry.php.dist %%HORDEDIR%%/index.php %%HORDEDIR%%/js/addEvent.php %%HORDEDIR%%/js/alphaImageLoader.php %%HORDEDIR%%/js/ieEscGuard.js %%HORDEDIR%%/js/enter_key_trap.js %%HORDEDIR%%/js/form_assign.js %%HORDEDIR%%/js/form_helpers.js %%HORDEDIR%%/js/hideable.js %%HORDEDIR%%/js/httpclient.js %%HORDEDIR%%/js/image.js %%HORDEDIR%%/js/open_colorpicker.js %%HORDEDIR%%/js/popup.js %%HORDEDIR%%/js/sorter.js %%HORDEDIR%%/js/stripe.js %%HORDEDIR%%/js/tooltip.js %%HORDEDIR%%/lib/.htaccess %%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/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/radius.php %%HORDEDIR%%/lib/Horde/Auth/sasl.php %%HORDEDIR%%/lib/Horde/Auth/smb.php %%HORDEDIR%%/lib/Horde/Auth/sql.php %%HORDEDIR%%/lib/Horde/Auth/yahoo.php %%HORDEDIR%%/lib/Horde/Block.php %%HORDEDIR%%/lib/Horde/Block/Collection.php %%HORDEDIR%%/lib/Horde/Block/Layout.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/palm.php %%HORDEDIR%%/lib/Horde/Data/pdb.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/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/Help.php %%HORDEDIR%%/lib/Horde/History.php %%HORDEDIR%%/lib/Horde/IMAP/ACL.php %%HORDEDIR%%/lib/Horde/IMAP/ACL/rfc2086.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/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/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/Relationship/Manager.php %%HORDEDIR%%/lib/Horde/SQL.php %%HORDEDIR%%/lib/Horde/SQL/Attributes.php %%HORDEDIR%%/lib/Horde/SQL/Keywords.php %%HORDEDIR%%/lib/Horde/Scheduler.php %%HORDEDIR%%/lib/Horde/Scheduler/cron.php %%HORDEDIR%%/lib/Horde/Search.php %%HORDEDIR%%/lib/Horde/Search/google.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/memcached.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/SyncML.php %%HORDEDIR%%/lib/Horde/SyncML/Backend.php %%HORDEDIR%%/lib/Horde/SyncML/Command.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Alert.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Final.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Get.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Map.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Put.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Results.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Status.php %%HORDEDIR%%/lib/Horde/SyncML/Command/Sync.php %%HORDEDIR%%/lib/Horde/SyncML/Command/SyncElement.php %%HORDEDIR%%/lib/Horde/SyncML/Constants.php %%HORDEDIR%%/lib/Horde/SyncML/Device.php %%HORDEDIR%%/lib/Horde/SyncML/Device/P800.php %%HORDEDIR%%/lib/Horde/SyncML/Device/Sync4j.php %%HORDEDIR%%/lib/Horde/SyncML/Device/Synthesis.php %%HORDEDIR%%/lib/Horde/SyncML/DeviceInfo.php %%HORDEDIR%%/lib/Horde/SyncML/ResultsSender.php %%HORDEDIR%%/lib/Horde/SyncML/State.php %%HORDEDIR%%/lib/Horde/SyncML/Sync.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/Timer.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/Table.php %%HORDEDIR%%/lib/Horde/UI/Tabs.php %%HORDEDIR%%/lib/Horde/UI/VarRenderer.php %%HORDEDIR%%/lib/Horde/UI/VarRenderer/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/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/sms2email_http.php %%HORDEDIR%%/lib/Net/SMS/vodafoneitaly_smtp.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/sql.php %%HORDEDIR%%/lib/VFS/sql_file.php %%HORDEDIR%%/lib/XML/RAX.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/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/hu_HU/LC_MESSAGES/horde.mo %%HORDEDIR%%/locale/hu_HU/help.xml %%HORDEDIR%%/locale/id_ID/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/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/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/horde.pot %%HORDEDIR%%/po/hu_HU.po %%HORDEDIR%%/po/id_ID.po %%HORDEDIR%%/po/it_IT.po %%HORDEDIR%%/po/ja_JP.po %%HORDEDIR%%/po/ko_KR.po %%HORDEDIR%%/po/lt_LT.po %%HORDEDIR%%/po/lv_LV.po %%HORDEDIR%%/po/mk_MK.po %%HORDEDIR%%/po/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/create-symlinks.php %%HORDEDIR%%/scripts/crond %%HORDEDIR%%/scripts/get_login.php %%HORDEDIR%%/scripts/http_login_refer.php %%HORDEDIR%%/scripts/ldap/horde.schema %%HORDEDIR%%/scripts/migrate_user_categories.php %%HORDEDIR%%/scripts/remove_prefs.php %%HORDEDIR%%/scripts/set_perms.sh %%HORDEDIR%%/scripts/setup.php %%HORDEDIR%%/scripts/sql/README %%HORDEDIR%%/scripts/sql/README.OCI8 %%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/horde_datatree.mysql.sql %%HORDEDIR%%/scripts/sql/horde_datatree.sql %%HORDEDIR%%/scripts/sql/horde_log.sql %%HORDEDIR%%/scripts/sql/horde_muvfs.sql %%HORDEDIR%%/scripts/sql/horde_prefs.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.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/themes_check.php %%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.mysql.sql %%HORDEDIR%%/scripts/upgrades/2.2_to_3.0.pgsql.sql %%HORDEDIR%%/services/cacheview.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/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/form_sections.js %%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_help_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/agreement_bottom.inc %%HORDEDIR%%/templates/maintenance/agreement_middle.inc %%HORDEDIR%%/templates/maintenance/agreement_top.inc %%HORDEDIR%%/templates/maintenance/confirm_bottom.inc %%HORDEDIR%%/templates/maintenance/confirm_middle.inc %%HORDEDIR%%/templates/maintenance/confirm_top.inc %%HORDEDIR%%/templates/maintenance/javascript.inc %%HORDEDIR%%/templates/maintenance/maintenance_bottom.inc %%HORDEDIR%%/templates/maintenance/maintenance_top.inc %%HORDEDIR%%/templates/maintenance/notice_bottom.inc %%HORDEDIR%%/templates/maintenance/notice_middle.inc %%HORDEDIR%%/templates/maintenance/notice_top.inc %%HORDEDIR%%/templates/menu/menu.inc %%HORDEDIR%%/templates/portal/add.inc %%HORDEDIR%%/templates/portal/block.inc %%HORDEDIR%%/templates/portal/edit.inc %%HORDEDIR%%/templates/portal/empty.inc %%HORDEDIR%%/templates/portal/footer.inc %%HORDEDIR%%/templates/portal/header.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/info.php %%HORDEDIR%%/themes/cornflower/screen.css %%HORDEDIR%%/themes/gennevilliers/info.php %%HORDEDIR%%/themes/gennevilliers/screen.css %%HORDEDIR%%/themes/green/info.php %%HORDEDIR%%/themes/green/screen.css %%HORDEDIR%%/themes/grey/info.php %%HORDEDIR%%/themes/grey/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/az.png %%HORDEDIR%%/themes/graphics/blank.gif %%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/delete-small.png %%HORDEDIR%%/themes/graphics/delete.png %%HORDEDIR%%/themes/graphics/devel.png %%HORDEDIR%%/themes/graphics/download.png %%HORDEDIR%%/themes/graphics/edit.png %%HORDEDIR%%/themes/graphics/edit-small.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/flip.png %%HORDEDIR%%/themes/graphics/image/grayscale.png %%HORDEDIR%%/themes/graphics/image/mirror.png %%HORDEDIR%%/themes/graphics/image/ratio.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/mail.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/csv.png %%HORDEDIR%%/themes/graphics/mime/deb.png %%HORDEDIR%%/themes/graphics/mime/encryption.png %%HORDEDIR%%/themes/graphics/mime/executable.png %%HORDEDIR%%/themes/graphics/mime/html.png %%HORDEDIR%%/themes/graphics/mime/icalendar.png %%HORDEDIR%%/themes/graphics/mime/image.png %%HORDEDIR%%/themes/graphics/mime/inf.png %%HORDEDIR%%/themes/graphics/mime/mail.png %%HORDEDIR%%/themes/graphics/mime/makefile.png %%HORDEDIR%%/themes/graphics/mime/msexcel.png %%HORDEDIR%%/themes/graphics/mime/msi.png %%HORDEDIR%%/themes/graphics/mime/msp.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/quicktime.png %%HORDEDIR%%/themes/graphics/mime/readme.png %%HORDEDIR%%/themes/graphics/mime/realaudio.png %%HORDEDIR%%/themes/graphics/mime/rpm.png %%HORDEDIR%%/themes/graphics/mime/script-asa.png %%HORDEDIR%%/themes/graphics/mime/script-asp.png %%HORDEDIR%%/themes/graphics/mime/script-js.png %%HORDEDIR%%/themes/graphics/mime/setup.png %%HORDEDIR%%/themes/graphics/mime/signed.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/unknown.png %%HORDEDIR%%/themes/graphics/mime/vcard.png %%HORDEDIR%%/themes/graphics/mime/video.png %%HORDEDIR%%/themes/graphics/mime/xcode.png %%HORDEDIR%%/themes/graphics/mime/xml.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/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-minusonly.png %%HORDEDIR%%/themes/graphics/tree/rev-joinbottom-down.png %%HORDEDIR%%/themes/graphics/tree/rev-plusonly.png %%HORDEDIR%%/themes/graphics/tree/rev-line.png %%HORDEDIR%%/themes/graphics/tree/rev-minusbottom.png %%HORDEDIR%%/themes/graphics/tree/rev-plus.png %%HORDEDIR%%/themes/graphics/tree/rev-plusbottom.png %%HORDEDIR%%/themes/graphics/tree/rev-leaf.png %%HORDEDIR%%/themes/graphics/tree/rev-joinbottom.png %%HORDEDIR%%/themes/graphics/tree/rev-nullonly.png %%HORDEDIR%%/themes/graphics/tree/rev-minus.png %%HORDEDIR%%/themes/graphics/tree/rev-plustop.png %%HORDEDIR%%/themes/graphics/tree/rev-minustop.png %%HORDEDIR%%/themes/graphics/unlocked.png %%HORDEDIR%%/themes/graphics/user.png %%HORDEDIR%%/themes/graphics/website.png %%HORDEDIR%%/themes/graphics/za.png %%HORDEDIR%%/themes/ie.css %%HORDEDIR%%/themes/ie5mac.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/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/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/regex_test.php @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 @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/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/alerts @dirrm %%HORDEDIR%%/themes/graphics @dirrm %%HORDEDIR%%/themes/grey @dirrm %%HORDEDIR%%/themes/green @dirrm %%HORDEDIR%%/themes/gennevilliers @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/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/ja_JP/LC_MESSAGES @dirrm %%HORDEDIR%%/locale/ja_JP @dirrm %%HORDEDIR%%/locale/it_IT/LC_MESSAGES @dirrm %%HORDEDIR%%/locale/it_IT @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/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/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/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/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/SyncML/Device @dirrm %%HORDEDIR%%/lib/Horde/SyncML/Command @dirrm %%HORDEDIR%%/lib/Horde/SyncML @dirrm %%HORDEDIR%%/lib/Horde/SessionHandler @dirrm %%HORDEDIR%%/lib/Horde/Search @dirrm %%HORDEDIR%%/lib/Horde/Scheduler @dirrm %%HORDEDIR%%/lib/Horde/SQL @dirrm %%HORDEDIR%%/lib/Horde/Relationship @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/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 @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 @unexec rmdir %D/%%HORDEDIR%%/lib/data 2>/dev/null || true @dirrm %%HORDEDIR%%/lib @dirrm %%HORDEDIR%%/js @unexec rmdir %D/%%HORDEDIR%%/config 2>/dev/null || true @dirrm %%HORDEDIR%%/admin/setup @dirrm %%HORDEDIR%%/admin/perms @dirrm %%HORDEDIR%%/admin/locale/fi_FI @dirrm %%HORDEDIR%%/admin/locale/en_US @dirrm %%HORDEDIR%%/admin/locale @dirrm %%HORDEDIR%%/admin @unexec rmdir %D/%%HORDEDIR%% 2>/dev/null || true %%PORTDOCS%%@dirrm %%DOCSDIR%% -@unexec rmdir %D/etc/horde 2>/dev/null || true +%%RMDIRINC%%@unexec rmdir %D/%%HORDE_INC%% 2>/dev/null || true Property changes on: head/www/horde4-base/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property