diff options
author | Cecil <knoppmyth@gmail.com> | 2012-01-14 20:46:12 (GMT) |
---|---|---|
committer | Cecil <knoppmyth@gmail.com> | 2012-01-14 20:46:12 (GMT) |
commit | c321283760591e3c6e5d9ed415e9c422fee83d9e (patch) | |
tree | 4e482fdf514f477c7ac23e0da81ec82a51a53b39 /abs/core/mythtv | |
parent | e9948fef7a06dbb6b0c53e50df10c0a0dc2d941b (diff) | |
parent | d5525acd5a4054460b98930b46d9de5690c1fd36 (diff) | |
download | linhes_pkgbuild-c321283760591e3c6e5d9ed415e9c422fee83d9e.zip linhes_pkgbuild-c321283760591e3c6e5d9ed415e9c422fee83d9e.tar.gz linhes_pkgbuild-c321283760591e3c6e5d9ed415e9c422fee83d9e.tar.bz2 |
Merge branch 'testing' of ssh://cesman@linhes.org/mount/repository/linhes_pkgbuild into testing
Diffstat (limited to 'abs/core/mythtv')
-rw-r--r-- | abs/core/mythtv/stable-0.24/mythplugins/PKGBUILD | 10 | ||||
-rw-r--r-- | abs/core/mythtv/stable-0.24/mythplugins/mythburn.py.patch | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/abs/core/mythtv/stable-0.24/mythplugins/PKGBUILD b/abs/core/mythtv/stable-0.24/mythplugins/PKGBUILD index 83168af..e1e23a2 100644 --- a/abs/core/mythtv/stable-0.24/mythplugins/PKGBUILD +++ b/abs/core/mythtv/stable-0.24/mythplugins/PKGBUILD @@ -13,14 +13,14 @@ pkgname=('mytharchive' 'mythweather' 'mythzoneminder') pkgver=0.24 -pkgrel=18 +pkgrel=19 arch=('i686' 'x86_64') url="http://www.mythtv.org" license=('GPL') conflicts=('mythmovies') -makedepends=("mythtv>=${pkgver}" 'mplayer' 'fftw' 'dvdauthor' 'libexif' +makedepends=("mythtv>=${pkgver}" 'mplayer' 'fftw2' 'dvdauthor' 'libexif' 'python-imaging' 'libcdaudio' 'taglib' 'perl-xml-simple' 'dcraw' - 'libvisual' 'perl-xml-xpath' 'perl-image-size' + 'libvisual' 'perl-xml-xpath' 'perl-image-size' 'perl-json' 'perl-class-inspector' 'perl-datetime-format-iso8601' 'flac' 'libvorbis' 'python2' 'python-pycurl' 'python-oauth') source=(ftp://ftp.knoppmyth.net/R6/sources/mythtv-0.24-fixes.tar.bz2 @@ -111,7 +111,7 @@ package_mythweather() { pkgdesc="Weather checking plugin for MythTV" depends=("mythtv>=${pkgver}" 'perl-xml-xpath' 'perl-image-size' 'perl-class-inspector' 'perl-datetime-format-iso8601' - 'perl-date-manip') + 'perl-date-manip' 'perl-json') # replaces=('mythweather') cd "${srcdir}/${_gitname}/${pkgbase}/mythweather" make INSTALL_ROOT="${pkgdir}" install || return 1 @@ -126,4 +126,4 @@ package_mythzoneminder() { make INSTALL_ROOT="${pkgdir}" install || return 1 } md5sums=('91488a6b1b05d14c5c5c601908b699e5' - 'adce485c4765e8d49b91b3ce9c9963ac') + 'cc7e6887acda167fcc5336af33f29411') diff --git a/abs/core/mythtv/stable-0.24/mythplugins/mythburn.py.patch b/abs/core/mythtv/stable-0.24/mythplugins/mythburn.py.patch index 770119a..abac7df 100644 --- a/abs/core/mythtv/stable-0.24/mythplugins/mythburn.py.patch +++ b/abs/core/mythtv/stable-0.24/mythplugins/mythburn.py.patch @@ -161,7 +161,7 @@ + else: + videoheight = 576 + -+ croppixels = videoheight - int(videores.split("x")[1]) ++ croppixels = videoheight - (720 / float(videoAR)) + write("CropPixels Total: %s" % croppixels) + value = "720x%d -vf pad=720:%d:0:%d:black" % (videoheight - croppixels, videoheight, croppixels / 2) |