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-libs/mx: mx-1.4.7-r1.ebuild ChangeLog
Date: Sat, 08 Feb 2014 20:48:20
Message-Id: 20140208204817.0A3622004C@flycatcher.gentoo.org
1 pacho 14/02/08 20:48:16
2
3 Modified: ChangeLog
4 Added: mx-1.4.7-r1.ebuild
5 Log:
6 Needs cogl, bump to eapi5
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.16 x11-libs/mx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/mx/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/mx/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/mx/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/mx/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 8 Dec 2013 19:47:28 -0000 1.15
24 +++ ChangeLog 8 Feb 2014 20:48:16 -0000 1.16
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/mx
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/mx/ChangeLog,v 1.15 2013/12/08 19:47:28 pacho Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/mx/ChangeLog,v 1.16 2014/02/08 20:48:16 pacho Exp $
31 +
32 +*mx-1.4.7-r1 (08 Feb 2014)
33 +
34 + 08 Feb 2014; Pacho Ramos <pacho@g.o> +mx-1.4.7-r1.ebuild:
35 + Needs cogl, bump to eapi5
36
37 08 Dec 2013; Pacho Ramos <pacho@g.o> mx-1.4.7.ebuild:
38 x86 stable, bug #478252
39
40
41
42 1.1 x11-libs/mx/mx-1.4.7-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/mx/mx-1.4.7-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/mx/mx-1.4.7-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mx-1.4.7-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/mx/mx-1.4.7-r1.ebuild,v 1.1 2014/02/08 20:48:16 pacho Exp $
52
53 EAPI=5
54 inherit gnome2 eutils
55
56 DESCRIPTION="A widget toolkit using Clutter"
57 HOMEPAGE="http://clutter-project.org/"
58 SRC_URI="mirror://github/clutter-project/${PN}/${P}.tar.xz"
59
60 LICENSE="LGPL-2.1"
61 SLOT="1.0"
62 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="dbus debug glade +gtk +introspection startup-notification"
64
65 RDEPEND="
66 >=dev-libs/glib-2.28.0:2
67 >=media-libs/clutter-1.7.91:1.0
68 media-libs/cogl:=
69 >=x11-apps/xrandr-1.2.0
70
71 x11-libs/gdk-pixbuf:2[introspection?]
72
73 dbus? ( >=dev-libs/dbus-glib-0.82 )
74 glade? (
75 >=dev-util/glade-3.4.5:3
76 <dev-util/glade-3.9.1:3 )
77 gtk? ( >=x11-libs/gtk+-2.20:2[introspection?] )
78 introspection? ( >=dev-libs/gobject-introspection-0.6.4 )
79 startup-notification? ( >=x11-libs/startup-notification-0.9 )
80 "
81 DEPEND="${RDEPEND}
82 app-arch/xz-utils
83 >=dev-util/gtk-doc-am-1.14
84 >=dev-util/intltool-0.35.0
85 sys-devel/gettext
86 virtual/pkgconfig
87 "
88
89 src_prepare() {
90 # Tests are interactive, no use for us
91 sed -e 's/^\(SUBDIRS .*\)tests\(.*\)/\1 \2/g' \
92 -i Makefile.am -i Makefile.in || die
93 # In 1.4.8
94 epatch "${FILESDIR}/${P}-gl-types.patch"
95
96 gnome2_src_prepare
97 }
98
99 src_configure() {
100 gnome2_src_configure \
101 --with-winsys=x11 \
102 $(use_enable gtk gtk-widgets) \
103 $(use_enable introspection) \
104 $(use_enable debug) \
105 $(use_with dbus) \
106 $(use_with glade) \
107 $(use_with startup-notification)
108 }