Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-www/kaffeine-mozilla-plugin: ChangeLog kaffeine-mozilla-plugin-0.2.ebuild
Date: Mon, 29 Dec 2008 15:48:37
Message-Id: E1LHKM7-0001eg-67@stork.gentoo.org
1 scarabeus 08/12/29 15:48:35
2
3 Modified: ChangeLog kaffeine-mozilla-plugin-0.2.ebuild
4 Log:
5 Fix libdir placement. Per bug #231894.
6 (Portage version: 2.2_rc19/cvs/Linux 2.6.28-gentoo i686)
7
8 Revision Changes Path
9 1.13 net-www/kaffeine-mozilla-plugin/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/kaffeine-mozilla-plugin/ChangeLog?rev=1.13&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/kaffeine-mozilla-plugin/ChangeLog?rev=1.13&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/kaffeine-mozilla-plugin/ChangeLog?r1=1.12&r2=1.13
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-www/kaffeine-mozilla-plugin/ChangeLog,v
18 retrieving revision 1.12
19 retrieving revision 1.13
20 diff -u -r1.12 -r1.13
21 --- ChangeLog 22 Jul 2007 07:43:10 -0000 1.12
22 +++ ChangeLog 29 Dec 2008 15:48:35 -0000 1.13
23 @@ -1,6 +1,10 @@
24 # ChangeLog for net-www/kaffeine-mozilla-plugin
25 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-www/kaffeine-mozilla-plugin/ChangeLog,v 1.12 2007/07/22 07:43:10 dberkholz Exp $
27 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/net-www/kaffeine-mozilla-plugin/ChangeLog,v 1.13 2008/12/29 15:48:35 scarabeus Exp $
29 +
30 + 29 Dec 2008; Tomas Chvatal <scarabeus@g.o>
31 + kaffeine-mozilla-plugin-0.2.ebuild:
32 + Fix libdir placement. Per bug #231894.
33
34 22 Jul 2007; Donnie Berkholz <dberkholz@g.o>;
35 kaffeine-mozilla-plugin-0.2.ebuild:
36
37
38
39 1.12 net-www/kaffeine-mozilla-plugin/kaffeine-mozilla-plugin-0.2.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/kaffeine-mozilla-plugin/kaffeine-mozilla-plugin-0.2.ebuild?rev=1.12&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/kaffeine-mozilla-plugin/kaffeine-mozilla-plugin-0.2.ebuild?rev=1.12&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/kaffeine-mozilla-plugin/kaffeine-mozilla-plugin-0.2.ebuild?r1=1.11&r2=1.12
44
45 Index: kaffeine-mozilla-plugin-0.2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-www/kaffeine-mozilla-plugin/kaffeine-mozilla-plugin-0.2.ebuild,v
48 retrieving revision 1.11
49 retrieving revision 1.12
50 diff -u -r1.11 -r1.12
51 --- kaffeine-mozilla-plugin-0.2.ebuild 22 Jul 2007 07:43:10 -0000 1.11
52 +++ kaffeine-mozilla-plugin-0.2.ebuild 29 Dec 2008 15:48:35 -0000 1.12
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/net-www/kaffeine-mozilla-plugin/kaffeine-mozilla-plugin-0.2.ebuild,v 1.11 2007/07/22 07:43:10 dberkholz Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/net-www/kaffeine-mozilla-plugin/kaffeine-mozilla-plugin-0.2.ebuild,v 1.12 2008/12/29 15:48:35 scarabeus Exp $
59
60 inherit nsplugins multilib
61
62 @@ -21,11 +21,14 @@
63 DEPEND="${RDEPEND}"
64
65 src_compile() {
66 - econf --prefix=/usr/$(get_libdir)/${PLUGINS_DIR} || die
67 + econf \
68 + --prefix=/usr/$(get_libdir)/${PLUGINS_DIR}
69 + --libdir=/usr/$(get_libdir)/${PLUGINS_DIR%plugins}
70 +
71 emake || die
72 }
73
74 src_install() {
75 - einstall prefix=${D}/usr/$(get_libdir)/${PLUGINS_DIR%plugins} || die
76 + einstall prefix="${D}"/usr/$(get_libdir)/${PLUGINS_DIR%plugins} || die
77 dodoc AUTHORS ChangeLog README
78 }