blob: 74b9fb7d68a4da70b68208a8105be20c19346a96 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/ecore/ecore-1.0.0.20040529_pre7.ebuild,v 1.2 2004/06/24 21:59:42 agriffis Exp $
inherit enlightenment
DESCRIPTION="core event abstraction layer and X abstraction layer (nice convenience library)"
HOMEPAGE="http://www.enlightenment.org/pages/ecore.html"
IUSE="${IUSE} opengl fbcon X"
DEPEND=">=x11-libs/evas-1.0.0.20040501_pre13
virtual/x11
opengl? ( virtual/opengl )"
src_compile() {
export MY_ECONF="
`use_enable X ecore-x` \
--enable-ecore-job \
`use_enable fbcon ecore-fb` \
--enable-ecore-evas \
`use_enable opengl ecore-evas-gl` \
`use_enable fbcon ecore-evas-fb` \
--enable-ecore-con \
--enable-ecore-ipc \
--enable-ecore-txt \
--enable-ecore-config
"
enlightenment_src_compile
}
|