diff options
author | taca <taca> | 2010-02-28 12:46:14 +0000 |
---|---|---|
committer | taca <taca> | 2010-02-28 12:46:14 +0000 |
commit | 5b07dd17d5d759636d0d7d3197f634ffa19a96d2 (patch) | |
tree | 09dd8480cdd0bb933e68b25d97738b1d3c387e76 /www/typolight28 | |
parent | 82e7829ed482baf34862f6243df56a6e5f847712 (diff) | |
download | pkgsrc-5b07dd17d5d759636d0d7d3197f634ffa19a96d2.tar.gz |
Update typolight28 package to 2.8.1.
pkgsrc chage: switch to user-destdir.
2.8.1 (2010-02-28)
* Added: different update modes for overriding multiple group memberships
* Fixed: the install tool does not handle equals sings in passwords (#1338)
* Fixed: articles drop-down menu in news/events is causing a fatal error (#1593)
* Fixed: several issues in the Comments class (BBCode parser)
* Fixed: image link elements do not support the new image resize options (#1585)
* Fixed: table sort script interchanges the classes even and odd (#1589)
* Fixed: inconsistent file tree behavior (#1582)
* Fixed: Date class not supporting negative Unix timestamps (#1591)
* Fixed: apply file permissions to image thumbnails when the Safe Mode
Hack is used (#1398)
* Fixed: several issues with the new calendar/event list navigation (#1584)
* Fixed: Widget class not validating the maximum input length (#1578)
* Fixed: relative URLs in RSS feeds are not converted to absolute URLs (#1596)
* Fixed: the toggleVisibilty() methods do not support save_callbacks
and versioning
* Fixed: access control for comments is missing in the new comments module
* Fixed: no active record available in onsubmit_callbacks in
"override multiple" mode
* Fixed: Swiff does not check whether the Flash plugins is available (#1601)
* Fixed: navigation module start/stop levels fail if there is a reference
page (#1607)
* Fixed: the style sheet module does not show an error if a file is not
writeable (#1598)
* Fixed: FancyUpload does not work in the popup file manager (#1608)
* Fixed: wrong thumbnail size if only height and maximum front end width
are given
* Fixed: file manager does not urlencode filenames (#1616)
* Fixed: not all elements and modules pass the data array to the view (#1604)
* Fixed some minor issues
Diffstat (limited to 'www/typolight28')
-rw-r--r-- | www/typolight28/Makefile | 33 | ||||
-rw-r--r-- | www/typolight28/Makefile.version | 4 | ||||
-rw-r--r-- | www/typolight28/distinfo | 8 |
3 files changed, 23 insertions, 22 deletions
diff --git a/www/typolight28/Makefile b/www/typolight28/Makefile index b0bf1eff570..7b65c18d36b 100644 --- a/www/typolight28/Makefile +++ b/www/typolight28/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2009/12/23 12:53:46 taca Exp $ +# $NetBSD: Makefile,v 1.3 2010/02/28 12:46:14 taca Exp $ # DISTNAME= typolight-${TL_VERSION} @@ -17,7 +17,7 @@ DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=5.2.0:../../databases/php-mysql DEPENDS+= ${PHP_PKG_PREFIX}-mcrypt>=5.2.0:../../security/php-mcrypt DEPENDS+= ${PHP_PKG_PREFIX}-soap>=5.2.0:../../net/php5-soap -PKG_DESTDIR_SUPPORT= destdir +PKG_DESTDIR_SUPPORT= user-destdir PHP_VERSIONS_ACCEPTED= 5 @@ -71,21 +71,22 @@ WWW_SYSFILES= config/.htaccess constants.php drivers functions.php \ INSTALLATION_DIRS+= ${TL_DOCDIR} ${TL_EGDIR} ${TL_WEBDIR}/system/config OWN_DIRS_PERMS+= \ - ${TL_WEBDIR} ${BINOWN} ${APACHE_GROUP} 0775 \ - ${TL_WEBDIR}/plugins ${BINOWN} ${APACHE_GROUP} 0775 \ - ${TL_WEBDIR}/plugins/tcpdf/cache ${BINOWN} ${APACHE_GROUP} 0775 \ - ${TL_WEBDIR}/system ${BINOWN} ${APACHE_GROUP} 0775 \ - ${TL_WEBDIR}/system/drivers ${BINOWN} ${APACHE_GROUP} 0775 \ - ${TL_WEBDIR}/system/html ${BINOWN} ${APACHE_GROUP} 0770 \ - ${TL_WEBDIR}/system/libraries ${BINOWN} ${APACHE_GROUP} 0775 \ - ${TL_WEBDIR}/system/logs ${BINOWN} ${APACHE_GROUP} 0770 \ - ${TL_WEBDIR}/system/modules ${BINOWN} ${APACHE_GROUP} 0775 \ - ${TL_WEBDIR}/system/themes ${BINOWN} ${APACHE_GROUP} 0775 \ - ${TL_WEBDIR}/system/tmp ${BINOWN} ${APACHE_GROUP} 0770 \ - ${TL_WEBDIR}/templates ${BINOWN} ${APACHE_GROUP} 0770 \ - ${TL_WEBDIR}/tl_files ${BINOWN} ${APACHE_GROUP} 0770 \ + ${TL_WEBDIR} ${REAL_ROOT_USER} ${APACHE_GROUP} 0775 \ + ${TL_WEBDIR}/plugins ${REAL_ROOT_USER} ${APACHE_GROUP} 0775 \ + ${TL_WEBDIR}/plugins/tcpdf/cache \ + ${REAL_ROOT_USER} ${APACHE_GROUP} 0775 \ + ${TL_WEBDIR}/system ${REAL_ROOT_USER} ${APACHE_GROUP} 0775 \ + ${TL_WEBDIR}/system/drivers ${REAL_ROOT_USER} ${APACHE_GROUP} 0775 \ + ${TL_WEBDIR}/system/html ${REAL_ROOT_USER} ${APACHE_GROUP} 0770 \ + ${TL_WEBDIR}/system/libraries ${REAL_ROOT_USER} ${APACHE_GROUP} 0775 \ + ${TL_WEBDIR}/system/logs ${REAL_ROOT_USER} ${APACHE_GROUP} 0770 \ + ${TL_WEBDIR}/system/modules ${REAL_ROOT_USER} ${APACHE_GROUP} 0775 \ + ${TL_WEBDIR}/system/themes ${REAL_ROOT_USER} ${APACHE_GROUP} 0775 \ + ${TL_WEBDIR}/system/tmp ${REAL_ROOT_USER} ${APACHE_GROUP} 0770 \ + ${TL_WEBDIR}/templates ${REAL_ROOT_USER} ${APACHE_GROUP} 0770 \ + ${TL_WEBDIR}/tl_files ${REAL_ROOT_USER} ${APACHE_GROUP} 0770 \ ${TL_WEBDIR}/tl_files/tiny_templates \ - ${BINOWN} ${APACHE_GROUP} 0770 + ${REAL_ROOT_USER} ${APACHE_GROUP} 0770 PKG_GROUPS_VARS+= APACHE_GROUP PKG_USERS_VARS+= APACHE_USER diff --git a/www/typolight28/Makefile.version b/www/typolight28/Makefile.version index 5053b20ef96..81d1aba25a0 100644 --- a/www/typolight28/Makefile.version +++ b/www/typolight28/Makefile.version @@ -1,3 +1,3 @@ -# $NetBSD: Makefile.version,v 1.3 2010/02/17 14:38:05 taca Exp $ +# $NetBSD: Makefile.version,v 1.4 2010/02/28 12:46:14 taca Exp $ # -TL_VERSION= 2.8.0 +TL_VERSION= 2.8.1 diff --git a/www/typolight28/distinfo b/www/typolight28/distinfo index c7fb5e0392a..8d8c146124a 100644 --- a/www/typolight28/distinfo +++ b/www/typolight28/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2010/02/17 14:38:05 taca Exp $ +$NetBSD: distinfo,v 1.4 2010/02/28 12:46:14 taca Exp $ -SHA1 (typolight-2.8.0.tar.gz) = 482e7908530e4d8a968501ac63a14359bf8a825b -RMD160 (typolight-2.8.0.tar.gz) = e492982b4b563888a2b5b8daaefc2a1e49bbe38e -Size (typolight-2.8.0.tar.gz) = 4037282 bytes +SHA1 (typolight-2.8.1.tar.gz) = c960922b8e9d5ef725bc21945d7bd9a5302ca89b +RMD160 (typolight-2.8.1.tar.gz) = 5913940e7d2ea36425706c93ea641c3d84d18d31 +Size (typolight-2.8.1.tar.gz) = 4042098 bytes |