blob: b8834a5aaecf84fb3edd82bca4a9ee07d3d4a723 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
inherit enlightenment
DESCRIPTION="Wrapper between Bullet Physics and EFL to add physics effects in a simple way"
IUSE="static-libs test-gui"
RDEPEND="
>=dev-libs/ecore-9999
>=dev-libs/eina-9999
>=media-libs/evas-9999
>=sci-physics/bullet-2.80
test-gui? ( >=media-libs/elementary-9999 )
"
DEPEND="${RDEPEND}"
src_configure() {
local MY_ECONF="$(use_enable test-gui build-tests)"
enlightenment_src_configure
}
|