blob: 075619e778ee849c028af5d742408ed7f56672d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/mx/mx-1.4.7.ebuild,v 1.6 2013/02/02 23:14:12 ago Exp $
EAPI="4"
inherit eutils
DESCRIPTION="A widget toolkit using Clutter"
HOMEPAGE="http://clutter-project.org/"
SRC_URI="mirror://github/clutter-project/${PN}/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="1.0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="dbus debug glade +gtk +introspection startup-notification"
RDEPEND="
>=dev-libs/glib-2.28.0:2
>=media-libs/clutter-1.7.91:1.0
>=x11-apps/xrandr-1.2.0
x11-libs/gdk-pixbuf:2[introspection?]
dbus? ( >=dev-libs/dbus-glib-0.82 )
glade? (
>=dev-util/glade-3.4.5:3
<dev-util/glade-3.9.1:3 )
gtk? ( >=x11-libs/gtk+-2.20:2[introspection?] )
introspection? ( >=dev-libs/gobject-introspection-0.6.4 )
startup-notification? ( >=x11-libs/startup-notification-0.9 )"
DEPEND="${RDEPEND}
app-arch/xz-utils
>=dev-util/gtk-doc-am-1.14
>=dev-util/intltool-0.35.0
sys-devel/gettext
virtual/pkgconfig
"
src_prepare() {
# Tests are interactive, no use for us
sed -e 's/^\(SUBDIRS .*\)tests\(.*\)/\1 \2/g' \
-i Makefile.am -i Makefile.in || die
# In 1.4.8
epatch "${FILESDIR}/${P}-gl-types.patch"
}
src_configure() {
econf \
--disable-maintainer-flags \
--disable-silent-rules \
--with-winsys=x11 \
$(use_enable gtk gtk-widgets) \
$(use_enable introspection) \
$(use_enable debug) \
$(use_with dbus) \
$(use_with glade) \
$(use_with startup-notification)
}
src_install() {
default
prune_libtool_files
}
|