Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/matchbox-window-manager: matchbox-window-manager-1.2-r1.ebuild ChangeLog
Date: Tue, 08 Jul 2014 11:39:12
Message-Id: 20140708113907.2F39C2004E@flycatcher.gentoo.org
1 pacho 14/07/08 11:39:07
2
3 Modified: ChangeLog
4 Added: matchbox-window-manager-1.2-r1.ebuild
5 Log:
6 Use gnome2.eclass better
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.19 x11-wm/matchbox-window-manager/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/matchbox-window-manager/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/matchbox-window-manager/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/matchbox-window-manager/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-wm/matchbox-window-manager/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 4 Jun 2012 00:25:35 -0000 1.18
24 +++ ChangeLog 8 Jul 2014 11:39:07 -0000 1.19
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-wm/matchbox-window-manager
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox-window-manager/ChangeLog,v 1.18 2012/06/04 00:25:35 xmw Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox-window-manager/ChangeLog,v 1.19 2014/07/08 11:39:07 pacho Exp $
31 +
32 +*matchbox-window-manager-1.2-r1 (08 Jul 2014)
33 +
34 + 08 Jul 2014; Pacho Ramos <pacho@g.o>
35 + +matchbox-window-manager-1.2-r1.ebuild:
36 + Use gnome2.eclass better
37
38 04 Jun 2012; Michael Weber <xmw@g.o>
39 matchbox-window-manager-1.2.ebuild:
40 @@ -78,4 +84,3 @@
41 +matchbox-window-manager-0.9.5.ebuild:
42 - Initial import. Original ebuild by Priit Laes, modifications by Björn
43 Ruberg and Yuri Vasilevski.
44 -
45
46
47
48 1.1 x11-wm/matchbox-window-manager/matchbox-window-manager-1.2-r1.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/matchbox-window-manager/matchbox-window-manager-1.2-r1.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/matchbox-window-manager/matchbox-window-manager-1.2-r1.ebuild?rev=1.1&content-type=text/plain
52
53 Index: matchbox-window-manager-1.2-r1.ebuild
54 ===================================================================
55 # Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/x11-wm/matchbox-window-manager/matchbox-window-manager-1.2-r1.ebuild,v 1.1 2014/07/08 11:39:07 pacho Exp $
58
59 EAPI="5"
60 GCONF_DEBUG="no"
61
62 inherit eutils versionator gnome2
63
64 DESCRIPTION="Light weight WM designed for use on PDA computers"
65 HOMEPAGE="http://matchbox-project.org/"
66 SRC_URI="http://matchbox-project.org/sources/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2"
67 SLOT="0"
68 LICENSE="GPL-2"
69
70 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
71 IUSE="debug expat gnome session startup-notification xcomposite"
72
73 RDEPEND="
74 >=x11-libs/libmatchbox-1.5
75 expat? ( dev-libs/expat )
76 gnome? ( gnome-base/gconf )
77 startup-notification? ( x11-libs/startup-notification )
78 session? ( x11-libs/libSM )
79 xcomposite? (
80 x11-libs/libXcomposite
81 x11-libs/libXdamage )
82 "
83 DEPEND="${RDEPEND}"
84
85 src_prepare() {
86 # Allows to build with USE=-png
87 epatch "${FILESDIR}"/${PN}-1.0-use-nopng.patch
88 gnome2_src_prepare
89 }
90
91 src_configure() {
92 gnome2_src_configure \
93 --enable-keyboard \
94 --enable-ping-protocol \
95 --enable-xrm \
96 $(use_enable debug) \
97 $(use_enable session) \
98 $(use_enable expat) \
99 $(use_enable gnome gconf) \
100 $(use_enable startup-notification) \
101 $(use_enable xcomposite composite)
102 }