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