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_beta13.ebuild ChangeLog
Date: Thu, 04 Feb 2010 19:16:22
Message-Id: E1Nd7BV-0006KJ-Pi@stork.gentoo.org
1 trapni 10/02/04 19:16:13
2
3 Modified: ChangeLog
4 Added: teamspeak-client-bin-3.0.0_beta13.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 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.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 21 Jan 2010 22:23:06 -0000 1.4
23 +++ ChangeLog 4 Feb 2010 19:16:13 -0000 1.5
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.4 2010/01/21 22:23:06 trapni Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v 1.5 2010/02/04 19:16:13 trapni Exp $
29 +
30 +*teamspeak-client-bin-3.0.0_beta13 (04 Feb 2010)
31 +
32 + 04 Feb 2010; Christian Parpart <trapni@g.o>
33 + +teamspeak-client-bin-3.0.0_beta13.ebuild:
34 + version bump
35
36 *teamspeak-client-bin-3.0.0_beta12 (21 Jan 2010)
37
38
39
40
41 1.1 media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta13.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: teamspeak-client-bin-3.0.0_beta13.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_beta13.ebuild,v 1.1 2010/02/04 19:16:13 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-13/TeamSpeak3-Client-linux_amd64-${PV/_/-}.run )
76 x86? ( http://ftp.4players.de/pub/hosted/ts3/releases/beta-13/TeamSpeak3-Client-linux_x86-${PV/_/-}.run )
77 "
78
79 DEPEND=""
80 RDEPEND="${DEPEND}"
81
82 src_unpack() {
83 # TODO: unpack_makeself -- use this version once it supports makeself 2.1.6
84 for i in ${A}; do
85 sh "${DISTDIR}/${i}" --target "${WORKDIR}" || die "unpack failed"
86 done
87 }
88
89 src_install() {
90 local dest="${D}/opt/teamspeak3-client"
91
92 mkdir -p "${dest}"
93 cp -R "${WORKDIR}/"* "${dest}/" || die
94
95 exeinto /usr/bin
96 doexe "${FILESDIR}/teamspeak3"
97
98 mv "${dest}/ts3client_linux_"* "${dest}/ts3client"
99 }