ce320f8913
Drupal 7.28, 2014-05-08 ----------------------- - Fixed a regression introduced in Drupal 7.27 that caused JavaScript to break on older browsers (such as Internet Explorer 8 and earlier) when Ajax was used. - Increased the timeout used by the Update Manager module when it fetches data from drupal.org (from 5 seconds to 30 seconds), to work around a problem which causes incomplete information about security updates to be presented to site administrators. This fix may lead to a performance slowdown on the Update Manager administration pages, when installing Drupal distributions, and (for sites that use the automated cron feature) on occasional page loads by site visitors. - Fixed the behavior of the token system's "[node:summary]" token when the body field does not have a manual summary. - Changed the behavior of db_query_temporary() so that it works on SELECT queries even when they have leading comments/whitespace. A side effect of this fix is that db_query_temporary() will now fail with an error if it is ever used on non-SELECT queries. - Added a "node_admin_filter" tag to the database query used to build the list of nodes on the content administration page, to make it easier to alter. - Made the cron queue system log any exceptions that are thrown while an item in the queue is being processed, rather than stopping the entire PHP request. - Improved screen reader support by adding an aria-live HTML attribute to file upload fields when there is an error uploading the file (minor markup change). - Made the pager on the Tracker module listing pages show the same number of items as other pagers throughout Drupal core (minor UI change). - Fixed a bug which caused caches not to be properly cleared when a file entity was saved or deleted. - Added several missing countries to the default list returned by country_get_list() (string change). - Replaced the term "weight" with "influence" in the content ranking settings for search, and added help text for administrators (string change). - Fixed untranslatable text strings in the administrative interface for the "Crop" effect provided by the Image module (minor string change). - Fixed a bug in the Taxonomy module update function introduced in Drupal 7.26 that caused memory and CPU problems on sites with very large numbers of unpublished nodes. - Numerous small bug fixes. - Numerous API documentation improvements. - Additional automated test coverage.
86 lines
2.6 KiB
Makefile
86 lines
2.6 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2014/05/11 09:59:21 taca Exp $
|
|
|
|
DISTNAME= drupal-7.28
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://ftp.drupal.org/files/projects/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://drupal.org/
|
|
COMMENT= Open source content management system
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.2.0:../../graphics/php-gd
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.2.0:../../textproc/php-json
|
|
|
|
NO_BUILD= YES
|
|
DRUPAL= share/drupal
|
|
PAX_DIRS= includes misc modules profiles scripts themes
|
|
DOCS= CHANGELOG.txt COPYRIGHT.txt INSTALL.mysql.txt \
|
|
INSTALL.pgsql.txt INSTALL.sqlite.txt INSTALL.txt LICENSE.txt \
|
|
MAINTAINERS.txt README.txt UPGRADE.txt
|
|
|
|
PKG_GROUPS_VARS+= WWW_GROUP
|
|
PKG_USERS_VARS+= WWW_USER
|
|
|
|
BUILD_DEFS+= WWW_USER WWW_GROUP
|
|
USE_TOOLS+= pax
|
|
|
|
OWN_DIRS_PERMS+= ${DRUPAL}/sites/default \
|
|
${WWW_USER} ${WWW_GROUP} 0750
|
|
|
|
CONF_FILES= share/examples/drupal/drupal.conf \
|
|
${PKG_SYSCONFDIR}/drupal.conf \
|
|
share/examples/drupal/default.settings.php \
|
|
${DRUPAL}/sites/default/default.settings.php
|
|
|
|
CONF_FILES_PERMS+= share/examples/drupal/default.settings.php \
|
|
${DRUPAL}/sites/default/settings.php \
|
|
${WWW_USER} ${WWW_GROUP} 0640
|
|
|
|
REPLACE_INTERPRETER+= php
|
|
REPLACE.php.old= .*php[^ ]*
|
|
REPLACE.php.new= ${PREFIX}/bin/php
|
|
REPLACE_FILES.php= scripts/drupal.sh scripts/password-hash.sh
|
|
REPLACE_FILES.php+= scripts/dump-database-d6.sh
|
|
REPLACE_FILES.php+= scripts/dump-database-d7.sh
|
|
REPLACE_FILES.php+= scripts/generate-d6-content.sh
|
|
REPLACE_FILES.php+= scripts/generate-d6-content.sh
|
|
|
|
SUBST_CLASSES+= conf
|
|
SUBST_STAGE.conf= pre-install
|
|
SUBST_FILES.conf= drupal.conf
|
|
SUBST_SED.conf= -e "s|@DRUPAL@|${DRUPAL}|g"
|
|
SUBST_SED.conf+= -e "s|@PREFIX@|${PREFIX}|g"
|
|
SUBST_MESSAGE.conf= Fixing configuration files.
|
|
|
|
INSTALLATION_DIRS+= ${DRUPAL}/files ${DRUPAL}/sites \
|
|
share/doc/drupal share/examples/drupal
|
|
.for i in ${PAX_DIRS}
|
|
INSTALLATION_DIRS+= ${DRUPAL}/${i}
|
|
.endfor
|
|
|
|
.include "options.mk"
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/drupal.conf ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/robots.txt ${DESTDIR}${PREFIX}/${DRUPAL}
|
|
${INSTALL_DATA} ${WRKSRC}/drupal.conf \
|
|
${DESTDIR}${PREFIX}/share/examples/drupal
|
|
${INSTALL_DATA} ${WRKSRC}/sites/default/default.settings.php \
|
|
${DESTDIR}${PREFIX}/share/examples/drupal
|
|
${INSTALL_DATA} ${WRKSRC}/*.php ${DESTDIR}${PREFIX}/${DRUPAL}
|
|
.for i in ${PAX_DIRS}
|
|
cd ${WRKSRC}/${i} && ${PAX} -rw . ${DESTDIR}${PREFIX}/${DRUPAL}/${i}
|
|
.endfor
|
|
.for i in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DESTDIR}${PREFIX}/share/doc/drupal
|
|
.endfor
|
|
|
|
post-install:
|
|
${FIND} ${DESTDIR}${PREFIX}/${DRUPAL} \
|
|
\( -name '*.jpg' -o -name '*.png' \) | ${XARGS} ${CHMOD} 0644
|
|
|
|
.include "../../lang/php/phpversion.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|