blob: 3d9253abd5e20c49c14d9de09159d49318dc54f2 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/ecore/ecore-1.0.0.20031101_pre4.ebuild,v 1.1 2003/11/03 18:06:24 vapier Exp $
inherit enlightenment flag-o-matic
DESCRIPTION="core event abstraction layer and X abstraction layer (nice convenience library)"
HOMEPAGE="http://www.enlightenment.org/pages/ecore.html"
IUSE="${IUSE} opengl fbcon"
DEPEND="${DEPEND}
>=x11-libs/evas-1.0.0.20031013_pre12
virtual/x11
opengl? ( virtual/opengl )"
src_compile() {
use alpha && append-flags -fPIC
# X and fb have to be enabled otherwise it fails right now ;)
export MY_ECONF="
--enable-ecore-x \
--enable-ecore-job \
`use_enable fbcon enable-ecore-fb` \
--enable-ecore-evas \
`use_enable opengl ecore-evas-gl` \
--enable-ecore-con \
--enable-ecore-ipc \
--enable-ecore-txt
"
enlightenment_src_compile
}
|