diff options
author | Bernhard Froehlich <decke@FreeBSD.org> | 2012-10-27 13:24:45 +0000 |
---|---|---|
committer | Bernhard Froehlich <decke@FreeBSD.org> | 2012-10-27 13:24:45 +0000 |
commit | 064885a929c190b562074eb5517514d70ab5dfee (patch) | |
tree | 573ace09da711840dc451a767d80367d6812c04b /www/mythplugin-mythweb | |
parent | 3d665e8d6b5c518b4b9233197f64d6a19421774d (diff) | |
download | ports-064885a929c190b562074eb5517514d70ab5dfee.tar.gz ports-064885a929c190b562074eb5517514d70ab5dfee.zip |
Notes
Diffstat (limited to 'www/mythplugin-mythweb')
-rw-r--r-- | www/mythplugin-mythweb/Makefile | 16 | ||||
-rw-r--r-- | www/mythplugin-mythweb/distinfo | 4 | ||||
-rw-r--r-- | www/mythplugin-mythweb/files/patch-mythweb__includes__sorting.php | 11 |
3 files changed, 8 insertions, 23 deletions
diff --git a/www/mythplugin-mythweb/Makefile b/www/mythplugin-mythweb/Makefile index 7dbe3a85618b..89756b25915a 100644 --- a/www/mythplugin-mythweb/Makefile +++ b/www/mythplugin-mythweb/Makefile @@ -1,12 +1,8 @@ -# New ports collection makefile for: mythplugin-mythweb -# Date created: 2009-12-27 -# Whom: Bernhard Froehlich <decke@bluelife.at> -# +# Created by: Bernhard Froehlich <decke@bluelife.at> # $FreeBSD$ -# PORTNAME= mythweb -PORTVERSION= 0.25.2 +PORTVERSION= 0.26.0 CATEGORIES= www MASTER_SITES= http://ftp.osuosl.org/pub/mythtv/ \ http://ftp.osuosl.org/pub/mythtv/old_releases/ \ @@ -26,16 +22,16 @@ USE_PHP= spl session mysql pcre posix json SUB_FILES= pkg-message REINPLACE_ARGS= -i "" -OPTIONS= APACHE "Enable Apache Support" on \ - LIGHTTPD "Enable Lighttpd Support" off +OPTIONS_DEFINE= APACHE LIGHTTPD +OPTIONS_DEFAULT= APACHE .include <bsd.port.options.mk> -.if defined(WITH_APACHE) +.if ${PORT_OPTIONS:MAPACHE} USE_APACHE_RUN= 22+ .endif -.if defined(WITH_LIGHTTPD) +.if ${PORT_OPTIONS:MLIGHTTPD} RUN_DEPENDS+= lighttpd:${PORTSDIR}/www/lighttpd .endif diff --git a/www/mythplugin-mythweb/distinfo b/www/mythplugin-mythweb/distinfo index f909e59ab41f..a7c45c312967 100644 --- a/www/mythplugin-mythweb/distinfo +++ b/www/mythplugin-mythweb/distinfo @@ -1,2 +1,2 @@ -SHA256 (mythplugins-0.25.2.tar.bz2) = e8507dcddfbb63ab50fe738400639c20bf2f2a278a8947fa85d9096e537f11f3 -SIZE (mythplugins-0.25.2.tar.bz2) = 36763594 +SHA256 (mythplugins-0.26.0.tar.bz2) = 4e7f0493f37792c084c1b4d0b5863b4201ebce6d62ab7c6cc31ca74087d83c62 +SIZE (mythplugins-0.26.0.tar.bz2) = 36673620 diff --git a/www/mythplugin-mythweb/files/patch-mythweb__includes__sorting.php b/www/mythplugin-mythweb/files/patch-mythweb__includes__sorting.php deleted file mode 100644 index 6b8761107a7c..000000000000 --- a/www/mythplugin-mythweb/files/patch-mythweb__includes__sorting.php +++ /dev/null @@ -1,11 +0,0 @@ ---- 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; |