diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2010-07-26 15:51:29 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2010-07-26 15:51:29 +0000 |
commit | 32285eb52471a9a8d3a69085c535c0de39d77c33 (patch) | |
tree | 2c04f8d10e57d04fb26503c2980a792a1f2381b8 /media-plugins/mythvideo | |
parent | raise exo depend to ensure there's no conflicts between udev and hal (diff) | |
download | gentoo-2-32285eb52471a9a8d3a69085c535c0de39d77c33.tar.gz gentoo-2-32285eb52471a9a8d3a69085c535c0de39d77c33.tar.bz2 gentoo-2-32285eb52471a9a8d3a69085c535c0de39d77c33.zip |
Upstream fix for artwork downloading and URL redirection.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'media-plugins/mythvideo')
-rw-r--r-- | media-plugins/mythvideo/ChangeLog | 8 | ||||
-rw-r--r-- | media-plugins/mythvideo/mythvideo-0.23.1_p25367.ebuild | 54 |
2 files changed, 61 insertions, 1 deletions
diff --git a/media-plugins/mythvideo/ChangeLog b/media-plugins/mythvideo/ChangeLog index 4932d47258e7..57ee15918fa6 100644 --- a/media-plugins/mythvideo/ChangeLog +++ b/media-plugins/mythvideo/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-plugins/mythvideo # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.88 2010/07/26 13:55:07 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.89 2010/07/26 15:51:29 cardoe Exp $ + +*mythvideo-0.23.1_p25367 (26 Jul 2010) + + 26 Jul 2010; Doug Goldstein <cardoe@gentoo.org> + +mythvideo-0.23.1_p25367.ebuild: + Upstream fix for artwork downloading and URL redirection. 26 Jul 2010; Christian Faulhammer <fauli@gentoo.org> mythvideo-0.22_p23469.ebuild: diff --git a/media-plugins/mythvideo/mythvideo-0.23.1_p25367.ebuild b/media-plugins/mythvideo/mythvideo-0.23.1_p25367.ebuild new file mode 100644 index 000000000000..592dab7afc79 --- /dev/null +++ b/media-plugins/mythvideo/mythvideo-0.23.1_p25367.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/mythvideo-0.23.1_p25367.ebuild,v 1.1 2010/07/26 15:51:29 cardoe Exp $ + +EAPI=2 + +inherit qt4 mythtv-plugins + +DESCRIPTION="Video player module for MythTV." +IUSE="+jamu" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND="dev-perl/libwww-perl + dev-perl/HTML-Parser + dev-perl/URI + dev-perl/XML-Simple + sys-apps/eject + jamu? ( >=dev-python/imdbpy-3.8 + dev-python/imaging + >=dev-python/mysql-python-1.2.2 + media-tv/mythtv[python] )" +DEPEND="" + +src_install() { + mythtv-plugins_src_install + + newinitd "${FILESDIR}"/mtd.init.d mtd + + # correct permissions so MythVideo is actually usable + fperms 755 /usr/share/mythtv/mythvideo/scripts/*.pl + fperms 755 /usr/share/mythtv/mythvideo/scripts/*.py + + # setup JAMU cron jobs + if use jamu; then + exeinto /etc/cron.daily + newexe "${FILESDIR}/mythvideo.daily" mythvideo || die + exeinto /etc/cron.hourly + newexe "${FILESDIR}/mythvideo.hourly" mythvideo || die + exeinto /etc/cron.weekly + newexe "${FILESDIR}/mythvideo.weekly" mythvideo || die + insinto /home/mythtv/.mythtv/ + newins mythvideo/scripts/jamu-example.conf jamu.conf || die + fi +} + +pkg_postinst() { + elog "MythVideo can use any media player to playback files if you" + elog "are *NOT* using Storage Groups. If you are using Storage" + elog "Groups, you *MUST* use the Internal player." + elog + elog "Otherwise, you can install mplayer, xine or any other video" + elog "player and use that instead by configuring the player to use." + elog "The default is 'Internal'." +} |