summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorgdt <gdt@pkgsrc.org>2012-06-13 23:16:01 +0000
committergdt <gdt@pkgsrc.org>2012-06-13 23:16:01 +0000
commit061a1505ea80b4c71b5df5a35775bf1e93ab26f3 (patch)
tree3c732417937f0f572aa0f8ff2856d17b54d90c06 /www
parent974f9933876c3bdf613e80e472eb9c0ca3371de7 (diff)
downloadpkgsrc-061a1505ea80b4c71b5df5a35775bf1e93ab26f3.tar.gz
Add dependency on php-pdo_sqlite.
Without this module, errors were logged after an upgrade from owncloud 3. Add a hint to enable the module to MESSAGE.
Diffstat (limited to 'www')
-rw-r--r--www/php-owncloud/MESSAGE5
-rw-r--r--www/php-owncloud/Makefile3
2 files changed, 6 insertions, 2 deletions
diff --git a/www/php-owncloud/MESSAGE b/www/php-owncloud/MESSAGE
index e489eacd28a..ce41788de5d 100644
--- a/www/php-owncloud/MESSAGE
+++ b/www/php-owncloud/MESSAGE
@@ -1,5 +1,5 @@
===========================================================================
-$NetBSD: MESSAGE,v 1.4 2012/05/15 20:18:34 ryoon Exp $
+$NetBSD: MESSAGE,v 1.5 2012/06/13 23:16:01 gdt Exp $
To use ownCloud, you will need to perform the following steps.
@@ -30,6 +30,9 @@ To use ownCloud, you will need to perform the following steps.
extension=sqlite.so ;if you select sqlite backend.
extension=mysql.so ;if you select MySQL backend.
+ extension=pdo.so
+ extension=pdo_sqlite.so ; with sqlite backend
+
5. Start apache httpd.
6. Access http://localhost/ and setup.
diff --git a/www/php-owncloud/Makefile b/www/php-owncloud/Makefile
index 67f969a2223..84a1035c6da 100644
--- a/www/php-owncloud/Makefile
+++ b/www/php-owncloud/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2012/06/09 14:24:05 ryoon Exp $
+# $NetBSD: Makefile,v 1.8 2012/06/13 23:16:01 gdt Exp $
#
DISTNAME= owncloud-4.0.1
@@ -19,6 +19,7 @@ DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.2.0:../../graphics/php-gd
DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.2.0:../../textproc/php-json
DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.2.0:../../converters/php-mbstring
DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.2.0:../../archivers/php-zip
+DEPENDS+= ${PHP_PKG_PREFIX}-pdo_sqlite:../../databases/php-pdo_sqlite
.include "options.mk"
WRKSRC= ${WRKDIR}/owncloud