pkgsrc/www/php-concrete5/Makefile
taca 546ec32c62 Update php-concrete5 to 5.7.5.13.
pkgsrc change:

* Now support php71 using security/php-pecl-mcrypt package.


5.7.5.7							April 28th, 2016

New Features

* Nice column view for thumbnail image browsing (Thanks MrKarlDilkington)
* Added Max Width as an option to the Image Slider block (thanks cryophallion)
* Added configuration option concrete.misc.require_version_comments (defaulted
  off) to enable the requiring of version comments (thanks mlocati)

Other improvements and bug fixes are too many to write here, please refer release note: https://documentation.concrete5.org/developers/background/version-history/5757-release-notes.

5.7.5.8							May 23, 2016

* German, Japanese and Russian languages are now included
* Image Slider Bug Fixes
* Using blank alt tags in Image Slider, Image and Content blocks if no alt is
  provided, rather than the HtmlObject default ¡È#¡É ones.

5.7.5.9							July 25, 2016

New Features

* Rescan files through the file manager now scans 5 at a time, works through
  the queue.
* Added option to ignore page permissions to the Page List block
* Dutch language is now included (Thank you Ramonleenders)

Other improvements and bug fixes are too many to write here, please refer release note: https://documentation.concrete5.org/developers/background/version-history/5759-release-notes.

5.7.5.10						December 1, 2016

* Minor bug fixes
* Fixed insecure use of non-random str_shuffle when creating user tokens
* Improvements to update process for version 8.

5.7.5.11						December 7, 2016

Bug Fixes

* Works again properly on PHP 5.3.
* Fixed bug that made upgrading impossible on PHP < 5.5.9.
* Fixed page not found error when clicking on a topic list to filter the page
  list in the blog.
* Controller bug fixes and security updates.

5.7.5.12

Bug Fixes

* Fixed bug with Environment Information not working on PHP below 5.4.

5.7.5.13						December 16, 2016

Bug Fixes

* Once again, Environment Information is now available in the Dashboard.
2017-05-28 11:45:42 +00:00

66 lines
2.1 KiB
Makefile

# $NetBSD: Makefile,v 1.17 2017/05/28 11:45:42 taca Exp $
#
DISTNAME= concrete5.7.5.13
PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME:S/concrete5/concrete5-5/}
CATEGORIES= www
MASTER_SITES= http://www.concrete5.org/download_file/-/view/93075/
EXTRACT_SUFX= .zip
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://www.concrete5.org/
COMMENT= Open sourece Content Management System
LICENSE= mit
DEPENDS+= ${PHP_PKG_PREFIX}-pdo_mysql>=5.3.3:../../databases/php-pdo_mysql
DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.3.3:../../graphics/php-gd
DEPENDS+= ${PHP_PKG_PREFIX}-curl>=5.3.3:../../www/php-curl
DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.3.3:../../textproc/php-json
DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.3.3:../../archivers/php-zip
DEPENDS+= ${PHP_PKG_PREFIX}-iconv>=5.3.3:../../converters/php-iconv
DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.3.3:../../converters/php-mbstring
USE_LANGUAGES= # none
NO_BUILD= yes
USE_TOOLS+= pax
BUILD_DEFS+= APACHE_GROUP APACHE_USER
C5DIR= share/concrete5
INSTALLATION_DIRS= ${C5DIR}
.include "../../lang/php/phpversion.mk"
.if ${PKG_PHP_VERSION} == "56" || ${PKG_PHP_VERSION} == "70"
DEPENDS+= ${PHP_PKG_PREFIX}-mcrypt>=5.3.3:../../security/php-mcrypt
.else
DEPENDS+= ${PHP_PKG_PREFIX}-pecl-mcrypt>=1.0.0:../../security/php-pecl-mcrypt
.endif
APACHE_USER?= nginx
APACHE_GROUP?= nginx
PKG_GROUPS= ${APACHE_GROUP}
PKG_USERS= ${APACHE_USER}:${APACHE_GROUP}
PKG_USERS_VARS= APACHE_USER
PKG_GROUPS_VARS= APACHE_GROUP
FILES_SUBST+= WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \
C5DIR=${C5DIR}
pre-install:
cd ${WRKSRC} && ${FIND} . -type f -exec ${CHMOD} -x {} \;
do-install:
cd ${WRKSRC} && ${FIND} . -type f \! -name '*.orig' -print | \
pax -rw ${DESTDIR}${PREFIX}/${C5DIR}
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/${C5DIR}/packages
${TOUCH} ${DESTDIR}${PREFIX}/${C5DIR}/packages/.keep
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/${C5DIR}/application/config
${TOUCH} ${DESTDIR}${PREFIX}/${C5DIR}/application/config/.keep
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/${C5DIR}/application/files
${TOUCH} ${DESTDIR}${PREFIX}/${C5DIR}/application/files/.keep
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"