mgorny 15/05/13 15:09:35 Modified: ChangeLog Added: teamspeak-client-bin-3.0.16-r1.ebuild Removed: teamspeak-client-bin-3.0.16.ebuild Log: Unbundle libquazip, bug #548048. https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/116 by karolherbst. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.40 media-sound/teamspeak-client-bin/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?rev=1.40&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?rev=1.40&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog?r1=1.39&r2=1.40 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v retrieving revision 1.39 retrieving revision 1.40 diff -u -r1.39 -r1.40 --- ChangeLog 21 Mar 2015 18:41:22 -0000 1.39 +++ ChangeLog 13 May 2015 15:09:35 -0000 1.40 @@ -1,6 +1,13 @@ # ChangeLog for media-sound/teamspeak-client-bin # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v 1.39 2015/03/21 18:41:22 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/teamspeak-client-bin/ChangeLog,v 1.40 2015/05/13 15:09:35 mgorny Exp $ + +*teamspeak-client-bin-3.0.16-r1 (13 May 2015) + + 13 May 2015; Michał Górny <[email protected]> + +teamspeak-client-bin-3.0.16-r1.ebuild, -teamspeak-client-bin-3.0.16.ebuild: + Unbundle libquazip, bug #548048. https://github.com/gentoo/gentoo-portage- + rsync-mirror/pull/116 by karolherbst. 21 Mar 2015; Justin Lecher <[email protected]> teamspeak-client-bin-3.0.13.1.ebuild, teamspeak-client-bin-3.0.16.ebuild: 1.1 media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/teamspeak-client-bin/teamspeak-client-bin-3.0.16-r1.ebuild?rev=1.1&content-type=text/plain Index: teamspeak-client-bin-3.0.16-r1.ebuild =================================================================== # Copyright 1999-2015 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.16-r1.ebuild,v 1.1 2015/05/13 15:09:35 mgorny Exp $ EAPI="5" inherit eutils unpacker DESCRIPTION="TeamSpeak Client - Voice Communication Software" HOMEPAGE="http://www.teamspeak.com/" SRC_URI=" amd64? ( http://ftp.4players.de/pub/hosted/ts3/releases/${PV}/TeamSpeak3-Client-linux_amd64-${PV/_/-}.run ) x86? ( http://ftp.4players.de/pub/hosted/ts3/releases/${PV}/TeamSpeak3-Client-linux_x86-${PV/_/-}.run )" LICENSE="teamspeak3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="alsa pulseaudio" REQUIRED_USE="|| ( alsa pulseaudio )" RDEPEND=" dev-libs/quazip:0/0[qt5] dev-qt/qtcore:5 dev-qt/qtgui:5[accessibility] dev-qt/qtnetwork:5 dev-qt/qtsql:5[sqlite] dev-qt/qtwidgets:5 sys-libs/glibc sys-libs/zlib alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio )" RESTRICT="fetch mirror strip" S="${WORKDIR}" pkg_nofetch() { elog "Please download ${A}" elog "from ${HOMEPAGE}?page=downloads and place this" elog "file in ${DISTDIR}" } src_prepare() { # Remove the qt-libraries as they just cause trouble with the system's Qt, see bug #328807. rm libQt* || die "Couldn't remove bundled Qt libraries." rm -r accessible platforms sqldrivers qt.conf || die "Couldn't remove bundle Qt files." # Remove unwanted soundbackends. if ! use alsa ; then rm soundbackends/libalsa* || die fi if ! use pulseaudio ; then rm soundbackends/libpulseaudio* || die fi # Remove quazip rm libquazip.so.1 || die # Rename the tsclient to its shorter version, required by the teamspeak3 script we install. mv ts3client_linux_* ts3client || die "Couldn't rename ts3client to its shorter version." } src_install() { insinto /opt/teamspeak3-client doins -r * fperms +x /opt/teamspeak3-client/ts3client dobin "${FILESDIR}/teamspeak3" make_desktop_entry teamspeak3 TeamSpeak3 \ "/opt/teamspeak3-client/pluginsdk/docs/client_html/images/logo.png" \ Network }
