diff options
author | Christian Parpart <trapni@gentoo.org> | 2010-10-23 22:55:58 +0000 |
---|---|---|
committer | Christian Parpart <trapni@gentoo.org> | 2010-10-23 22:55:58 +0000 |
commit | fc0159694a5c80447b3339830d0125d80b9ebd95 (patch) | |
tree | 7944da460a98c8432697da943b2caf951375e87e /media-sound/teamspeak-client-bin | |
parent | Stable x86 wrt bug 342137. (diff) | |
download | gentoo-2-fc0159694a5c80447b3339830d0125d80b9ebd95.tar.gz gentoo-2-fc0159694a5c80447b3339830d0125d80b9ebd95.tar.bz2 gentoo-2-fc0159694a5c80447b3339830d0125d80b9ebd95.zip |
version bump
(Portage version: 2.2_rc89/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/teamspeak-client-bin')
3 files changed, 62 insertions, 2 deletions
diff --git a/media-sound/teamspeak-client-bin/ChangeLog b/media-sound/teamspeak-client-bin/ChangeLog index 2e1ce7fd6b98..b98d3c81a0e9 100644 --- a/media-sound/teamspeak-client-bin/ChangeLog +++ b/media-sound/teamspeak-client-bin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/teamspeak-client-bin # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v 1.14 2010/09/11 16:36:52 trapni Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v 1.15 2010/10/23 22:55:58 trapni Exp $ + +*teamspeak-client-bin-3.0.0_beta32 (23 Oct 2010) + + 23 Oct 2010; Christian Parpart <trapni@gentoo.org> files/teamspeak3, + +teamspeak-client-bin-3.0.0_beta32.ebuild: + version bump *teamspeak-client-bin-3.0.0_beta29 (11 Sep 2010) diff --git a/media-sound/teamspeak-client-bin/files/teamspeak3 b/media-sound/teamspeak-client-bin/files/teamspeak3 index eabef103f48f..d598f01dfcf3 100644 --- a/media-sound/teamspeak-client-bin/files/teamspeak3 +++ b/media-sound/teamspeak-client-bin/files/teamspeak3 @@ -7,4 +7,4 @@ export LD_LIBRARY_PATH="${BASEDIR}${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}" # work around DT_RPATH (.) security issue by chdir'ing into expected $LD_LIBRARY_PATH cd "${BASEDIR}" -exec "${BASEDIR}/ts3client" $* +exec "${BASEDIR}/ts3client" "$@" diff --git a/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta32.ebuild b/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta32.ebuild new file mode 100644 index 000000000000..36c90ffe82d9 --- /dev/null +++ b/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta32.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.0_beta32.ebuild,v 1.1 2010/10/23 22:55:58 trapni Exp $ + +# NOTE: The comments in this file are for instruction and documentation. +# They're not meant to appear with your final, production ebuild. Please +# remember to remove them before submitting or committing your ebuild. That +# doesn't mean you can't add your own comments though. + +# The 'Header' on the third line should just be left alone. When your ebuild +# will be committed to cvs, the details on that line will be automatically +# generated to contain the correct data. + +EAPI=1 + +inherit eutils + +DESCRIPTION="TeamSpeak Client - Voice Communication Software" +HOMEPAGE="http://teamspeak.com/" +LICENSE="teamspeak3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="strip" +PROPERTIES="interactive" + +SRC_URI=" + amd64? ( http://ftp.4players.de/pub/hosted/ts3/releases/beta-${PV/3.0.0_beta/}/TeamSpeak3-Client-linux_amd64-${PV/_/-}.run ) + x86? ( http://ftp.4players.de/pub/hosted/ts3/releases/beta-${PV/3.0.0_beta/}/TeamSpeak3-Client-linux_x86-${PV/_/-}.run ) +" + +DEPEND="" +RDEPEND="${DEPEND} + =media-libs/libpng-1.2* + >=x11-libs/libXinerama-1.0.2" + +src_unpack() { + # TODO: unpack_makeself -- use this version once it supports makeself 2.1.6 + for i in ${A}; do + sh "${DISTDIR}/${i}" --target "${WORKDIR}" || die "unpack failed" + done +} + +src_install() { + local dest="${D}/opt/teamspeak3-client" + + mkdir -p "${dest}" + cp -R "${WORKDIR}/"* "${dest}/" || die + + exeinto /usr/bin + doexe "${FILESDIR}/teamspeak3" + + mv "${dest}/ts3client_linux_"* "${dest}/ts3client" +} |