summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/php-owncloud/MESSAGE3
-rw-r--r--www/php-owncloud/Makefile4
-rw-r--r--www/php-owncloud/PLIST17
-rw-r--r--www/php-owncloud/distinfo8
-rw-r--r--www/php-owncloud/options.mk8
5 files changed, 14 insertions, 26 deletions
diff --git a/www/php-owncloud/MESSAGE b/www/php-owncloud/MESSAGE
index e62397ba20e..aa7ff13c541 100644
--- a/www/php-owncloud/MESSAGE
+++ b/www/php-owncloud/MESSAGE
@@ -1,5 +1,5 @@
===========================================================================
-$NetBSD: MESSAGE,v 1.9 2012/11/27 12:11:36 ryoon Exp $
+$NetBSD: MESSAGE,v 1.10 2013/01/25 20:02:24 ryoon Exp $
To use ownCloud, you will need to perform the following steps.
@@ -34,6 +34,7 @@ To use ownCloud, you will need to perform the following steps.
extension=pdo_sqlite.so ;if you select sqlite backend.
extension=mysql.so ;if you select MySQL backend.
+ extension=pgsql.so ;if you select PostgreSQL backend.
5. Start apache httpd.
diff --git a/www/php-owncloud/Makefile b/www/php-owncloud/Makefile
index 60b8ca15208..283e422e040 100644
--- a/www/php-owncloud/Makefile
+++ b/www/php-owncloud/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.24 2012/12/24 01:40:59 ryoon Exp $
+# $NetBSD: Makefile,v 1.25 2013/01/25 20:02:24 ryoon Exp $
#
-DISTNAME= owncloud-4.5.5
+DISTNAME= owncloud-4.5.6
PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME}
CATEGORIES= www
MASTER_SITES= http://owncloud.org/releases/
diff --git a/www/php-owncloud/PLIST b/www/php-owncloud/PLIST
index a06897e47c2..77c8d7c08de 100644
--- a/www/php-owncloud/PLIST
+++ b/www/php-owncloud/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2012/12/23 12:34:43 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.11 2013/01/25 20:02:24 ryoon Exp $
share/owncloud/.htaccess
share/owncloud/3rdparty/Archive/Tar.php
share/owncloud/3rdparty/Console/Getopt.php
@@ -1980,21 +1980,6 @@ share/owncloud/apps/media/settings.php
share/owncloud/apps/media/templates/music.php
share/owncloud/apps/media/templates/player.php
share/owncloud/apps/media/templates/settings.php
-share/owncloud/apps/remoteStorage/BearerAuth.php
-share/owncloud/apps/remoteStorage/ajax/revokeToken.php
-share/owncloud/apps/remoteStorage/appinfo/app.php
-share/owncloud/apps/remoteStorage/appinfo/database.xml
-share/owncloud/apps/remoteStorage/appinfo/info.xml
-share/owncloud/apps/remoteStorage/appinfo/version
-share/owncloud/apps/remoteStorage/appinfo/webfinger.php
-share/owncloud/apps/remoteStorage/auth.php
-share/owncloud/apps/remoteStorage/img/remoteStorage.png
-share/owncloud/apps/remoteStorage/lib_remoteStorage.php
-share/owncloud/apps/remoteStorage/oauth_ro_auth.php
-share/owncloud/apps/remoteStorage/settings.php
-share/owncloud/apps/remoteStorage/templates/auth.php
-share/owncloud/apps/remoteStorage/templates/settings.php
-share/owncloud/apps/remoteStorage/webdav.php
share/owncloud/apps/tasks/ajax/addtask.php
share/owncloud/apps/tasks/ajax/delete.php
share/owncloud/apps/tasks/ajax/gettasks.php
diff --git a/www/php-owncloud/distinfo b/www/php-owncloud/distinfo
index 865e4ecf805..ca36ceb44c4 100644
--- a/www/php-owncloud/distinfo
+++ b/www/php-owncloud/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.11 2012/12/23 12:34:43 ryoon Exp $
+$NetBSD: distinfo,v 1.12 2013/01/25 20:02:24 ryoon Exp $
-SHA1 (owncloud-4.5.5.tar.bz2) = 72a4649475bcfe4bc1fd0a89b7dc4b95abbd4cd2
-RMD160 (owncloud-4.5.5.tar.bz2) = 95e97d679358184b24283540aa969d9ffdecb39d
-Size (owncloud-4.5.5.tar.bz2) = 9168561 bytes
+SHA1 (owncloud-4.5.6.tar.bz2) = 6a196a36a28777588b1d1bed8e74545ad519656e
+RMD160 (owncloud-4.5.6.tar.bz2) = 4a8f0c8590f697d3bd28f09928614b427b3cb87f
+Size (owncloud-4.5.6.tar.bz2) = 9161189 bytes
diff --git a/www/php-owncloud/options.mk b/www/php-owncloud/options.mk
index 60113456aea..62b7d538710 100644
--- a/www/php-owncloud/options.mk
+++ b/www/php-owncloud/options.mk
@@ -1,16 +1,16 @@
-# $NetBSD: options.mk,v 1.3 2012/07/10 13:20:19 ryoon Exp $
+# $NetBSD: options.mk,v 1.4 2013/01/25 20:02:24 ryoon Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.php-owncloud
PKG_OPTIONS_REQUIRED_GROUPS= db
-PKG_OPTIONS_GROUP.db= mysql sqlite
+PKG_OPTIONS_GROUP.db= mysql sqlite pgsql
PKG_SUGGESTED_OPTIONS= sqlite
.include "../../mk/bsd.options.mk"
###
-### Use mysql or sqlite backend
+### Use mysql, pgsql, or sqlite backend
###
.if !empty(PKG_OPTIONS:Mmysql)
DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=5.2.0:../../databases/php-mysql
@@ -23,4 +23,6 @@ DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=5.2.0:../../databases/php-mysql
# installed as version 2 and upgraded to 3 and then 4
# complained/failed that PDO was not present.
DEPENDS+= ${PHP_PKG_PREFIX}-pdo_sqlite>=5.2.0:../../databases/php-pdo_sqlite
+.elif !empty(PKG_OPTIONS:Mpgsql)
+DEPENDS+= ${PHP_PKG_PREFIX}-pgsql>=5.2.0:../../databases/php-pgsql
.endif