diff options
author | 2008-12-04 20:52:48 +0000 | |
---|---|---|
committer | 2008-12-04 20:52:48 +0000 | |
commit | 296ab8daee9e12e03e8598adab9199f332bd61b4 (patch) | |
tree | 320d2244ecbcf1810af13275a9fc2c39a780aaf3 /media-libs/amanith | |
parent | remove old (diff) | |
download | gentoo-2-296ab8daee9e12e03e8598adab9199f332bd61b4.tar.gz gentoo-2-296ab8daee9e12e03e8598adab9199f332bd61b4.tar.bz2 gentoo-2-296ab8daee9e12e03e8598adab9199f332bd61b4.zip |
fix for bug #247744, do not try to install plugins, when they aren't built.
(Portage version: 2.1.6_rc2/cvs/Linux 2.6.28-rc6 i686)
Diffstat (limited to 'media-libs/amanith')
-rw-r--r-- | media-libs/amanith/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/amanith/amanith-0.3-r2.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/media-libs/amanith/ChangeLog b/media-libs/amanith/ChangeLog index 58f903c79ed3..1e50099efa50 100644 --- a/media-libs/amanith/ChangeLog +++ b/media-libs/amanith/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/amanith # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/amanith/ChangeLog,v 1.5 2008/08/11 22:38:49 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/amanith/ChangeLog,v 1.6 2008/12/04 20:52:48 maekke Exp $ + + 04 Dec 2008; Markus Meier <maekke@gentoo.org> amanith-0.3-r2.ebuild: + fix for bug #247744, do not try to install plugins, when they aren't + built. 11 Aug 2008; Ben de Groot <yngwin@gentoo.org> amanith-0.3-r2.ebuild: Fix split qt4 deps wrt bug 217161. diff --git a/media-libs/amanith/amanith-0.3-r2.ebuild b/media-libs/amanith/amanith-0.3-r2.ebuild index 1225a249e52d..6d397c95f08a 100644 --- a/media-libs/amanith/amanith-0.3-r2.ebuild +++ b/media-libs/amanith/amanith-0.3-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/amanith/amanith-0.3-r2.ebuild,v 1.2 2008/08/11 22:38:49 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/amanith/amanith-0.3-r2.ebuild,v 1.3 2008/12/04 20:52:48 maekke Exp $ EAPI="1" inherit eutils toolchain-funcs qt4 @@ -57,7 +57,10 @@ src_compile() { } src_install() { - dolib.so lib/*.so* plugins/*.so* || die + dolib.so lib/*.so* || die + if use jpeg || use png || use truetype ; then + dolib.so plugins/*.so* || die + fi insinto /usr/include doins -r include/amanith || die |