summaryrefslogtreecommitdiffstats
path: root/abs/core/mythtv/stable-29/mythweb
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/mythtv/stable-29/mythweb')
-rw-r--r--abs/core/mythtv/stable-29/mythweb/FixPHPWarnings_13260.patch21
-rw-r--r--abs/core/mythtv/stable-29/mythweb/PKGBUILD8
2 files changed, 3 insertions, 26 deletions
diff --git a/abs/core/mythtv/stable-29/mythweb/FixPHPWarnings_13260.patch b/abs/core/mythtv/stable-29/mythweb/FixPHPWarnings_13260.patch
deleted file mode 100644
index 9fb3c04..0000000
--- a/abs/core/mythtv/stable-29/mythweb/FixPHPWarnings_13260.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- ./modules/tv/recorded.php
-+++ ./modules/tv/recorded.php
-@@ -179,14 +179,14 @@
- if (function_exists('gmp_mul')) {
- // GMP functions should work better with 64 bit numbers.
- $size = gmp_mul('1024', $size);
-- define(disk_size, gmp_strval($size));
-+ define('disk_size', gmp_strval($size));
- $size = gmp_mul('1024', $used);
-- define(disk_used, gmp_strval($size));
-+ define('disk_used', gmp_strval($size));
- }
- else {
- // This is inaccurate, but it's the best we can get without GMP.
-- define(disk_size, ($size * 1024));
-- define(disk_used, ($used * 1024));
-+ define('disk_size', ($size * 1024));
-+ define('disk_used', ($used * 1024));
- }
-
- // Load the class for this page
diff --git a/abs/core/mythtv/stable-29/mythweb/PKGBUILD b/abs/core/mythtv/stable-29/mythweb/PKGBUILD
index a32f039..f83912e 100644
--- a/abs/core/mythtv/stable-29/mythweb/PKGBUILD
+++ b/abs/core/mythtv/stable-29/mythweb/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=mythweb
pkgver=29
-pkgrel=4
+pkgrel=5
commit_hash=`cat ../git_src/git_hash_web`
pkgdesc="Web interface for MythTV's backend, $commit_hash"
arch=('x86_64')
@@ -10,8 +10,7 @@ depends=('lighttpd' "mythtv>=${pkgver}" 'php' 'supplemental-web')
groups=('mythtv-extras')
install=mythweb.install
-patches=('FixPHPWarnings_13260.patch'
- 'video.css.patch')
+patches=('video.css.patch')
source=(`echo ${patches[@]:0}`
'mythweb.include'
'mythweb_gen_light.conf')
@@ -54,7 +53,6 @@ package() {
#gen_light_conf
install -D -m0744 ${srcdir}/mythweb_gen_light.conf ${pkgdir}/etc/gen_light_conf.d/mythweb.conf
}
-md5sums=('df80362c995ddfcf6a2119b83d26b2b4'
- '668a36e404c8254f56e7a7304e655332'
+md5sums=('668a36e404c8254f56e7a7304e655332'
'7645a6399434cbba35639713ac5d88e0'
'df190116b3aba35720fb6631885f973f')