Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/mythvideo: ChangeLog mythvideo-0.22_p22991.ebuild
Date: Mon, 04 Jan 2010 05:59:18
Message-Id: E1NRfyG-0002Zm-M6@stork.gentoo.org
1 cardoe 10/01/04 05:59:16
2
3 Modified: ChangeLog
4 Added: mythvideo-0.22_p22991.ebuild
5 Log:
6 version bump. fix DVD drive handling
7 (Portage version: 2.1.7.16/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.84 media-plugins/mythvideo/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/mythvideo/ChangeLog?rev=1.84&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/mythvideo/ChangeLog?rev=1.84&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/mythvideo/ChangeLog?r1=1.83&r2=1.84
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v
19 retrieving revision 1.83
20 retrieving revision 1.84
21 diff -u -r1.83 -r1.84
22 --- ChangeLog 22 Nov 2009 05:57:25 -0000 1.83
23 +++ ChangeLog 4 Jan 2010 05:59:16 -0000 1.84
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-plugins/mythvideo
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.83 2009/11/22 05:57:25 cardoe Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.84 2010/01/04 05:59:16 cardoe Exp $
30 +
31 +*mythvideo-0.22_p22991 (04 Jan 2010)
32 +
33 + 04 Jan 2010; Doug Goldstein <cardoe@g.o>
34 + +mythvideo-0.22_p22991.ebuild:
35 + version bump. fix DVD drive handling
36
37 *mythvideo-0.22_p22864-r1 (22 Nov 2009)
38
39
40
41
42 1.1 media-plugins/mythvideo/mythvideo-0.22_p22991.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/mythvideo/mythvideo-0.22_p22991.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/mythvideo/mythvideo-0.22_p22991.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mythvideo-0.22_p22991.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/mythvideo-0.22_p22991.ebuild,v 1.1 2010/01/04 05:59:16 cardoe Exp $
52
53 EAPI=2
54
55 inherit qt4 mythtv-plugins
56
57 DESCRIPTION="Video player module for MythTV."
58 IUSE="+jamu"
59 KEYWORDS="~amd64 ~ppc ~x86"
60
61 RDEPEND="dev-perl/libwww-perl
62 dev-perl/HTML-Parser
63 dev-perl/URI
64 dev-perl/XML-Simple
65 sys-apps/eject
66 jamu? ( >=dev-python/imdbpy-3.8
67 >=dev-python/mysql-python-1.2.2
68 media-tv/mythtv[python] )"
69 DEPEND=""
70
71 src_install() {
72 mythtv-plugins_src_install
73
74 newinitd "${FILESDIR}"/mtd.init.d mtd
75
76 # correct permissions so MythVideo is actually usable
77 fperms 755 /usr/share/mythtv/mythvideo/scripts/*.pl
78 fperms 755 /usr/share/mythtv/mythvideo/scripts/*.py
79
80 # setup JAMU cron jobs
81 if use jamu; then
82 exeinto /etc/cron.daily
83 newexe "${FILESDIR}/mythvideo.daily" mythvideo || die
84 exeinto /etc/cron.hourly
85 newexe "${FILESDIR}/mythvideo.hourly" mythvideo || die
86 exeinto /etc/cron.weekly
87 newexe "${FILESDIR}/mythvideo.weekly" mythvideo || die
88 insinto /home/mythtv/.mythtv/
89 newins mythvideo/scripts/jamu-example.conf jamu.conf || die
90 fi
91 }
92
93 pkg_postinst() {
94 elog "MythVideo can use any media player to playback files if you"
95 elog "are *NOT* using Storage Groups. If you are using Storage"
96 elog "Groups, you *MUST* use the Internal player."
97 elog
98 elog "Otherwise, you can install mplayer, xine or any other video"
99 elog "player and use that instead by configuring the player to use."
100 elog "The default is 'Internal'."
101 }