diff options
author | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-04-08 23:42:31 +0000 |
---|---|---|
committer | Andrew Pantyukhin <sat@FreeBSD.org> | 2007-04-08 23:42:31 +0000 |
commit | 1e0d8c9112e8493a5f7edfd1134a422c3e3efac3 (patch) | |
tree | 8195bcc94557ed871bb3862c71b9314dc2c43bd8 /deskutils/horde-mnemo | |
parent | 3e50ab625e240bab15b5babee4112f1f654cae5d (diff) |
Notes
Diffstat (limited to 'deskutils/horde-mnemo')
-rw-r--r-- | deskutils/horde-mnemo/Makefile | 62 | ||||
-rw-r--r-- | deskutils/horde-mnemo/files/pkg-deinstall.in | 24 | ||||
-rw-r--r-- | deskutils/horde-mnemo/files/pkg-install.in | 23 | ||||
-rw-r--r-- | deskutils/horde-mnemo/files/pkg-message.in | 7 | ||||
-rw-r--r-- | deskutils/horde-mnemo/pkg-plist | 381 |
5 files changed, 198 insertions, 299 deletions
diff --git a/deskutils/horde-mnemo/Makefile b/deskutils/horde-mnemo/Makefile index ba9327b1d2e5..4733d120146a 100644 --- a/deskutils/horde-mnemo/Makefile +++ b/deskutils/horde-mnemo/Makefile @@ -7,69 +7,15 @@ PORTNAME= mnemo PORTVERSION= 2.1.1 -DISTVERSIONPREFIX= h3- PORTREVISION= 1 CATEGORIES= deskutils www -MASTER_SITES= HORDE -DISTNAME= ${PORTNAME}-h3-${PORTVERSION} MAINTAINER= beech@alaskaparadise.com COMMENT= Mnemo is the Horde notes and memos application -RUN_DEPENDS= ${LOCALBASE}/${LHORDEDIR}/rpc.php:${PORTSDIR}/www/horde-base - -NO_BUILD= yes +USE_HORDE= base USE_GETTEXT= yes +PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES TODO UPGRADING -PLIST_SUB= MNEMODIR=${LMNEMODIR} -PKGMESSAGE= ${WRKDIR}/pkg-message -PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -SUB_FILES= pkg-message pkg-install pkg-deinstall -SUB_LIST= MNEMODIR=${MNEMODIR} - -REINPLACE_ARGS= -i "" -PORTDOCS= README CHANGES CREDITS INSTALL \ - RELEASE_NOTES TODO UPGRADING -CONFFILE= prefs.php -SUB_DIRS= config js lib locale po scripts templates themes - -LHORDEDIR?= www/horde -LMNEMODIR?= ${LHORDEDIR}/mnemo - -MNEMODIR= ${PREFIX}/${LMNEMODIR} -CONFDIR= ${MNEMODIR}/config - -.include <bsd.port.pre.mk> - -post-extract: - @${MV} ${WRKSRC}/README ${WRKSRC}/docs/ - -pre-configure: - @(cd ${WRKSRC}/scripts && \ - ${FIND} . -name "*.php" -exec \ - ${REINPLACE_CMD} -e "s:/usr/local/bin/php: ${LOCALBASE}/bin/php:;s:/usr/bin/php: ${LOCALBASE}/bin/php:" {} \; ) - -do-install: - @${INSTALL} -d ${MNEMODIR}/ - @${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${MNEMODIR}/ - @${CP} -p ${WRKSRC}/*.php ${MNEMODIR}/ - @${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/ - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${MNEMODIR}/ - @${CHMOD} -R o-rwx ${MNEMODIR}/ - ${ECHO_CMD} @exec ${CHOWN} -R ${WWWOWN}:${WWWGRP}\ - %D/${MNEMODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} - ${ECHO_CMD} @exec ${CHMOD} -R o-rwx\ - %D/${MNEMODIR:S|^${PREFIX}/||}/ >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${INSTALL} -d ${DOCSDIR}/ - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/ - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif - -post-install: - @${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} - -.include <bsd.port.post.mk> +.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk" +.include <bsd.port.mk> diff --git a/deskutils/horde-mnemo/files/pkg-deinstall.in b/deskutils/horde-mnemo/files/pkg-deinstall.in deleted file mode 100644 index 01e0ca9f6e7b..000000000000 --- a/deskutils/horde-mnemo/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup Mnemo config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%MNEMODIR%%/config/*php`; do - diff -bBqw $cf $cf.dist >/dev/null 2>&1 - case $? in - 0) # original config file, delete it - rm -f $cf - ;; - 1) # config file has been updated, leave it alone - ;; - *) # not found? - ;; - esac - done -fi diff --git a/deskutils/horde-mnemo/files/pkg-install.in b/deskutils/horde-mnemo/files/pkg-install.in deleted file mode 100644 index 2b5fd65ba10e..000000000000 --- a/deskutils/horde-mnemo/files/pkg-install.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/usr/sbin:/usr/bin:/bin ; export PATH - -case $2 in - PRE-INSTALL) - ;; - - POST-INSTALL) - if [ -z "${PACKAGE_BUILDING}" ]; then - # Copy over sample config files unless they already exist - - for cf in `ls %%MNEMODIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac diff --git a/deskutils/horde-mnemo/files/pkg-message.in b/deskutils/horde-mnemo/files/pkg-message.in index bbd8d585a94d..07089e835ce8 100644 --- a/deskutils/horde-mnemo/files/pkg-message.in +++ b/deskutils/horde-mnemo/files/pkg-message.in @@ -1,15 +1,14 @@ ************************************************************************ -Mnemo has been installed in %%MNEMODIR%% with your blank +Mnemo has been installed in %%HORDIR%% with your blank configuration files. -Horde must be configured; if not, see `pkg_info -D -x horde'. +Horde must be configured; if not, see `pkg_info -Dx horde-base'. Then, you have to create the table mnemo_memos, from the SQL script -%%MNEMODIR%%/scripts/sql/mnemo.sql +%%HORDIR%%/scripts/sql/mnemo.sql For example, if your database is MySQL, you may run mysql --user=root --password=yourpass horde < mnemo.sql Finally, you must login to Horde as a Horde Administrator to finish the configuration. - ************************************************************************ diff --git a/deskutils/horde-mnemo/pkg-plist b/deskutils/horde-mnemo/pkg-plist index 1812bb6810af..d9f44485e44c 100644 --- a/deskutils/horde-mnemo/pkg-plist +++ b/deskutils/horde-mnemo/pkg-plist @@ -1,190 +1,191 @@ -%%MNEMODIR%%/config/.htaccess -%%MNEMODIR%%/config/conf.xml -%%MNEMODIR%%/config/prefs.php.dist -%%MNEMODIR%%/data.php -%%MNEMODIR%%/index.php -%%MNEMODIR%%/js/fixUnstyledOptions.js -%%MNEMODIR%%/js/tables.js -%%MNEMODIR%%/lib/Block/summary.php -%%MNEMODIR%%/lib/Driver.php -%%MNEMODIR%%/lib/Driver/kolab.php -%%MNEMODIR%%/lib/Driver/sql.php -%%MNEMODIR%%/lib/Mnemo.php -%%MNEMODIR%%/lib/api.php -%%MNEMODIR%%/lib/base.php -%%MNEMODIR%%/lib/prefs.php -%%MNEMODIR%%/lib/version.php -%%MNEMODIR%%/list.php -%%MNEMODIR%%/locale/bg_BG/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/cs_CZ/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/da_DK/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/da_DK/help.xml -%%MNEMODIR%%/locale/de_DE/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/de_DE/help.xml -%%MNEMODIR%%/locale/el_GR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/en_US/help.xml -%%MNEMODIR%%/locale/es_ES/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/es_ES/help.xml -%%MNEMODIR%%/locale/fi_FI/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/fi_FI/help.xml -%%MNEMODIR%%/locale/fr_FR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/hu_HU/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/hu_HU/help.xml -%%MNEMODIR%%/locale/it_IT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/it_IT/help.xml -%%MNEMODIR%%/locale/ja_JP/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lt_LT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lv_LV/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/lv_LV/help.xml -%%MNEMODIR%%/locale/nb_NO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/nl_NL/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/nn_NO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pl_PL/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pt_BR/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/pt_PT/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/ro_RO/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/ru_RU/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sk_SK/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sk_SK/help.xml -%%MNEMODIR%%/locale/sl_SI/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/sv_SE/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/tr_TR/help.xml -%%MNEMODIR%%/locale/zh_CN/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/locale/zh_TW/LC_MESSAGES/mnemo.mo -%%MNEMODIR%%/memo.php -%%MNEMODIR%%/notepads.php -%%MNEMODIR%%/po/README -%%MNEMODIR%%/po/bg_BG.po -%%MNEMODIR%%/po/cs_CZ.po -%%MNEMODIR%%/po/da_DK.po -%%MNEMODIR%%/po/de_DE.po -%%MNEMODIR%%/po/el_GR.po -%%MNEMODIR%%/po/es_ES.po -%%MNEMODIR%%/po/fi_FI.po -%%MNEMODIR%%/po/fr_FR.po -%%MNEMODIR%%/po/hu_HU.po -%%MNEMODIR%%/po/it_IT.po -%%MNEMODIR%%/po/ja_JP.po -%%MNEMODIR%%/po/lt_LT.po -%%MNEMODIR%%/po/lv_LV.po -%%MNEMODIR%%/po/mnemo.pot -%%MNEMODIR%%/po/nb_NO.po -%%MNEMODIR%%/po/nl_NL.po -%%MNEMODIR%%/po/nn_NO.po -%%MNEMODIR%%/po/pl_PL.po -%%MNEMODIR%%/po/pt_BR.po -%%MNEMODIR%%/po/pt_PT.po -%%MNEMODIR%%/po/ro_RO.po -%%MNEMODIR%%/po/ru_RU.po -%%MNEMODIR%%/po/sl_SI.po -%%MNEMODIR%%/po/sk_SK.po -%%MNEMODIR%%/po/sv_SE.po -%%MNEMODIR%%/po/zh_CN.po -%%MNEMODIR%%/po/zh_TW.po -%%MNEMODIR%%/scripts/.htaccess -%%MNEMODIR%%/scripts/import_vnotes.php -%%MNEMODIR%%/scripts/sql/mnemo.mssql.sql -%%MNEMODIR%%/scripts/sql/mnemo.oci8.sql -%%MNEMODIR%%/scripts/sql/mnemo.sql -%%MNEMODIR%%/scripts/sql/mnemo.xml -%%MNEMODIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql -%%MNEMODIR%%/scripts/upgrades/1.1_to_2.0.pgsq.sql -%%MNEMODIR%%/scripts/upgrades/2004-12-21_add_memo_uid.sql -%%MNEMODIR%%/search.php -%%MNEMODIR%%/templates/common-header.inc -%%MNEMODIR%%/templates/data/export.inc -%%MNEMODIR%%/templates/data/import.inc -%%MNEMODIR%%/templates/list/empty.inc -%%MNEMODIR%%/templates/list/header.inc -%%MNEMODIR%%/templates/list/memo_footers.inc -%%MNEMODIR%%/templates/list/memo_headers.inc -%%MNEMODIR%%/templates/list/memo_summaries.inc -%%MNEMODIR%%/templates/memo/memo.inc -%%MNEMODIR%%/templates/menu.inc -%%MNEMODIR%%/templates/notepads/notepads.inc -%%MNEMODIR%%/templates/prefs/notepadselect.inc -%%MNEMODIR%%/templates/search/search.inc -%%MNEMODIR%%/templates/view/memo.inc -%%MNEMODIR%%/themes/graphics/add.png -%%MNEMODIR%%/themes/graphics/az.png -%%MNEMODIR%%/themes/graphics/favicon.ico -%%MNEMODIR%%/themes/graphics/mnemo.png -%%MNEMODIR%%/themes/graphics/notepads.png -%%MNEMODIR%%/themes/graphics/za.png -%%MNEMODIR%%/themes/screen.css -%%MNEMODIR%%/view.php -@dirrm %%MNEMODIR%%/themes/graphics -@dirrm %%MNEMODIR%%/themes -@dirrm %%MNEMODIR%%/templates/view -@dirrm %%MNEMODIR%%/templates/search -@dirrm %%MNEMODIR%%/templates/prefs -@dirrm %%MNEMODIR%%/templates/notepads -@dirrm %%MNEMODIR%%/templates/memo -@dirrm %%MNEMODIR%%/templates/list -@dirrm %%MNEMODIR%%/templates/data -@dirrm %%MNEMODIR%%/templates -@dirrm %%MNEMODIR%%/scripts/upgrades -@dirrm %%MNEMODIR%%/scripts/sql -@dirrm %%MNEMODIR%%/scripts -@dirrm %%MNEMODIR%%/po -@dirrm %%MNEMODIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/zh_TW -@dirrm %%MNEMODIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/zh_CN -@dirrm %%MNEMODIR%%/locale/tr_TR -@dirrm %%MNEMODIR%%/locale/sv_SE/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sv_SE -@dirrm %%MNEMODIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sl_SI/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/sl_SI -@dirrm %%MNEMODIR%%/locale/sk_SK -@dirrm %%MNEMODIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ru_RU -@dirrm %%MNEMODIR%%/locale/ro_RO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ro_RO -@dirrm %%MNEMODIR%%/locale/pt_PT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pt_PT -@dirrm %%MNEMODIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pt_BR -@dirrm %%MNEMODIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/pl_PL -@dirrm %%MNEMODIR%%/locale/nn_NO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nn_NO -@dirrm %%MNEMODIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nl_NL -@dirrm %%MNEMODIR%%/locale/nb_NO/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/nb_NO -@dirrm %%MNEMODIR%%/locale/lv_LV/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/lv_LV -@dirrm %%MNEMODIR%%/locale/lt_LT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/lt_LT -@dirrm %%MNEMODIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/ja_JP -@dirrm %%MNEMODIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/it_IT -@dirrm %%MNEMODIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/hu_HU -@dirrm %%MNEMODIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/fr_FR -@dirrm %%MNEMODIR%%/locale/fi_FI/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/fi_FI -@dirrm %%MNEMODIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/es_ES -@dirrm %%MNEMODIR%%/locale/en_US -@dirrm %%MNEMODIR%%/locale/el_GR/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/el_GR -@dirrm %%MNEMODIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/de_DE -@dirrm %%MNEMODIR%%/locale/da_DK/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/da_DK -@dirrm %%MNEMODIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/cs_CZ -@dirrm %%MNEMODIR%%/locale/bg_BG/LC_MESSAGES -@dirrm %%MNEMODIR%%/locale/bg_BG -@dirrm %%MNEMODIR%%/locale -@dirrm %%MNEMODIR%%/lib/Driver -@dirrm %%MNEMODIR%%/lib/Block -@dirrm %%MNEMODIR%%/lib -@dirrm %%MNEMODIR%%/js -@dirrmtry %%MNEMODIR%%/config -@dirrmtry %%MNEMODIR%% +%%HORDIR%%/config/.htaccess +%%HORDIR%%/config/conf.xml +%%HORDIR%%/config/prefs.php.dist +%%HORDIR%%/data.php +%%HORDIR%%/index.php +%%HORDIR%%/js/fixUnstyledOptions.js +%%HORDIR%%/js/tables.js +%%HORDIR%%/lib/Block/summary.php +%%HORDIR%%/lib/Driver/kolab.php +%%HORDIR%%/lib/Driver/sql.php +%%HORDIR%%/lib/Driver.php +%%HORDIR%%/lib/Mnemo.php +%%HORDIR%%/lib/api.php +%%HORDIR%%/lib/base.php +%%HORDIR%%/lib/prefs.php +%%HORDIR%%/lib/version.php +%%HORDIR%%/list.php +%%HORDIR%%/locale/bg_BG/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/cs_CZ/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/da_DK/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/da_DK/help.xml +%%HORDIR%%/locale/de_DE/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/de_DE/help.xml +%%HORDIR%%/locale/el_GR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/en_US/help.xml +%%HORDIR%%/locale/es_ES/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/es_ES/help.xml +%%HORDIR%%/locale/fi_FI/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/fi_FI/help.xml +%%HORDIR%%/locale/fr_FR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/hu_HU/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/hu_HU/help.xml +%%HORDIR%%/locale/it_IT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/it_IT/help.xml +%%HORDIR%%/locale/ja_JP/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lt_LT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lv_LV/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/lv_LV/help.xml +%%HORDIR%%/locale/nb_NO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/nl_NL/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/nn_NO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pl_PL/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pt_BR/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/pt_PT/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/ro_RO/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/ru_RU/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sk_SK/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sk_SK/help.xml +%%HORDIR%%/locale/sl_SI/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/sv_SE/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/tr_TR/help.xml +%%HORDIR%%/locale/zh_CN/LC_MESSAGES/mnemo.mo +%%HORDIR%%/locale/zh_TW/LC_MESSAGES/mnemo.mo +%%HORDIR%%/memo.php +%%HORDIR%%/notepads.php +%%HORDIR%%/po/README +%%HORDIR%%/po/bg_BG.po +%%HORDIR%%/po/cs_CZ.po +%%HORDIR%%/po/da_DK.po +%%HORDIR%%/po/de_DE.po +%%HORDIR%%/po/el_GR.po +%%HORDIR%%/po/es_ES.po +%%HORDIR%%/po/fi_FI.po +%%HORDIR%%/po/fr_FR.po +%%HORDIR%%/po/hu_HU.po +%%HORDIR%%/po/it_IT.po +%%HORDIR%%/po/ja_JP.po +%%HORDIR%%/po/lt_LT.po +%%HORDIR%%/po/lv_LV.po +%%HORDIR%%/po/mnemo.pot +%%HORDIR%%/po/nb_NO.po +%%HORDIR%%/po/nl_NL.po +%%HORDIR%%/po/nn_NO.po +%%HORDIR%%/po/pl_PL.po +%%HORDIR%%/po/pt_BR.po +%%HORDIR%%/po/pt_PT.po +%%HORDIR%%/po/ro_RO.po +%%HORDIR%%/po/ru_RU.po +%%HORDIR%%/po/sk_SK.po +%%HORDIR%%/po/sl_SI.po +%%HORDIR%%/po/sv_SE.po +%%HORDIR%%/po/zh_CN.po +%%HORDIR%%/po/zh_TW.po +%%HORDIR%%/scripts/.htaccess +%%HORDIR%%/scripts/import_vnotes.php +%%HORDIR%%/scripts/sql/mnemo.mssql.sql +%%HORDIR%%/scripts/sql/mnemo.oci8.sql +%%HORDIR%%/scripts/sql/mnemo.sql +%%HORDIR%%/scripts/sql/mnemo.xml +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql +%%HORDIR%%/scripts/upgrades/1.1_to_2.0.pgsq.sql +%%HORDIR%%/scripts/upgrades/2004-12-21_add_memo_uid.sql +%%HORDIR%%/search.php +%%HORDIR%%/templates/common-header.inc +%%HORDIR%%/templates/data/export.inc +%%HORDIR%%/templates/data/import.inc +%%HORDIR%%/templates/list/empty.inc +%%HORDIR%%/templates/list/header.inc +%%HORDIR%%/templates/list/memo_footers.inc +%%HORDIR%%/templates/list/memo_headers.inc +%%HORDIR%%/templates/list/memo_summaries.inc +%%HORDIR%%/templates/memo/memo.inc +%%HORDIR%%/templates/menu.inc +%%HORDIR%%/templates/notepads/notepads.inc +%%HORDIR%%/templates/prefs/notepadselect.inc +%%HORDIR%%/templates/search/search.inc +%%HORDIR%%/templates/view/memo.inc +%%HORDIR%%/themes/graphics/add.png +%%HORDIR%%/themes/graphics/az.png +%%HORDIR%%/themes/graphics/favicon.ico +%%HORDIR%%/themes/graphics/mnemo.png +%%HORDIR%%/themes/graphics/notepads.png +%%HORDIR%%/themes/graphics/za.png +%%HORDIR%%/themes/screen.css +%%HORDIR%%/view.php +@dirrmtry %%HORDIR%%/config +@dirrm %%HORDIR%%/js +@dirrm %%HORDIR%%/lib/Block +@dirrm %%HORDIR%%/lib/Driver +@dirrm %%HORDIR%%/lib +@dirrm %%HORDIR%%/locale/bg_BG/LC_MESSAGES +@dirrm %%HORDIR%%/locale/bg_BG +@dirrm %%HORDIR%%/locale/cs_CZ/LC_MESSAGES +@dirrm %%HORDIR%%/locale/cs_CZ +@dirrm %%HORDIR%%/locale/da_DK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/da_DK +@dirrm %%HORDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/de_DE +@dirrm %%HORDIR%%/locale/el_GR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/el_GR +@dirrm %%HORDIR%%/locale/en_US +@dirrm %%HORDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%HORDIR%%/locale/es_ES +@dirrm %%HORDIR%%/locale/fi_FI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fi_FI +@dirrm %%HORDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/fr_FR +@dirrm %%HORDIR%%/locale/hu_HU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/hu_HU +@dirrm %%HORDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/it_IT +@dirrm %%HORDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ja_JP +@dirrm %%HORDIR%%/locale/lt_LT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lt_LT +@dirrm %%HORDIR%%/locale/lv_LV/LC_MESSAGES +@dirrm %%HORDIR%%/locale/lv_LV +@dirrm %%HORDIR%%/locale/nb_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nb_NO +@dirrm %%HORDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nl_NL +@dirrm %%HORDIR%%/locale/nn_NO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/nn_NO +@dirrm %%HORDIR%%/locale/pl_PL/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pl_PL +@dirrm %%HORDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_BR +@dirrm %%HORDIR%%/locale/pt_PT/LC_MESSAGES +@dirrm %%HORDIR%%/locale/pt_PT +@dirrm %%HORDIR%%/locale/ro_RO/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ro_RO +@dirrm %%HORDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%HORDIR%%/locale/ru_RU +@dirrm %%HORDIR%%/locale/sk_SK/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sk_SK +@dirrm %%HORDIR%%/locale/sl_SI/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sl_SI +@dirrm %%HORDIR%%/locale/sv_SE/LC_MESSAGES +@dirrm %%HORDIR%%/locale/sv_SE +@dirrm %%HORDIR%%/locale/tr_TR +@dirrm %%HORDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_CN +@dirrm %%HORDIR%%/locale/zh_TW/LC_MESSAGES +@dirrm %%HORDIR%%/locale/zh_TW +@dirrm %%HORDIR%%/locale +@dirrm %%HORDIR%%/po +@dirrm %%HORDIR%%/scripts/sql +@dirrm %%HORDIR%%/scripts/upgrades +@dirrm %%HORDIR%%/scripts +@dirrm %%HORDIR%%/templates/data +@dirrm %%HORDIR%%/templates/list +@dirrm %%HORDIR%%/templates/memo +@dirrm %%HORDIR%%/templates/notepads +@dirrm %%HORDIR%%/templates/prefs +@dirrm %%HORDIR%%/templates/search +@dirrm %%HORDIR%%/templates/view +@dirrm %%HORDIR%%/templates +@dirrm %%HORDIR%%/themes/graphics +@dirrm %%HORDIR%%/themes +@dirrmtry %%HORDIR%% +@dirrmtry %%HORBAS%% |