Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/amanith: ChangeLog amanith-0.3-r2.ebuild
Date: Thu, 04 Dec 2008 20:52:53
Message-Id: E1L8LBo-0004GQ-QT@stork.gentoo.org
1 maekke 08/12/04 20:52:48
2
3 Modified: ChangeLog amanith-0.3-r2.ebuild
4 Log:
5 fix for bug #247744, do not try to install plugins, when they aren't built.
6 (Portage version: 2.1.6_rc2/cvs/Linux 2.6.28-rc6 i686)
7
8 Revision Changes Path
9 1.6 media-libs/amanith/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/amanith/ChangeLog?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/amanith/ChangeLog?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/amanith/ChangeLog?r1=1.5&r2=1.6
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/amanith/ChangeLog,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- ChangeLog 11 Aug 2008 22:38:49 -0000 1.5
22 +++ ChangeLog 4 Dec 2008 20:52:48 -0000 1.6
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-libs/amanith
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/amanith/ChangeLog,v 1.5 2008/08/11 22:38:49 yngwin Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/amanith/ChangeLog,v 1.6 2008/12/04 20:52:48 maekke Exp $
28 +
29 + 04 Dec 2008; Markus Meier <maekke@g.o> amanith-0.3-r2.ebuild:
30 + fix for bug #247744, do not try to install plugins, when they aren't
31 + built.
32
33 11 Aug 2008; Ben de Groot <yngwin@g.o> amanith-0.3-r2.ebuild:
34 Fix split qt4 deps wrt bug 217161.
35
36
37
38 1.3 media-libs/amanith/amanith-0.3-r2.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/amanith/amanith-0.3-r2.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/amanith/amanith-0.3-r2.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/amanith/amanith-0.3-r2.ebuild?r1=1.2&r2=1.3
43
44 Index: amanith-0.3-r2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/amanith/amanith-0.3-r2.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- amanith-0.3-r2.ebuild 11 Aug 2008 22:38:49 -0000 1.2
51 +++ amanith-0.3-r2.ebuild 4 Dec 2008 20:52:48 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-libs/amanith/amanith-0.3-r2.ebuild,v 1.2 2008/08/11 22:38:49 yngwin Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-libs/amanith/amanith-0.3-r2.ebuild,v 1.3 2008/12/04 20:52:48 maekke Exp $
57
58 EAPI="1"
59 inherit eutils toolchain-funcs qt4
60 @@ -57,7 +57,10 @@
61 }
62
63 src_install() {
64 - dolib.so lib/*.so* plugins/*.so* || die
65 + dolib.so lib/*.so* || die
66 + if use jpeg || use png || use truetype ; then
67 + dolib.so plugins/*.so* || die
68 + fi
69
70 insinto /usr/include
71 doins -r include/amanith || die