diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2011-08-03 17:00:51 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2011-08-03 17:00:51 +0000 |
commit | 5d2901a2768f1ef3a4317da4ebe3906233f165ef (patch) | |
tree | 5e218612a4e1bb3149621aaf78dc942d0df5ffcb /www-plugins/google-talkplugin | |
parent | version bump (bug #377003) (diff) | |
download | gentoo-2-5d2901a2768f1ef3a4317da4ebe3906233f165ef.tar.gz gentoo-2-5d2901a2768f1ef3a4317da4ebe3906233f165ef.tar.bz2 gentoo-2-5d2901a2768f1ef3a4317da4ebe3906233f165ef.zip |
fixes for bug #376741 and bug #377249#c1
(Portage version: 2.1.10.3/cvs/Linux i686)
Diffstat (limited to 'www-plugins/google-talkplugin')
-rw-r--r-- | www-plugins/google-talkplugin/ChangeLog | 6 | ||||
-rw-r--r-- | www-plugins/google-talkplugin/google-talkplugin-2.1.7.0.ebuild | 13 |
2 files changed, 12 insertions, 7 deletions
diff --git a/www-plugins/google-talkplugin/ChangeLog b/www-plugins/google-talkplugin/ChangeLog index e926e56a249f..cbecc939c0c3 100644 --- a/www-plugins/google-talkplugin/ChangeLog +++ b/www-plugins/google-talkplugin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-plugins/google-talkplugin # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/google-talkplugin/ChangeLog,v 1.12 2011/07/29 16:58:08 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/google-talkplugin/ChangeLog,v 1.13 2011/08/03 17:00:51 ottxor Exp $ + + 03 Aug 2011; Christoph Junghans <ottxor@gentoo.org> + google-talkplugin-2.1.7.0.ebuild: + fixes bug #376741 and bug #377249#c1 29 Jul 2011; Christoph Junghans <ottxor@gentoo.org> google-talkplugin-2.1.7.0.ebuild: diff --git a/www-plugins/google-talkplugin/google-talkplugin-2.1.7.0.ebuild b/www-plugins/google-talkplugin/google-talkplugin-2.1.7.0.ebuild index 7502d6bfbdcb..81fb5f7f8ae6 100644 --- a/www-plugins/google-talkplugin/google-talkplugin-2.1.7.0.ebuild +++ b/www-plugins/google-talkplugin/google-talkplugin-2.1.7.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/google-talkplugin/google-talkplugin-2.1.7.0.ebuild,v 1.3 2011/07/29 16:58:08 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/google-talkplugin/google-talkplugin-2.1.7.0.ebuild,v 1.4 2011/08/03 17:00:51 ottxor Exp $ EAPI=4 @@ -72,7 +72,7 @@ QA_EXECSTACK="${INSTALL_BASE#/}/GoogleTalkPlugin" QA_TEXTRELS="${INSTALL_BASE#/}/libnpg*.so" -QA_DT_HASH="${INSTALL_BASE#/}/libnpg*.so +QA_DT_HASH="${INSTALL_BASE#/}/libnpg.*so ${INSTALL_BASE#/}/GoogleTalkPlugin" S="${WORKDIR}" @@ -85,14 +85,15 @@ pkg_nofetch() { } src_unpack() { - unpack ${A} ./data.tar.gz ./usr/share/doc/google-talkplugin/changelog.Debian.gz + unpack ${A} ./data.tar.gz } src_install() { #workaround for bug #376741 - [[ -f ./usr/share/doc/google-talkplugin/changelog.Debian ]] && \ - dodoc ./usr/share/doc/google-talkplugin/changelog.Debian - [[ -f ${WORKDIR}/changelog.Debian ]] && dodoc "${WORKDIR}/changelog.Debian" + cd usr/share/doc/google-talkplugin || die + unpack ./changelog.Debian.gz + dodoc changelog.Debian + cd - exeinto "${INSTALL_BASE}" doexe "${INSTALL_BASE#/}"/GoogleTalkPlugin |