ports/110821: [Maintainer Update] www/horde-passwd - Update to 3.0.1

Beech Rintoul beech at alaskaparadise.com
Sun Mar 25 19:40:07 UTC 2007


>Number:         110821
>Category:       ports
>Synopsis:       [Maintainer Update] www/horde-passwd - Update to 3.0.1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Mar 25 19:40:05 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Beech Rintoul
>Release:        FreeBSD 7.0-CURRENT i386
>Organization:
Alaska Paradise  
>Environment:


System: FreeBSD 7.0-CURRENT #111: Sat Mar 24 08:52:58 AKDT 2007
    root at stargate.alaskaparadise.com:/usr/obj/usr/src/sys/STARGATE



>Description:


Update to 3.0.1

[Changes]
Add placeholders for domain and username parts to SQL driver queries.
Improve error checking in poppassd driver.
Add Slovenian translation.
Compare hashing algorithms in passwords case insensitively.
Allow password changing for special Kolab users.
Add Japanese translation.
Better support for MS-SQL
Add support in the expect driver for rssh, scponly, and other programs that can execute certain commands over ssh without providing a prompt.



>How-To-Repeat:





>Fix:


diff -ruN --exclude=CVS /usr/ports/www/horde-passwd.orig/Makefile /usr/ports/www/horde-passwd/Makefile
--- /usr/ports/www/horde-passwd.orig/Makefile	Sat Feb 24 21:31:07 2007
+++ /usr/ports/www/horde-passwd/Makefile	Sun Mar 25 10:46:38 2007
@@ -6,12 +6,11 @@
 #
 
 PORTNAME=	passwd
-PORTVERSION=	3.0
-PORTREVISION=	2
+PORTVERSION=	3.0.1
+DISTVERSIONPREFIX=	h3-
 CATEGORIES=	www mail
 MASTER_SITES=	HORDE/passwd
 PKGNAMEPREFIX=	horde-
-DISTNAME=	${PORTNAME}-h3-${PORTVERSION}
 DIST_SUBDIR=	horde
 
 MAINTAINER=	beech at alaskaparadise.com
@@ -23,23 +22,21 @@
 USE_APACHE=	1.3+	# needed to test APACHE_VERSION
 USE_GETTEXT=	yes
 
-PLIST_SUB=	LPWDDIR=${LPWDDIR} PWDDIR=${PWDDIR}	\
-		HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||}
-PKGMESSAGE=	${WRKDIR}/pkg-message
-PKGDEINSTALL=	${WRKDIR}/pkg-deinstall
-SUB_FILES=	pkg-message pkg-install 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
+PORTDOCS=	README CHANGES CREDITS INSTALL	\
+		RELEASE_NOTES TODO
 CONFFILE=	backends.php
+SUB_DIRS=	config lib locale po scripts templates themes
 
 LHORDEDIR?=	www/horde
 LPWDDIR?=	${LHORDEDIR}/passwd
 
-HORDEDIR=	${PREFIX}/${LHORDEDIR}
-PWDDIR=		${PREFIX}/${LPWDDIR}
+PLIST_SUB=	PWDDIR=${LPWDDIR} HORDE_INC=${HORDE_INC:S|^${LOCALBASE}/||}
+PKGMESSAGE=	${WRKDIR}/pkg-message
+PKGDEINSTALL=	${WRKDIR}/pkg-deinstall
+SUB_FILES=	pkg-message pkg-install pkg-deinstall
+SUB_LIST=	PWDDIR=${PWDDIR} CONFDIR=${CONFDIR}
+
+PWDDIR=	${PREFIX}/${LPWDDIR}
 CONFDIR=	${PWDDIR}/config
 
 .include <bsd.port.pre.mk>
@@ -50,6 +47,9 @@
 HORDE_INC=	${LOCALBASE}/etc/horde
 .endif
 
+post-extract:
+	@${MV} ${WRKSRC}/README ${WRKSRC}/docs/
+
 pre-configure:
 	@${SED} -e "s:/home/httpd/html/horde/passwd:${PWDDIR}:g"	\
 		${FILESDIR}/httpd.conf.pwd > ${WRKDIR}/httpd-pwd.conf
@@ -58,20 +58,16 @@
 	@${FIND} ${WRKSRC} -name "*.orig" -delete
 
 do-install:
-	@${MKDIR}  ${PWDDIR}
-.for REP in ${SUB_DIRS}
-	@${CP} -Rp ${WRKSRC}/${REP} ${PWDDIR}
-.endfor
-	@${CP} -p  ${WRKSRC}/*.php ${PWDDIR}
-
-	@${CHOWN} -R www:www ${PWDDIR}
-	@${CHMOD} -R o-rwx ${CONFDIR}
-	@${INSTALL_DATA} ${WRKDIR}/httpd-pwd.conf ${HORDE_INC}
+	@${INSTALL} -d ${PWDDIR}/
+	@${CP} -Rp ${SUB_DIRS:S|^|${WRKSRC}/|} ${PWDDIR}/
+	@${CP} -p ${WRKSRC}/*.php ${PWDDIR}/
+	@${INSTALL_DATA} ${WRKSRC}/config/conf.xml ${CONFDIR}/
+	@${INSTALL_DATA} ${WRKDIR}/httpd-pwd.conf ${HORDE_INC}/
+	@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PWDDIR}/
+	@${CHMOD} -R o-rwx ${CONFDIR}/
 .if !defined(NOPORTDOCS)
-	@${MKDIR} ${DOCSDIR}
-.for FILE in ${DOCS}
-	@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
-.endfor
+	@${INSTALL} -d ${DOCSDIR}/
+	@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR}/
 	@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
 .endif
 
diff -ruN --exclude=CVS /usr/ports/www/horde-passwd.orig/distinfo /usr/ports/www/horde-passwd/distinfo
--- /usr/ports/www/horde-passwd.orig/distinfo	Fri Nov 25 15:31:12 2005
+++ /usr/ports/www/horde-passwd/distinfo	Sun Mar 25 00:19:04 2007
@@ -1,3 +1,3 @@
-MD5 (horde/passwd-h3-3.0.tar.gz) = ca5612500c91c4ef3c838e8e94376332
-SHA256 (horde/passwd-h3-3.0.tar.gz) = 7fcebd31d4159b9619b26b81962e07c166990e9deba305b69f3cfc3fe5993c89
-SIZE (horde/passwd-h3-3.0.tar.gz) = 966096
+MD5 (horde/passwd-h3-3.0.1.tar.gz) = b5217a62c7a88e2845d382a1d19d5644
+SHA256 (horde/passwd-h3-3.0.1.tar.gz) = 1fd0f4a693c993ade25b2835da9c8c8fd13e823945d0107abfeb736ae3b21f57
+SIZE (horde/passwd-h3-3.0.1.tar.gz) = 1265941
diff -ruN --exclude=CVS /usr/ports/www/horde-passwd.orig/files/patch-lib_Driver.php /usr/ports/www/horde-passwd/files/patch-lib_Driver.php
--- /usr/ports/www/horde-passwd.orig/files/patch-lib_Driver.php	Mon Sep  4 13:57:54 2006
+++ /usr/ports/www/horde-passwd/files/patch-lib_Driver.php	Sun Mar 25 00:28:52 2007
@@ -1,10 +1,10 @@
---- lib/Driver.php.orig    Wed Aug 23 13:18:54 2006
-+++ lib/Driver.php  Wed Aug 23 13:19:40 2006
-@@ -107,7 +107,8 @@
+--- lib/Driver.php.orig	Tue Jan  2 04:55:14 2007
++++ lib/Driver.php	Sun Mar 25 00:25:08 2007
+@@ -111,7 +111,8 @@
          require_once dirname(__FILE__) . '/Driver/' . $driver . '.php';
          $class = 'Passwd_Driver_' . $driver;
          if (class_exists($class)) {
--            return $ret = &new $class($params);
+-            return new $class($params);
 +            $ret = &new $class($params);
 +            return $ret;
          } else {
diff -ruN --exclude=CVS /usr/ports/www/horde-passwd.orig/files/pkg-message.in /usr/ports/www/horde-passwd/files/pkg-message.in
--- /usr/ports/www/horde-passwd.orig/files/pkg-message.in	Tue Oct 11 22:09:49 2005
+++ /usr/ports/www/horde-passwd/files/pkg-message.in	Sun Mar 25 02:27:21 2007
@@ -11,7 +11,7 @@
 
 To enable horde-passwd at your Horde installation, replace its status
 from 'inactive' to 'active' in the Horde registry file, at
-%%HORDEDIR%%/config/registry.php
+horde/config/registry.php
 
 Finally, you must login to Horde as a Horde Administrator to finish the
 configuration.
diff -ruN --exclude=CVS /usr/ports/www/horde-passwd.orig/files/pkg-message.in~ /usr/ports/www/horde-passwd/files/pkg-message.in~
--- /usr/ports/www/horde-passwd.orig/files/pkg-message.in~	Wed Dec 31 14:00:00 1969
+++ /usr/ports/www/horde-passwd/files/pkg-message.in~	Sun Mar 25 02:15:32 2007
@@ -0,0 +1,20 @@
+************************************************************************
+horde-passwd has been installed in %%PWDDIR%%
+with your blank configuration files.
+
+Horde must be configured; if not, see `pkg_info -D -x horde'.
+
+horde-passwd requires a password changing mechanism. Probably the easier
+one is the port mail/poppassd, but it uses clear text password
+transmissions! Choose one and change the configuration file backends.php
+located in %%CONFDIR%%/
+
+To enable horde-passwd at your Horde installation, replace its status
+from 'inactive' to 'active' in the Horde registry file, at
+%%HORDEDIR%%/config/registry.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.
+************************************************************************
diff -ruN --exclude=CVS /usr/ports/www/horde-passwd.orig/pkg-plist /usr/ports/www/horde-passwd/pkg-plist
--- /usr/ports/www/horde-passwd.orig/pkg-plist	Sat Jan 21 19:25:07 2006
+++ /usr/ports/www/horde-passwd/pkg-plist	Sun Mar 25 10:56:13 2007
@@ -1,170 +1,173 @@
- at 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
+%%PWDDIR%%/config/.htaccess
+%%PWDDIR%%/config/backends.php.dist
+%%PWDDIR%%/config/conf.xml
+%%PWDDIR%%/index.php
+%%PWDDIR%%/lib/.htaccess
+%%PWDDIR%%/lib/Driver.php
+%%PWDDIR%%/lib/Driver/adsi.php
+%%PWDDIR%%/lib/Driver/composite.php
+%%PWDDIR%%/lib/Driver/expect.php
+%%PWDDIR%%/lib/Driver/kolab.php
+%%PWDDIR%%/lib/Driver/ldap.php
+%%PWDDIR%%/lib/Driver/pine.php
+%%PWDDIR%%/lib/Driver/poppassd.php
+%%PWDDIR%%/lib/Driver/procopen.php
+%%PWDDIR%%/lib/Driver/pspasswd.php
+%%PWDDIR%%/lib/Driver/servuftp.php
+%%PWDDIR%%/lib/Driver/smbldap.php
+%%PWDDIR%%/lib/Driver/smbpasswd.php
+%%PWDDIR%%/lib/Driver/sql.php
+%%PWDDIR%%/lib/Driver/vmailmgr.php
+%%PWDDIR%%/lib/Driver/vpopmail.php
+%%PWDDIR%%/lib/Passwd.php
+%%PWDDIR%%/lib/base.php
+%%PWDDIR%%/lib/version.php
+%%PWDDIR%%/locale/ar_SY/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/bg_BG/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/ca_ES/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/cs_CZ/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/da_DK/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/de_DE/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/de_DE/help.xml
+%%PWDDIR%%/locale/en_US/help.xml
+%%PWDDIR%%/locale/es_ES/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/et_EE/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/fa_IR/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/fa_IR/help.xml
+%%PWDDIR%%/locale/fi_FI/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/fi_FI/help.xml
+%%PWDDIR%%/locale/fr_FR/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/gl_ES/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/hu_HU/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/hu_HU/help.xml
+%%PWDDIR%%/locale/id_ID/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/it_IT/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/lt_LT/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/ja_JP/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/nl_NL/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/nl_NL/help.xml
+%%PWDDIR%%/locale/nn_NO/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/pl_PL/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/pt_PT/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/pt_BR/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/ro_RO/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/ru_RU/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/ru_RU/help.xml
+%%PWDDIR%%/locale/sk_SK/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/sl_SI/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/sv_SE/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/zh_CN/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/locale/zh_TW/LC_MESSAGES/passwd.mo
+%%PWDDIR%%/main.php
+%%PWDDIR%%/po/.htaccess
+%%PWDDIR%%/po/README
+%%PWDDIR%%/po/ar_SY.po
+%%PWDDIR%%/po/bg_BG.po
+%%PWDDIR%%/po/ca_ES.po
+%%PWDDIR%%/po/cs_CZ.po
+%%PWDDIR%%/po/da_DK.po
+%%PWDDIR%%/po/de_DE.po
+%%PWDDIR%%/po/es_ES.po
+%%PWDDIR%%/po/et_EE.po
+%%PWDDIR%%/po/fa_IR.po
+%%PWDDIR%%/po/fi_FI.po
+%%PWDDIR%%/po/fr_FR.po
+%%PWDDIR%%/po/gl_ES.po
+%%PWDDIR%%/po/hu_HU.po
+%%PWDDIR%%/po/id_ID.po
+%%PWDDIR%%/po/it_IT.po
+%%PWDDIR%%/po/lt_LT.po
+%%PWDDIR%%/po/ja_JP.po
+%%PWDDIR%%/po/nl_NL.po
+%%PWDDIR%%/po/nn_NO.po
+%%PWDDIR%%/po/passwd.pot
+%%PWDDIR%%/po/pl_PL.po
+%%PWDDIR%%/po/pt_BR.po
+%%PWDDIR%%/po/pt_PT.po
+%%PWDDIR%%/po/ro_RO.po
+%%PWDDIR%%/po/ru_RU.po
+%%PWDDIR%%/po/sl_SI.po
+%%PWDDIR%%/po/sk_SK.po
+%%PWDDIR%%/po/sv_SE.po
+%%PWDDIR%%/po/zh_CN.po
+%%PWDDIR%%/po/zh_TW.po
+%%PWDDIR%%/scripts/.htaccess
+%%PWDDIR%%/scripts/kpasswd_expect
+%%PWDDIR%%/scripts/passwd_expect
+%%PWDDIR%%/templates/.htaccess
+%%PWDDIR%%/templates/common-header.inc
+%%PWDDIR%%/templates/main/main.inc
+%%PWDDIR%%/test.php
+%%PWDDIR%%/themes/graphics/favicon.ico
+%%PWDDIR%%/themes/graphics/passwd.png
 %%HORDE_INC%%/httpd-pwd.conf
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
- at dirrm %%LPWDDIR%%/themes/graphics
- at dirrm %%LPWDDIR%%/themes
- at dirrm %%LPWDDIR%%/templates/main
- at dirrm %%LPWDDIR%%/templates
- at dirrm %%LPWDDIR%%/scripts
- at dirrm %%LPWDDIR%%/po
- at dirrm %%LPWDDIR%%/locale/zh_TW/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/zh_TW
- at dirrm %%LPWDDIR%%/locale/zh_CN/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/zh_CN
- at dirrm %%LPWDDIR%%/locale/sv_SE/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/sv_SE
- at dirrm %%LPWDDIR%%/locale/sk_SK/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/sk_SK
- at dirrm %%LPWDDIR%%/locale/ru_RU/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/ru_RU
- at dirrm %%LPWDDIR%%/locale/ro_RO/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/ro_RO
- at dirrm %%LPWDDIR%%/locale/pt_BR/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/pt_BR
- at dirrm %%LPWDDIR%%/locale/pl_PL/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/pl_PL
- at dirrm %%LPWDDIR%%/locale/nn_NO/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/nn_NO
- at dirrm %%LPWDDIR%%/locale/nl_NL/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/nl_NL
- at dirrm %%LPWDDIR%%/locale/lt_LT/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/lt_LT
- at dirrm %%LPWDDIR%%/locale/it_IT/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/it_IT
- at dirrm %%LPWDDIR%%/locale/id_ID/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/id_ID
- at dirrm %%LPWDDIR%%/locale/hu_HU/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/hu_HU
- at dirrm %%LPWDDIR%%/locale/gl_ES/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/gl_ES
- at dirrm %%LPWDDIR%%/locale/fr_FR/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/fr_FR
- at dirrm %%LPWDDIR%%/locale/fi_FI/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/fi_FI
- at dirrm %%LPWDDIR%%/locale/fa_IR/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/fa_IR
- at dirrm %%LPWDDIR%%/locale/et_EE/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/et_EE
- at dirrm %%LPWDDIR%%/locale/es_ES/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/es_ES
- at dirrm %%LPWDDIR%%/locale/en_US
- at dirrm %%LPWDDIR%%/locale/de_DE/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/de_DE
- at dirrm %%LPWDDIR%%/locale/da_DK/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/da_DK
- at dirrm %%LPWDDIR%%/locale/cs_CZ/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/cs_CZ
- at dirrm %%LPWDDIR%%/locale/ca_ES/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/ca_ES
- at dirrm %%LPWDDIR%%/locale/bg_BG/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/bg_BG
- at dirrm %%LPWDDIR%%/locale/ar_SY/LC_MESSAGES
- at dirrm %%LPWDDIR%%/locale/ar_SY
- at dirrm %%LPWDDIR%%/locale
- at dirrm %%LPWDDIR%%/lib/Driver
- at dirrm %%LPWDDIR%%/lib
- at dirrmtry %%LPWDDIR%%/config
- at dirrmtry %%LPWDDIR%%
+ at dirrm %%PWDDIR%%/themes/graphics
+ at dirrm %%PWDDIR%%/themes
+ at dirrm %%PWDDIR%%/templates/main
+ at dirrm %%PWDDIR%%/templates
+ at dirrm %%PWDDIR%%/scripts
+ at dirrm %%PWDDIR%%/po
+ at dirrm %%PWDDIR%%/locale/zh_TW/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/zh_TW
+ at dirrm %%PWDDIR%%/locale/zh_CN/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/zh_CN
+ at dirrm %%PWDDIR%%/locale/sv_SE/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/sv_SE
+ at dirrm %%PWDDIR%%/locale/sl_SI/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/sl_SI
+ at dirrm %%PWDDIR%%/locale/sk_SK/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/sk_SK
+ at dirrm %%PWDDIR%%/locale/ru_RU/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/ru_RU
+ at dirrm %%PWDDIR%%/locale/ro_RO/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/ro_RO
+ at dirrm %%PWDDIR%%/locale/pt_PT/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/pt_PT
+ at dirrm %%PWDDIR%%/locale/pt_BR/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/pt_BR
+ at dirrm %%PWDDIR%%/locale/pl_PL/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/pl_PL
+ at dirrm %%PWDDIR%%/locale/nn_NO/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/nn_NO
+ at dirrm %%PWDDIR%%/locale/nl_NL/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/nl_NL
+ at dirrm %%PWDDIR%%/locale/ja_JP/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/ja_JP
+ at dirrm %%PWDDIR%%/locale/lt_LT/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/lt_LT
+ at dirrm %%PWDDIR%%/locale/it_IT/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/it_IT
+ at dirrm %%PWDDIR%%/locale/id_ID/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/id_ID
+ at dirrm %%PWDDIR%%/locale/hu_HU/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/hu_HU
+ at dirrm %%PWDDIR%%/locale/gl_ES/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/gl_ES
+ at dirrm %%PWDDIR%%/locale/fr_FR/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/fr_FR
+ at dirrm %%PWDDIR%%/locale/fi_FI/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/fi_FI
+ at dirrm %%PWDDIR%%/locale/fa_IR/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/fa_IR
+ at dirrm %%PWDDIR%%/locale/et_EE/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/et_EE
+ at dirrm %%PWDDIR%%/locale/es_ES/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/es_ES
+ at dirrm %%PWDDIR%%/locale/en_US
+ at dirrm %%PWDDIR%%/locale/de_DE/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/de_DE
+ at dirrm %%PWDDIR%%/locale/da_DK/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/da_DK
+ at dirrm %%PWDDIR%%/locale/cs_CZ/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/cs_CZ
+ at dirrm %%PWDDIR%%/locale/ca_ES/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/ca_ES
+ at dirrm %%PWDDIR%%/locale/bg_BG/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/bg_BG
+ at dirrm %%PWDDIR%%/locale/ar_SY/LC_MESSAGES
+ at dirrm %%PWDDIR%%/locale/ar_SY
+ at dirrm %%PWDDIR%%/locale
+ at dirrm %%PWDDIR%%/lib/Driver
+ at dirrm %%PWDDIR%%/lib
+ at dirrmtry %%PWDDIR%%/config
+ at dirrmtry %%PWDDIR%%



>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list