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-tv/mythtv: ChangeLog mythtv-0.25.1_p20120708.ebuild
Date: Tue, 10 Jul 2012 04:14:54
Message-Id: 20120710041443.E25B020065@flycatcher.gentoo.org
1 cardoe 12/07/10 04:14:43
2
3 Modified: ChangeLog mythtv-0.25.1_p20120708.ebuild
4 Log:
5 Add a Mythbuntu like wrapper for mythfrontend so users can configure the autostart arguments easily as well as using mythwelcome as a wrapper.
6
7 (Portage version: 2.1.10.65/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.358 media-tv/mythtv/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.358&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.358&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?r1=1.357&r2=1.358
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v
19 retrieving revision 1.357
20 retrieving revision 1.358
21 diff -u -r1.357 -r1.358
22 --- ChangeLog 9 Jul 2012 14:48:47 -0000 1.357
23 +++ ChangeLog 10 Jul 2012 04:14:43 -0000 1.358
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-tv/mythtv
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.357 2012/07/09 14:48:47 cardoe Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.358 2012/07/10 04:14:43 cardoe Exp $
29 +
30 + 09 Jul 2012; Doug Goldstein <cardoe@g.o>
31 + mythtv-0.25.1_p20120708.ebuild, +files/mythfrontend.conf,
32 + +files/mythfrontend.wrapper, +files/xinitrc-r1:
33 + Add a Mythbuntu like wrapper for mythfrontend so users can configure the
34 + autostart arguments easily as well as using mythwelcome as a wrapper.
35
36 09 Jul 2012; Doug Goldstein <cardoe@g.o>
37 mythtv-0.25.1_p20120708.ebuild:
38
39
40
41 1.4 media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild?rev=1.4&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild?rev=1.4&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild?r1=1.3&r2=1.4
46
47 Index: mythtv-0.25.1_p20120708.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild,v
50 retrieving revision 1.3
51 retrieving revision 1.4
52 diff -u -r1.3 -r1.4
53 --- mythtv-0.25.1_p20120708.ebuild 9 Jul 2012 14:48:47 -0000 1.3
54 +++ mythtv-0.25.1_p20120708.ebuild 10 Jul 2012 04:14:43 -0000 1.4
55 @@ -1,6 +1,6 @@
56 # Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild,v 1.3 2012/07/09 14:48:47 cardoe Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild,v 1.4 2012/07/10 04:14:43 cardoe Exp $
60
61 EAPI=4
62
63 @@ -218,7 +218,10 @@
64 insinto /usr/share/mythtv/contrib
65 doins -r contrib/*
66
67 - newbin "${FILESDIR}"/runmythfe-r1 runmythfe
68 + # Install our mythfrontend wrapper which is similar to Mythbuntu's
69 + mv "${ED}/usr/bin/mythfrontend" "${ED}/usr/bin/mythfrontend.real"
70 + newbin "${FILESDIR}"/mythfrontend.wrapper mythfrontend
71 + newconfd "${FILESDIR}"/mythfrontend.conf mythfrontend
72
73 if use autostart; then
74 dodir /etc/env.d/
75 @@ -226,7 +229,7 @@
76
77 insinto /home/mythtv
78 newins "${FILESDIR}"/bash_profile .bash_profile
79 - newins "${FILESDIR}"/xinitrc .xinitrc
80 + newins "${FILESDIR}"/xinitrc-r1 .xinitrc
81 fi
82
83 for file in `find "${ED}" -type f -name \*.py`; do chmod a+x "${file}"; done