Major update to owncloud-4.5.0.

This commit is contained in:
ajacoutot 2012-10-16 09:19:23 +00:00
parent d58282ef41
commit baa8fdc726
5 changed files with 2200 additions and 513 deletions

View File

@ -1,12 +1,10 @@
# $OpenBSD: Makefile,v 1.20 2012/08/27 10:39:42 robert Exp $
# $OpenBSD: Makefile,v 1.21 2012/10/16 09:19:23 ajacoutot Exp $
COMMENT= easy and universal access to shared and/or personnal files
DISTNAME= owncloud-4.0.7
DISTNAME= owncloud-4.5.0
EXTRACT_SUFX= .tar.bz2
REVISION= 0
CATEGORIES= www
HOMEPAGE= http://owncloud.org/
@ -29,7 +27,7 @@ MASTER_SITES= ${HOMEPAGE}releases/
# Yubikey support
MASTER_SITES0= http://nerd.hu/
PATCHFILES= owncloud-yubikey.patch:0
#PATCHFILES= owncloud-yubikey.patch:0
PATCH_DIST_STRIP= -p1
MODULES= lang/php

View File

@ -1,4 +1,4 @@
SHA256 (owncloud-4.0.7.tar.bz2) = wjh/shebc/DNi1QtEV5qI0wboakpisuBWmnDsHCsqwQ=
SHA256 (owncloud-4.5.0.tar.bz2) = dofms5FdV8/1YbFkkrcGbGHYiQq3E8twymxqW+R4MvI=
SHA256 (owncloud-yubikey.patch) = lKtpm2+tDC0v656UHsFFeDlCJI6cBv/UbYSxltHSS20=
SIZE (owncloud-4.0.7.tar.bz2) = 4624512
SIZE (owncloud-4.5.0.tar.bz2) = 9148741
SIZE (owncloud-yubikey.patch) = 22337

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-lib_util_php,v 1.2 2012/06/23 15:32:45 ajacoutot Exp $
--- lib/util.php.orig Fri Jun 22 21:31:57 2012
+++ lib/util.php Sat Jun 23 17:29:48 2012
@@ -31,7 +31,7 @@ class OC_Util {
// Check if apps folder is writable.
if(OC_Config::getValue('writable_appsdir', true) && !is_writable(OC::$SERVERROOT."/apps/")) {
$tmpl = new OC_Template( '', 'error', 'guest' );
- $tmpl->assign('errors',array(1=>array('error'=>"Can't write into apps directory 'apps'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud")));
+ $tmpl->assign('errors',array(1=>array('error'=>"Can't write into apps directory 'apps'",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory in owncloud")));
$tmpl->printPage();
exit;
}

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
$OpenBSD: README,v 1.8 2012/06/21 07:00:20 ajacoutot Exp $
$OpenBSD: README,v 1.9 2012/10/16 09:19:23 ajacoutot Exp $
+-----------------------------------------------------------------------
| Running ${FULLPKGNAME} on OpenBSD
@ -51,6 +51,11 @@ Finishing and validating the installation
Accessing http://<hostname>/owncloud with a Web browser will finish the
installation and create a new admin user.
Updating
========
Before updating to a new release, read:
http://owncloud.org/support/upgrade/
WebDAV access
=============
The personnal WebDAV share can be accessed using the following URL (e.g.
@ -66,3 +71,10 @@ Synchronization
The "csync" package (net/csync) can be installed to synchronize local
files with ownCloud. e.g.
$ csync /path/to/localdir ownclouds://<username>:<password>@<hostname>/files/webdav.php/remotedir/
Apps and dependencies
=====================
To keep dependencies to a minimum, not all dependencies for all
installed apps are enforced. It is the job of the administrator to
manually install required packages according to the non-default apps he
wants to enable.