blob: 9f520fc44d9113833d08ba0b60b7c084816c1bc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak2-client-bin/teamspeak2-client-bin-2.0.32.60-r3.ebuild,v 1.16 2007/07/22 08:30:00 drac Exp $
MY_PV=rc2_2032
DESCRIPTION="The TeamSpeak voice communication tool"
HOMEPAGE="http://www.goteamspeak.com"
SRC_URI="ftp://ftp.freenet.de/pub/4players/teamspeak.org/releases/ts2_client_${MY_PV}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="-* x86 amd64"
IUSE=""
DEPEND="x11-libs/libXt
amd64? ( >=app-emulation/emul-linux-x86-baselibs-1.0
>=app-emulation/emul-linux-x86-xlibs-1.0 )"
S="${WORKDIR}"/ts2_client_${MY_PV}/setup.data/image
dir="/opt/teamspeak2-client"
src_compile() { :; }
src_install() {
newdoc Readme.txt README
dodoc client_sdk/SDK_readme.txt
dohtml manual/*
into /opt
dobin "${FILESDIR}"/TeamSpeak
dosed "s:%installdir%:/opt/teamspeak2-client:g" /opt/bin/TeamSpeak
exeinto ${dir}
doexe TeamSpeak.bin *.so*
insinto ${dir}/sounds
doins sounds/*
insinto ${dir}/client_sdk
exeinto ${dir}/client_sdk
doins client_sdk/*.pas client_sdk/*.dpr
doexe client_sdk/tsControl client_sdk/*.so*
#Install the teamspeak icon.
insinto /usr/share/pixmaps
newins icon.xpm teamspeak.xpm
# Install a teamspeak.protocol file for kde/konqueror to accept
# teamspeak:// links
insinto /usr/share/services/
doins "${FILESDIR}"/teamspeak.protocol
# Fix bug #489010
dosym /usr/share/doc/${PF}/html ${dir}/manual
}
pkg_postinst() {
echo
elog
elog "Please Note: The new Teamspeak2 Release Candidate 2 Client"
elog "will not be able to connect to any of the *old* rc1 servers."
elog "if you get 'Bad response' from your server check if your"
elog "server is running rc2, which is a version >= 2.0.19.16."
elog "Also note this release supports the new speex codec, "
elog "so if you got unsupported codec messages, you need this :D"
echo
elog "Note: If you just upgraded from a version less than 2.0.32.60-r1,"
elog "your users' config files will incorrectly point to non-existant"
elog "soundfiles because they've been moved from their old location."
elog "You may want to perform the following commands:"
elog "# mkdir /usr/share/teamspeak2-client"
elog "# ln -s ${dir}/sounds /usr/share/teamspeak2-client/sounds"
elog "This way, each user won't have to modify their config files to"
elog "reflect this move."
echo
}
|