Gentoo Archives: gentoo-commits

From: "Tom Wijsman (tomwij)" <tomwij@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/teamspeak-client-bin: teamspeak-client-bin-3.0.10.ebuild ChangeLog
Date: Wed, 06 Mar 2013 12:43:57
Message-Id: 20130306124353.DEF712171D@flycatcher.gentoo.org
1 tomwij 13/03/06 12:43:53
2
3 Modified: ChangeLog
4 Added: teamspeak-client-bin-3.0.10.ebuild
5 Log:
6 Version bump to 3.0.10, reported by Stephan Kupfer. Fixes bug 3460522.
7
8 (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
9
10 Revision Changes Path
11 1.29 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.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 2 Mar 2013 22:04:18 -0000 1.28
24 +++ ChangeLog 6 Mar 2013 12:43:53 -0000 1.29
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/teamspeak-client-bin
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v 1.28 2013/03/02 22:04:18 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v 1.29 2013/03/06 12:43:53 tomwij Exp $
30 +
31 +*teamspeak-client-bin-3.0.10 (06 Mar 2013)
32 +
33 + 06 Mar 2013; Tom Wijsman <TomWij@g.o>
34 + +teamspeak-client-bin-3.0.10.ebuild:
35 + Version bump to 3.0.10, reported by Stephan Kupfer. Fixes bug 3460522.
36
37 02 Mar 2013; Markos Chandras <hwoarang@g.o>
38 teamspeak-client-bin-3.0.9.2.ebuild:
39
40
41
42 1.1 media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.10.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.10.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.10.ebuild?rev=1.1&content-type=text/plain
46
47 Index: teamspeak-client-bin-3.0.10.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.10.ebuild,v 1.1 2013/03/06 12:43:53 tomwij Exp $
52
53 EAPI=5
54
55 inherit eutils unpacker
56
57 DESCRIPTION="TeamSpeak Client - Voice Communication Software"
58 HOMEPAGE="http://www.TeamSpeak.com/"
59 LICENSE="teamspeak3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 RESTRICT="mirror strip"
63
64 SRC_URI="amd64? ( http://ftp.4players.de/pub/hosted/ts3/releases/${PV}/TeamSpeak3-Client-linux_amd64-${PV/_/-}.run )
65 x86? ( http://ftp.4players.de/pub/hosted/ts3/releases/${PV}/TeamSpeak3-Client-linux_x86-${PV/_/-}.run )"
66
67 RDEPEND="dev-qt/qtgui:4[accessibility,xinerama]
68 dev-qt/qtsql:4"
69
70 S="${WORKDIR}"
71
72 src_prepare() {
73 # Remove the qt-libraries as they just cause trouble with the system's Qt, see bug #328807.
74 rm libQt* || die "Couldn't remove bundled Qt libraries."
75
76 # Rename the tsclient to its shorter version, required by the teamspeak3 script we install.
77 mv ts3client_linux_* ts3client || die "Couldn't rename ts3client to its shorter version."
78 }
79
80 src_install() {
81 dodir /opt/teamspeak3-client
82 insinto /opt/teamspeak3-client
83 doins -r *
84
85 fperms +x /opt/teamspeak3-client/ts3client
86
87 exeinto /usr/bin
88 doexe "${FILESDIR}/teamspeak3"
89
90 make_desktop_entry teamspeak3 TeamSpeak3 \
91 "/opt/teamspeak3-client/pluginsdk/docs/client_html/images/logo.png" \
92 Network
93 }