Gentoo Archives: gentoo-commits

From: "Kevin McCarthy (signals)" <signals@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/parcellite: ChangeLog parcellite-0.9.1.ebuild
Date: Wed, 02 Mar 2011 17:59:11
Message-Id: 20110302175901.AA8122004F@flycatcher.gentoo.org
1 signals 11/03/02 17:59:01
2
3 Modified: ChangeLog parcellite-0.9.1.ebuild
4 Log:
5 Slotted gtk+ and glib depends and EAPI=2 bump to support it.
6
7 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 x11-misc/parcellite/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/parcellite/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 21 Jan 2011 18:45:56 -0000 1.9
23 +++ ChangeLog 2 Mar 2011 17:59:01 -0000 1.10
24 @@ -1,6 +1,9 @@
25 # ChangeLog for x11-misc/parcellite
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/parcellite/ChangeLog,v 1.9 2011/01/21 18:45:56 hwoarang Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/parcellite/ChangeLog,v 1.10 2011/03/02 17:59:01 signals Exp $
29 +
30 + 02 Mar 2011; Kevin McCarthy <signals@g.o> parcellite-0.9.1.ebuild:
31 + Slotted gtk+ and glib depends and EAPI=2 bump to support it.
32
33 *parcellite-0.9.3 (21 Jan 2011)
34
35
36
37
38 1.3 x11-misc/parcellite/parcellite-0.9.1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/parcellite-0.9.1.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/parcellite-0.9.1.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/parcellite-0.9.1.ebuild?r1=1.2&r2=1.3
43
44 Index: parcellite-0.9.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/x11-misc/parcellite/parcellite-0.9.1.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- parcellite-0.9.1.ebuild 3 Oct 2009 17:08:25 -0000 1.2
51 +++ parcellite-0.9.1.ebuild 2 Mar 2011 17:59:01 -0000 1.3
52 @@ -1,7 +1,8 @@
53 -# Copyright 1999-2009 Gentoo Foundation
54 +# Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/parcellite/parcellite-0.9.1.ebuild,v 1.2 2009/10/03 17:08:25 maekke Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/parcellite/parcellite-0.9.1.ebuild,v 1.3 2011/03/02 17:59:01 signals Exp $
58
59 +EAPI=2
60 inherit fdo-mime
61
62 DESCRIPTION="A lightweight GTK+ based clipboard manager."
63 @@ -13,15 +14,18 @@
64 KEYWORDS="amd64 x86"
65 IUSE="nls"
66
67 -RDEPEND=">=x11-libs/gtk+-2.10
68 - >=dev-libs/glib-2.14"
69 +RDEPEND="x11-libs/gtk+:2
70 + dev-libs/glib:2"
71 DEPEND="${RDEPEND}
72 dev-util/pkgconfig
73 nls? ( sys-devel/gettext
74 dev-util/intltool )"
75
76 -src_compile() {
77 +src_configure() {
78 econf --disable-dependency-tracking $(use_enable nls)
79 +}
80 +
81 +src_compile() {
82 emake || die "emake failed."
83 }