Hi,

Someone reported on irc that nextcloud's README was wrong because it
says for httpd
# cp /var/www/conf/modules.sample/httpd-nextcloud.conf /etc/
while the file is for apache2. Indeed: 
/var/www/conf/modules.sample$ sha256 *                                          
                                                               
SHA256 (apache-nextcloud.conf) = 
6518b5303fb11240c78dc1d16f81e4935ca7bdbb575b01b40bea0f1f1327d732
SHA256 (apache-nextcloud.conf.dist) = 
6518b5303fb11240c78dc1d16f81e4935ca7bdbb575b01b40bea0f1f1327d732
SHA256 (httpd-nextcloud.conf) = 
6518b5303fb11240c78dc1d16f81e4935ca7bdbb575b01b40bea0f1f1327d732
SHA256 (httpd-nextcloud.conf.dist) = 
07c7966f0e20113f8f2e1ededac75b447c36290386ce88901e26669bd80440e2
SHA256 (php-5.6.conf) = 
6395872b7844b0ccd766f9191cd0a4c918288df59ead2b58adf02da421d9559a

the problem comes from the PLIST order it seems, after my patch:

/var/www/conf/modules.sample$ sha256 * 
SHA256 (apache-nextcloud.conf) = 
6518b5303fb11240c78dc1d16f81e4935ca7bdbb575b01b40bea0f1f1327d732
SHA256 (apache-nextcloud.conf.dist) = 
6518b5303fb11240c78dc1d16f81e4935ca7bdbb575b01b40bea0f1f1327d732
SHA256 (httpd-nextcloud.conf) = 
07c7966f0e20113f8f2e1ededac75b447c36290386ce88901e26669bd80440e2
SHA256 (httpd-nextcloud.conf.dist) = 
07c7966f0e20113f8f2e1ededac75b447c36290386ce88901e26669bd80440e2
SHA256 (php-5.6.conf) = 
6395872b7844b0ccd766f9191cd0a4c918288df59ead2b58adf02da421d9559a

Comments? OK?

Cheers,
Daniel

Index: Makefile
===================================================================
RCS file: /cvs/ports/www/nextcloud/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- Makefile	28 May 2017 20:03:16 -0000	1.3
+++ Makefile	21 Aug 2017 00:48:14 -0000
@@ -5,6 +5,7 @@ COMMENT=		easy and universal access to s
 V=			12.0.0
 DISTNAME=		nextcloud-${V}
 EXTRACT_SUFX=		.tar.bz2
+REVISION=		0
 
 CATEGORIES=		www
 
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/www/nextcloud/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- pkg/PLIST	28 May 2017 20:03:16 -0000	1.3
+++ pkg/PLIST	21 Aug 2017 00:48:16 -0000
@@ -3,9 +3,9 @@
 @unexec-delete rm -f /var/www/conf/modules/apache-nextcloud.conf
 conf/modules.sample/apache-nextcloud.conf.dist
 @sample /var/www/conf/modules.sample/
-@sample /var/www/conf/modules.sample/httpd-nextcloud.conf
 @sample /var/www/conf/modules.sample/apache-nextcloud.conf
 conf/modules.sample/httpd-nextcloud.conf.dist
+@sample /var/www/conf/modules.sample/httpd-nextcloud.conf
 nextcloud/
 nextcloud/.htaccess.dist
 @sample nextcloud/.htaccess

Reply via email to