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_p25396.ebuild mythvideo-0.23.1_p25367.ebuild
Date: Tue, 27 Jul 2010 15:27:55
Message-Id: 20100727152747.C76ED2CE15@corvid.gentoo.org
1 cardoe 10/07/27 15:27:47
2
3 Modified: ChangeLog
4 Added: mythvideo-0.23.1_p25396.ebuild
5 Removed: mythvideo-0.23.1_p25367.ebuild
6 Log:
7 Update to version that properly identifies itself as 0.23.1
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.90 media-plugins/mythvideo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/ChangeLog?rev=1.90&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/ChangeLog?rev=1.90&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/ChangeLog?r1=1.89&r2=1.90
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v
20 retrieving revision 1.89
21 retrieving revision 1.90
22 diff -u -r1.89 -r1.90
23 --- ChangeLog 26 Jul 2010 15:51:29 -0000 1.89
24 +++ ChangeLog 27 Jul 2010 15:27:47 -0000 1.90
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.89 2010/07/26 15:51:29 cardoe Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.90 2010/07/27 15:27:47 cardoe Exp $
30 +
31 +*mythvideo-0.23.1_p25396 (27 Jul 2010)
32 +
33 + 27 Jul 2010; Doug Goldstein <cardoe@g.o>
34 + -mythvideo-0.23.1_p25367.ebuild, +mythvideo-0.23.1_p25396.ebuild:
35 + Update to version that properly identifies itself as 0.23.1
36
37 *mythvideo-0.23.1_p25367 (26 Jul 2010)
38
39
40
41
42 1.1 media-plugins/mythvideo/mythvideo-0.23.1_p25396.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/mythvideo-0.23.1_p25396.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/mythvideo/mythvideo-0.23.1_p25396.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mythvideo-0.23.1_p25396.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_p25396.ebuild,v 1.1 2010/07/27 15:27:47 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
81 # setup JAMU cron jobs
82 if use jamu; then
83 exeinto /etc/cron.daily
84 newexe "${FILESDIR}/mythvideo.daily" mythvideo || die
85 exeinto /etc/cron.hourly
86 newexe "${FILESDIR}/mythvideo.hourly" mythvideo || die
87 exeinto /etc/cron.weekly
88 newexe "${FILESDIR}/mythvideo.weekly" mythvideo || die
89 insinto /home/mythtv/.mythtv/
90 newins mythvideo/scripts/jamu-example.conf jamu.conf || die
91 fi
92 }
93
94 pkg_postinst() {
95 elog "MythVideo can use any media player to playback files if you"
96 elog "are *NOT* using Storage Groups. If you are using Storage"
97 elog "Groups, you *MUST* use the Internal player."
98 elog
99 elog "Otherwise, you can install mplayer, xine or any other video"
100 elog "player and use that instead by configuring the player to use."
101 elog "The default is 'Internal'."
102 }