pkgsrc/www/php-owncloud/Makefile
ryoon 1cb8a262d8 Update to 4.5.6
* Add PostgreSQL support, not tested.

Changelog:
Version 4.5.6 Jan 22th 2013

    Improved language detection
    Improved translations
    Fix link to bugtracker
    Several IE 6/7/8 fixes
    SabreDAV updated to 1.6.6
    Improved error reporting
    Support special characters in mountpoint
    Interpret http 403 and 401 as not authorized in user_webdavauth
    Several fixes for special characters in files and folders
    Improved PostgreSQL support
    Check database names for valid characters
    Fix default email address calculation
    Remove debug output on send password page
    Add SMTP port configuration option
    Only show the max possible upload of 2GB on a 32 bit system
    Show progress during file downloads
    Security: Fix multiple XSS problems: CVE-2013-0201, CVE-2013-0202, CVE-2013-0203
    Security: Fix Code execution in external storage: CVE-2013-0204
    Security: Removed remoteStorage app because of unfixed security problems.
2013-01-25 20:02:24 +00:00

54 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.25 2013/01/25 20:02:24 ryoon Exp $
#
DISTNAME= owncloud-4.5.6
PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME}
CATEGORIES= www
MASTER_SITES= http://owncloud.org/releases/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://owncloud.org/
COMMENT= Web services under your control
LICENSE= gnu-agpl-v3
DEPENDS+= ${PHP_PKG_PREFIX}-dom>=5.3.0:../../textproc/php-dom
DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.3.0:../../graphics/php-gd
DEPENDS+= ${PHP_PKG_PREFIX}-iconv>=5.3.0:../../converters/php-iconv
DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.3.0:../../textproc/php-json
DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.3.0:../../converters/php-mbstring
DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.3.0:../../archivers/php-zip
DEPENDS+= ${PHP_PKG_PREFIX}-zlib>=5.3.0:../../archivers/php-zlib
.include "options.mk"
WRKSRC= ${WRKDIR}/owncloud
USE_LANGUAGES= # none
NO_BUILD= yes
USE_TOOLS+= pax
OC_DIR= share/owncloud
INSTALLATION_DIRS= ${OC_DIR}
.include "../../mk/bsd.prefs.mk"
APACHE_USER?= www
APACHE_GROUP?= www
PKG_GROUPS= ${APACHE_GROUP}
PKG_USERS= ${APACHE_USER}:${APACHE_GROUP}
PKG_USERS_VARS= APACHE_USER
PKG_GROUPS_VARS= APACHE_GROUP
BUILD_DEFS+= APACHE_GROUP APACHE_USER
FILES_SUBST+= WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \
OC_DIR=${OC_DIR}
do-install:
cd ${WRKDIR} && pax -rw -pmp owncloud \
${DESTDIR}${PREFIX}/share
.include "../../lang/php/phpversion.mk"
.include "../../mk/bsd.pkg.mk"