Gentoo Archives: gentoo-commits

From: "Christian Parpart (trapni)" <trapni@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/teamspeak-client-bin: ChangeLog teamspeak-client-bin-3.0.0_beta36.ebuild
Date: Sun, 27 Feb 2011 19:47:55
Message-Id: 20110227194721.6D8EF20054@flycatcher.gentoo.org
1 trapni 11/02/27 19:47:21
2
3 Modified: ChangeLog
4 Added: teamspeak-client-bin-3.0.0_beta36.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.9.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.18 media-sound/teamspeak-client-bin/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 23 Oct 2010 23:47:32 -0000 1.17
24 +++ ChangeLog 27 Feb 2011 19:47:21 -0000 1.18
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/teamspeak-client-bin
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v 1.17 2010/10/23 23:47:32 trapni Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v 1.18 2011/02/27 19:47:21 trapni Exp $
31 +
32 +*teamspeak-client-bin-3.0.0_beta36 (27 Feb 2011)
33 +
34 + 27 Feb 2011; Christian Parpart <trapni@g.o>
35 + +teamspeak-client-bin-3.0.0_beta36.ebuild:
36 + version bump
37
38 *teamspeak-client-bin-3.0.0_beta32-r2 (23 Oct 2010)
39
40
41
42
43 1.1 media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta36.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta36.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta36.ebuild?rev=1.1&content-type=text/plain
47
48 Index: teamspeak-client-bin-3.0.0_beta36.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta36.ebuild,v 1.1 2011/02/27 19:47:21 trapni Exp $
53
54 # NOTE: The comments in this file are for instruction and documentation.
55 # They're not meant to appear with your final, production ebuild. Please
56 # remember to remove them before submitting or committing your ebuild. That
57 # doesn't mean you can't add your own comments though.
58
59 # The 'Header' on the third line should just be left alone. When your ebuild
60 # will be committed to cvs, the details on that line will be automatically
61 # generated to contain the correct data.
62
63 EAPI=1
64
65 inherit eutils
66
67 DESCRIPTION="TeamSpeak Client - Voice Communication Software"
68 HOMEPAGE="http://teamspeak.com/"
69 LICENSE="teamspeak3"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE=""
73 RESTRICT="strip"
74 PROPERTIES="interactive"
75
76 SRC_URI="
77 amd64? ( http://ftp.4players.de/pub/hosted/ts3/releases/beta-${PV/3.0.0_beta/}/TeamSpeak3-Client-linux_amd64-${PV/_/-}.run )
78 x86? ( http://ftp.4players.de/pub/hosted/ts3/releases/beta-${PV/3.0.0_beta/}/TeamSpeak3-Client-linux_x86-${PV/_/-}.run )
79 "
80
81 DEPEND=""
82 RDEPEND="${DEPEND}
83 =media-libs/libpng-1.4*
84 x11-libs/qt-gui:4
85 >=x11-libs/libXinerama-1.0.2"
86
87 src_unpack() {
88 # TODO: unpack_makeself -- use this version once it supports makeself 2.1.6
89 for i in ${A}; do
90 sh "${DISTDIR}/${i}" --target "${WORKDIR}" || die "unpack failed"
91 done
92 }
93
94 src_install() {
95 local dest="${D}/opt/teamspeak3-client"
96
97 mkdir -p "${dest}"
98
99 # remove the qt-libraries as they just cause trouble with the system's Qt
100 # see bug #328807
101 rm "${WORKDIR}"/libQt* || die
102
103 cp -R "${WORKDIR}/"* "${dest}/" || die
104
105 exeinto /usr/bin
106 doexe "${FILESDIR}/teamspeak3"
107
108 mv "${dest}/ts3client_linux_"* "${dest}/ts3client"
109
110 make_desktop_entry teamspeak3 TeamSpeak3 \
111 "/opt/teamspeak3-client/gfx/default/24x24_connect.png" \
112 Network
113 }