From owner-svn-ports-head@FreeBSD.ORG Sat Aug 4 08:13:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67CA51065670; Sat, 4 Aug 2012 08:13:02 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 520738FC0C; Sat, 4 Aug 2012 08:13:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q748D2Sl028578; Sat, 4 Aug 2012 08:13:02 GMT (envelope-from decke@svn.freebsd.org) Received: (from decke@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q748D27v028572; Sat, 4 Aug 2012 08:13:02 GMT (envelope-from decke@svn.freebsd.org) Message-Id: <201208040813.q748D27v028572@svn.freebsd.org> From: Bernhard Froehlich Date: Sat, 4 Aug 2012 08:13:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302009 - in head/www/mythplugin-mythweb: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Aug 2012 08:13:02 -0000 Author: decke Date: Sat Aug 4 08:13:01 2012 New Revision: 302009 URL: http://svn.freebsd.org/changeset/ports/302009 Log: - Update to 0.25.2 - Add fixes for PHP 5.4 Added: head/www/mythplugin-mythweb/files/patch-mythweb__includes__sorting.php (contents, props changed) head/www/mythplugin-mythweb/files/patch-mythweb__modules__tv__tmpl__default__schedules.php (contents, props changed) Modified: head/www/mythplugin-mythweb/Makefile (contents, props changed) head/www/mythplugin-mythweb/distinfo (contents, props changed) head/www/mythplugin-mythweb/pkg-plist (contents, props changed) Modified: head/www/mythplugin-mythweb/Makefile ============================================================================== --- head/www/mythplugin-mythweb/Makefile Sat Aug 4 08:11:52 2012 (r302008) +++ head/www/mythplugin-mythweb/Makefile Sat Aug 4 08:13:01 2012 (r302009) @@ -6,7 +6,7 @@ # PORTNAME= mythweb -PORTVERSION= 0.25 +PORTVERSION= 0.25.2 CATEGORIES= www MASTER_SITES= http://ftp.osuosl.org/pub/mythtv/ \ http://ftp.osuosl.org/pub/mythtv/old_releases/ \ @@ -48,7 +48,7 @@ post-patch: do-install: ${MKDIR} ${WWWDIR} ${MKDIR} ${WWWDIR}/data - (cd ${WRKSRC}/mythweb/ && ${COPYTREE_SHARE} "*" ${WWWDIR}) + (cd ${WRKSRC}/mythweb/ && ${COPYTREE_SHARE} "*" ${WWWDIR} "! -name *.orig") ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} ${CHMOD} -R 775 ${WWWDIR}/data Modified: head/www/mythplugin-mythweb/distinfo ============================================================================== --- head/www/mythplugin-mythweb/distinfo Sat Aug 4 08:11:52 2012 (r302008) +++ head/www/mythplugin-mythweb/distinfo Sat Aug 4 08:13:01 2012 (r302009) @@ -1,2 +1,2 @@ -SHA256 (mythplugins-0.25.tar.bz2) = 8b74e84a11772274f6f90752d8ce2adf8156162879e4ff716f763bbc695d3b4d -SIZE (mythplugins-0.25.tar.bz2) = 36795780 +SHA256 (mythplugins-0.25.2.tar.bz2) = e8507dcddfbb63ab50fe738400639c20bf2f2a278a8947fa85d9096e537f11f3 +SIZE (mythplugins-0.25.2.tar.bz2) = 36763594 Added: head/www/mythplugin-mythweb/files/patch-mythweb__includes__sorting.php ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/mythplugin-mythweb/files/patch-mythweb__includes__sorting.php Sat Aug 4 08:13:01 2012 (r302009) @@ -0,0 +1,11 @@ +--- mythweb/includes/sorting.php.orig 2012-05-30 23:22:20.000000000 +0200 ++++ mythweb/includes/sorting.php 2012-07-29 14:17:07.402674096 +0200 +@@ -119,7 +119,7 @@ + function by_user_choice(&$a, &$b) { + foreach ($GLOBALS['user_sort_choice'] as $sort) { + $function = 'by_'.$sort['field']; +- $response = $function(&$a, &$b); ++ $response = $function($a, $b); + // Identical response, go on to the next sort choice + if (!$response) + continue; Added: head/www/mythplugin-mythweb/files/patch-mythweb__modules__tv__tmpl__default__schedules.php ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/mythplugin-mythweb/files/patch-mythweb__modules__tv__tmpl__default__schedules.php Sat Aug 4 08:13:01 2012 (r302009) @@ -0,0 +1,13 @@ +--- mythweb/modules/tv/tmpl/default/schedules.php.orig 2012-05-30 23:22:20.000000000 +0200 ++++ mythweb/modules/tv/tmpl/default/schedules.php 2012-07-29 14:17:07.405673220 +0200 +@@ -85,6 +85,10 @@ + + + channel->name = '[ '.t('Any').' ]';" ++ ini_set('error_reporting', E_ERROR); + $prev_group = ''; + $cur_group = ''; + foreach ($the_schedules as $schedule) { Modified: head/www/mythplugin-mythweb/pkg-plist ============================================================================== --- head/www/mythplugin-mythweb/pkg-plist Sat Aug 4 08:11:52 2012 (r302008) +++ head/www/mythplugin-mythweb/pkg-plist Sat Aug 4 08:13:01 2012 (r302009) @@ -709,8 +709,8 @@ @dirrm %%WWWDIR%%/js/dialog @dirrm %%WWWDIR%%/js @dirrm %%WWWDIR%%/includes -@dirrm %%WWWDIR%%/data/tv_icons -@dirrm %%WWWDIR%%/data/cache +@dirrmtry %%WWWDIR%%/data/tv_icons +@dirrmtry %%WWWDIR%%/data/cache @dirrmtry %%WWWDIR%%/data @dirrm %%WWWDIR%%/configuration @dirrm %%WWWDIR%%/classes/UPnP