diff options
author | 2010-09-28 14:14:24 +0000 | |
---|---|---|
committer | 2010-09-28 14:14:24 +0000 | |
commit | f0c816c666887939f159f15ab82f88080794dc39 (patch) | |
tree | bbf798f16d8f15a28e0232620f089024bdd9a235 /www-plugins/gnash | |
parent | QA: Fix SRC_URI of c_rehash and move it to FILESDIR, bug 339027 (diff) | |
download | gentoo-2-f0c816c666887939f159f15ab82f88080794dc39.tar.gz gentoo-2-f0c816c666887939f159f15ab82f88080794dc39.tar.bz2 gentoo-2-f0c816c666887939f159f15ab82f88080794dc39.zip |
Do not install pointless .la file, bug #338831
(Portage version: 2.2_rc85/cvs/Linux x86_64)
Diffstat (limited to 'www-plugins/gnash')
-rw-r--r-- | www-plugins/gnash/ChangeLog | 6 | ||||
-rw-r--r-- | www-plugins/gnash/gnash-0.8.8.ebuild | 9 |
2 files changed, 12 insertions, 3 deletions
diff --git a/www-plugins/gnash/ChangeLog b/www-plugins/gnash/ChangeLog index 025bed43a8e9..e66eaa1effef 100644 --- a/www-plugins/gnash/ChangeLog +++ b/www-plugins/gnash/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-plugins/gnash # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v 1.44 2010/09/28 12:55:12 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v 1.45 2010/09/28 14:14:24 chithanh Exp $ + + 28 Sep 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + gnash-0.8.8.ebuild: + Do not install pointless .la file, bug #338831 28 Sep 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> gnash-0.8.8.ebuild: diff --git a/www-plugins/gnash/gnash-0.8.8.ebuild b/www-plugins/gnash/gnash-0.8.8.ebuild index 3d435bed7420..e69921b26bda 100644 --- a/www-plugins/gnash/gnash-0.8.8.ebuild +++ b/www-plugins/gnash/gnash-0.8.8.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.8.ebuild,v 1.5 2010/09/28 12:55:12 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/gnash-0.8.8.ebuild,v 1.6 2010/09/28 14:14:24 chithanh Exp $ EAPI=3 CMAKE_REQUIRED="never" KDE_REQUIRED="optional" AT_M4DIR="cygnal" -inherit autotools eutils kde4-base multilib nsplugins flag-o-matic +inherit autotools eutils kde4-base multilib nsplugins python flag-o-matic DESCRIPTION="GNU Flash movie player that supports many SWF v7,8,9 features" HOMEPAGE="http://www.gnu.org/software/gnash/" @@ -249,6 +249,11 @@ src_install() { # Create a symlink in /usr/$(get_libdir)/nsbrowser/plugins to the nsplugin install directory. use nsplugin && inst_plugin /usr/$(get_libdir)/gnash/npapi/libgnashplugin.so \ + # Remove pointless .la file, bug 338831 + if use python; then + rm "${D}/$(python_get_sitedir)"/gtk-2.0/${PN}.la || die + fi + dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" } pkg_postinst() { |