Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-tv/livestation: ChangeLog livestation-2.7.0-r1.ebuild livestation-2.7.0.ebuild
Date: Fri, 29 May 2009 20:30:31
Message-Id: E1MA8ij-0008TW-4E@stork.gentoo.org
1 ssuominen 09/05/29 20:30:29
2
3 Modified: ChangeLog
4 Added: livestation-2.7.0-r1.ebuild
5 Removed: livestation-2.7.0.ebuild
6 Log:
7 Remove libXtst.so.6 from the package, since emul-linux-x86-xlibs provides it.
8 (Portage version: 2.1.6.13/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 media-tv/livestation/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/livestation/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/livestation/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/livestation/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-tv/livestation/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 29 Apr 2009 08:19:58 -0000 1.1
24 +++ ChangeLog 29 May 2009 20:30:29 -0000 1.2
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-tv/livestation
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-tv/livestation/ChangeLog,v 1.1 2009/04/29 08:19:58 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-tv/livestation/ChangeLog,v 1.2 2009/05/29 20:30:29 ssuominen Exp $
30 +
31 +*livestation-2.7.0-r1 (29 May 2009)
32 +
33 + 29 May 2009; Samuli Suominen <ssuominen@g.o>
34 + -livestation-2.7.0.ebuild, +livestation-2.7.0-r1.ebuild:
35 + Remove libXtst.so.6 from the package, since emul-linux-x86-xlibs provides
36 + it.
37
38 *livestation-2.7.0 (29 Apr 2009)
39
40
41
42
43 1.1 media-tv/livestation/livestation-2.7.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/livestation/livestation-2.7.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/livestation/livestation-2.7.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: livestation-2.7.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-tv/livestation/livestation-2.7.0-r1.ebuild,v 1.1 2009/05/29 20:30:29 ssuominen Exp $
53
54 inherit eutils
55
56 DESCRIPTION="Watch live, interactive TV and radio on the Livestation player"
57 HOMEPAGE="http://www.livestation.com"
58 SRC_URI="http://updates.${PN}.com/releases/${P/l/L}.run"
59
60 LICENSE="Livestation-EULA.txt"
61 SLOT="0"
62 KEYWORDS="~amd64"
63 IUSE=""
64
65 RDEPEND="amd64? ( app-emulation/emul-linux-x86-baselibs
66 app-emulation/emul-linux-x86-xlibs )"
67 DEPEND=""
68
69 MY_PN=${PN/l/L}
70 QA_TEXTRELS="opt/${MY_PN}/lib/*"
71 RESTRICT="mirror strip"
72 PROPERTIES="interactive"
73
74 S=${WORKDIR}/i386
75
76 pkg_setup() {
77 check_license
78 }
79
80 src_unpack() {
81 unpack_makeself
82 }
83
84 src_install() {
85 local dest=/opt/${MY_PN}
86
87 dodir ${dest}
88 cp -dpR *.{bin,conf} plugins "${D}"/${dest} || die "cp failed"
89 exeinto ${dest}/lib
90 rm -f lib/libXtst.so.6
91 doexe lib/* || die "doexe failed"
92 dosym plugins/imageformats ${dest}/imageformats || die "dosym failed"
93 dodoc README
94
95 make_wrapper ${PN} ./${MY_PN}.bin ${dest} ${dest}/lib
96 make_desktop_entry ${PN} ${MY_PN}
97 }