Date: Tue, 19 Jun 2007 16:04:06 GMT From: dawnshade <h-k@mail.ru> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/113858: fix filelist for mail/roundcube Message-ID: <200706191604.l5JG46nN027982@www.freebsd.org> Resent-Message-ID: <200706191610.l5JGA2qn055863@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 113858 >Category: ports >Synopsis: fix filelist for mail/roundcube >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 19 16:10:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: dawnshade >Release: 6.2-RELEASE >Organization: - >Environment: FreeBSD mail.host.ru 6.2-RELEASE-p3 FreeBSD 6.2-RELEASE-p3 #0: Sun Apr 8 18:34:30 MSD 2007 root@mail.host.ru:/usr/src/sys/i386/compile/mail_kern_8 i386 >Description: Port installing not all needed files. Forgot to install whole directory bin: before fix: mail# ll /usr/local/www/roundcube/ total 26 drwxr-xr-x 2 www www 512 May 18 21:52 SQL drwxr-xr-x 2 www www 512 Jun 19 19:48 config -rw-r--r-- 1 www www 11167 May 18 21:52 index.php drwxr-xr-x 2 www www 512 May 18 21:52 logs drwxr-xr-x 7 www www 512 May 18 21:52 program drwxr-xr-x 3 www www 512 May 18 21:52 skins drwxr-xr-x 2 www www 512 May 18 21:52 temp after: mail# ll /usr/local/www/roundcube/ total 26 drwxr-xr-x 2 www www 512 May 18 21:52 SQL drwxr-xr-x 2 www www 512 May 18 21:52 bin drwxr-xr-x 2 www www 512 Jun 19 19:48 config -rw-r--r-- 1 www www 11167 May 18 21:52 index.php drwxr-xr-x 2 www www 512 May 18 21:52 logs drwxr-xr-x 7 www www 512 May 18 21:52 program drwxr-xr-x 3 www www 512 May 18 21:52 skins drwxr-xr-x 2 www www 512 May 18 21:52 temp >How-To-Repeat: install mail/roundcube >Fix: diff -ruN roundcube-old/Makefile roundcube/Makefile --- roundcube-old/Makefile Tue Jun 19 19:42:52 2007 +++ roundcube/Makefile Tue Jun 19 19:48:07 2007 @@ -25,7 +25,7 @@ RCUBEDIR?= www/${PORTNAME} RCUBEROOT= ${PREFIX}/${RCUBEDIR} -RCUBECOMP= SQL config index.php logs program skins temp +RCUBECOMP= SQL config bin index.php logs program skins temp PORTDOCS= CHANGELOG INSTALL LICENSE README UPGRADING PLIST_SUB= RCUBEDIR=${RCUBEDIR} diff -ruN roundcube-old/pkg-plist roundcube/pkg-plist --- roundcube-old/pkg-plist Tue Jun 19 19:42:52 2007 +++ roundcube/pkg-plist Tue Jun 19 19:45:07 2007 @@ -10,6 +10,9 @@ %%RCUBEDIR%%/config/.htaccess %%RCUBEDIR%%/config/db.inc.php.dist %%RCUBEDIR%%/config/main.inc.php.dist +%%RCUBEDIR%%/bin/html2text.php +%%RCUBEDIR%%/bin/msgimport +%%RCUBEDIR%%/bin/quotaimg.php %%RCUBEDIR%%/index.php %%RCUBEDIR%%/logs/.htaccess %%RCUBEDIR%%/program/blank.gif @@ -599,6 +602,9 @@ %%RCUBEDIR%%/skins/default/watermark.html %%RCUBEDIR%%/temp/.htaccess %%SPELLCHECK%%%%RCUBEDIR%%/spellchecker.php +@dirrm %%RCUBEDIR%%/bin/html2text.php +@dirrm %%RCUBEDIR%%/bin/msgimport +@dirrm %%RCUBEDIR%%/bin/quotaimg.php @dirrm %%RCUBEDIR%%/skins/default/templates @dirrm %%RCUBEDIR%%/skins/default/includes @dirrm %%RCUBEDIR%%/skins/default/images/icons @@ -715,6 +721,7 @@ @dirrm %%RCUBEDIR%%/program/include @dirrm %%RCUBEDIR%%/program @dirrm %%RCUBEDIR%%/SQL +@dirrm %%RCUBEDIR%%/bin @dirrmtry %%RCUBEDIR%%/temp @dirrmtry %%RCUBEDIR%%/logs @dirrmtry %%RCUBEDIR%%/config Patch attached with submission follows: diff -ruN roundcube-old/Makefile roundcube/Makefile --- roundcube-old/Makefile Tue Jun 19 19:42:52 2007 +++ roundcube/Makefile Tue Jun 19 19:48:07 2007 @@ -25,7 +25,7 @@ RCUBEDIR?= www/${PORTNAME} RCUBEROOT= ${PREFIX}/${RCUBEDIR} -RCUBECOMP= SQL config index.php logs program skins temp +RCUBECOMP= SQL config bin index.php logs program skins temp PORTDOCS= CHANGELOG INSTALL LICENSE README UPGRADING PLIST_SUB= RCUBEDIR=${RCUBEDIR} diff -ruN roundcube-old/pkg-plist roundcube/pkg-plist --- roundcube-old/pkg-plist Tue Jun 19 19:42:52 2007 +++ roundcube/pkg-plist Tue Jun 19 19:45:07 2007 @@ -10,6 +10,9 @@ %%RCUBEDIR%%/config/.htaccess %%RCUBEDIR%%/config/db.inc.php.dist %%RCUBEDIR%%/config/main.inc.php.dist +%%RCUBEDIR%%/bin/html2text.php +%%RCUBEDIR%%/bin/msgimport +%%RCUBEDIR%%/bin/quotaimg.php %%RCUBEDIR%%/index.php %%RCUBEDIR%%/logs/.htaccess %%RCUBEDIR%%/program/blank.gif @@ -599,6 +602,9 @@ %%RCUBEDIR%%/skins/default/watermark.html %%RCUBEDIR%%/temp/.htaccess %%SPELLCHECK%%%%RCUBEDIR%%/spellchecker.php +@dirrm %%RCUBEDIR%%/bin/html2text.php +@dirrm %%RCUBEDIR%%/bin/msgimport +@dirrm %%RCUBEDIR%%/bin/quotaimg.php @dirrm %%RCUBEDIR%%/skins/default/templates @dirrm %%RCUBEDIR%%/skins/default/includes @dirrm %%RCUBEDIR%%/skins/default/images/icons @@ -715,6 +721,7 @@ @dirrm %%RCUBEDIR%%/program/include @dirrm %%RCUBEDIR%%/program @dirrm %%RCUBEDIR%%/SQL +@dirrm %%RCUBEDIR%%/bin @dirrmtry %%RCUBEDIR%%/temp @dirrmtry %%RCUBEDIR%%/logs @dirrmtry %%RCUBEDIR%%/config >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706191604.l5JG46nN027982>