1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-21 08:42:23 +00:00
freebsd-ports/www/drupal7/Makefile
Jochen Neumeister 3fb5b9f903 Update to 7.61
Changelog:
- File upload validation functions and hook_file_validate() implementations are now always passed the correct file URI.
- The default form cache expiration of 6 hours is now configurable (API addition: https://www.drupal.org/node/2857751).
- Allowed callers of drupal_http_request() to optionally specify an explicit Host header.
- Allowed the + character to appear in usernames.
- PHP 7.2: Fixed Archive_Tar incompatibility.
- PHP 7.2: Removed deprecated function each().
- PHP 7.2: Avoid count() calls on uncountable variables.
- PHP 7.2: Removed deprecated create_function() call.
- PHP 7.2: Make sure variables are arrays in theme_links().
- Fixed theme-settings.php not being loaded on cached forms
- Fixed problem with IE11 & Chrome(PointerEvents enabled) & some Firefox scroll to the top of the page after dragging the bottom item with jquery 1.5 <-> 1.11

Sponsored by:	Netzkommune GmbH
2018-11-16 00:24:26 +00:00

54 lines
1.5 KiB
Makefile

# Created by: Nick Hilliard <nick@foobar.org>
# $FreeBSD$
PORTNAME= drupal7
DISTVERSION= 7.61
CATEGORIES= www
MASTER_SITES= http://ftp.drupal.org/files/projects/
DISTNAME= drupal-${PORTVERSION}
DIST_SUBDIR= drupal
MAINTAINER= joneum@FreeBSD.org
COMMENT= Database driven web content management system (CMS)
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= drupal:7 php:web shebangfix
USE_PHP= dom filter gd hash json mbstring pcre pdo session simplexml xml
SHEBANG_FILES= scripts/password-hash.sh
NO_ARCH= yes
NO_BUILD= yes
DOCS= CHANGELOG.txt INSTALL.mysql.txt INSTALL.sqlite.txt \
LICENSE.txt README.txt COPYRIGHT.txt INSTALL.pgsql.txt \
INSTALL.txt MAINTAINERS.txt UPGRADE.txt
OPTIONS_DEFINE= MYSQL SQLITE3 PGSQL DOCS
OPTIONS_DEFAULT= MYSQL
SUB_FILES+= pkg-message
PGSQL_USES= pgsql
PGSQL_USE= PHP=pdo_pgsql
SQLITE3_USE= PHP=pdo_sqlite
MYSQL_USES= mysql
MYSQL_USE= PHP=pdo_mysql
do-install:
@${MKDIR} ${STAGEDIR}${DRUPAL_DIR}/sites/default/files
(cd ${WRKSRC} && ${COPYTREE_SHARE} ".htaccess cron.php authorize.php \
includes index.php install.php misc modules profiles \
robots.txt scripts themes update.php web.config xmlrpc.php" \
${STAGEDIR}${DRUPAL_DIR})
(cd ${WRKSRC}/sites && ${COPYTREE_SHARE} "example.sites.php all" \
${STAGEDIR}${DRUPAL_DIR}/sites)
${INSTALL_DATA} ${WRKSRC}/sites/default/default.settings.php \
${STAGEDIR}${DRUPAL_DIR}/sites/default/default.settings.php.sample
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>