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.23.1_p26407.ebuild
Date: Fri, 01 Oct 2010 03:36:43
Message-Id: 20101001033636.5C70F2004C@flycatcher.gentoo.org
1 cardoe 10/10/01 03:36:36
2
3 Modified: ChangeLog
4 Added: mythvideo-0.23.1_p26407.ebuild
5 Log:
6 Version bump. Fix compilation with Qt-4.7
7
8 (Portage version: 2.1.9.12/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.94 media-plugins/mythvideo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/ChangeLog?rev=1.94&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/ChangeLog?rev=1.94&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/ChangeLog?r1=1.93&r2=1.94
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v
20 retrieving revision 1.93
21 retrieving revision 1.94
22 diff -u -r1.93 -r1.94
23 --- ChangeLog 2 Aug 2010 04:49:29 -0000 1.93
24 +++ ChangeLog 1 Oct 2010 03:36:36 -0000 1.94
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-plugins/mythvideo
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.93 2010/08/02 04:49:29 cardoe Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.94 2010/10/01 03:36:36 cardoe Exp $
30 +
31 +*mythvideo-0.23.1_p26407 (01 Oct 2010)
32 +
33 + 01 Oct 2010; Doug Goldstein <cardoe@g.o>
34 + +mythvideo-0.23.1_p26407.ebuild:
35 + Version bump. Fix compilation with Qt-4.7
36
37 *mythvideo-0.23.1_p25496 (02 Aug 2010)
38
39
40
41
42 1.1 media-plugins/mythvideo/mythvideo-0.23.1_p26407.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/mythvideo-0.23.1_p26407.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/mythvideo-0.23.1_p26407.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mythvideo-0.23.1_p26407.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.23.1_p26407.ebuild,v 1.1 2010/10/01 03:36:36 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/imaging
68 >=dev-python/mysql-python-1.2.2
69 media-tv/mythtv[python] )"
70 DEPEND=""
71
72 src_install() {
73 mythtv-plugins_src_install
74
75 newinitd "${FILESDIR}"/mtd.init.d mtd
76
77 # correct permissions so MythVideo is actually usable
78 fperms 755 /usr/share/mythtv/mythvideo/scripts/*.pl
79 fperms 755 /usr/share/mythtv/mythvideo/scripts/*.py
80 fperms 755 /usr/share/mythtv/mythvideo/scripts/*/*.pl
81 fperms 755 /usr/share/mythtv/mythvideo/scripts/*/*.py
82
83 # setup JAMU cron jobs
84 if use jamu; then
85 exeinto /etc/cron.daily
86 newexe "${FILESDIR}/mythvideo.daily" mythvideo || die
87 exeinto /etc/cron.hourly
88 newexe "${FILESDIR}/mythvideo.hourly" mythvideo || die
89 exeinto /etc/cron.weekly
90 newexe "${FILESDIR}/mythvideo.weekly" mythvideo || die
91 insinto /home/mythtv/.mythtv/
92 newins mythvideo/scripts/jamu-example.conf jamu.conf || die
93 fi
94 }
95
96 pkg_postinst() {
97 elog "MythVideo can use any media player to playback files if you"
98 elog "are *NOT* using Storage Groups. If you are using Storage"
99 elog "Groups, you *MUST* use the Internal player."
100 elog
101 elog "Otherwise, you can install mplayer, xine or any other video"
102 elog "player and use that instead by configuring the player to use."
103 elog "The default is 'Internal'."
104 }