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