blob: 7c511308ac855861019dbc6bb9d2400684c85a40 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit enlightenment_svn
DESCRIPTION="The Enlightenment ewl library."
HOMEPAGE="http://enlightenment.org"
KEYWORDS="~arm ~x86 ~amd64"
IUSE="X xcb sdl fbcon opengl"
RDEPEND="=media-libs/emotion-${PV}
=media-libs/epsilon-${PV}
X? ( x11-libs/libXrender )
xcb? ( x11-misc/xcb )
sdl? ( media-libs/libsdl )
opengl? ( virtual/opengl )"
DEPEND=">=dev-util/pkgconfig-0.9.0"
E17_EXTRA_CONF="$(use_enable X software-x11) \
$(use_enable X software-16-x11) \
$(use_enable xcb software-xcb) \
$(use_enable sdl software-sdl) \
$(use_enable fbcon fb) \
$(use_enable opengl opengl-glew) \
$(use_enable opengl opengl-x11) \
$(use_enable X xrender-x11) \
--enable-software-buffer \
--x-includes=${SYSROOT}/usr/X11R6/include \
--x-libraries=${SYSROOT}/usr/X11R6/lib"
|