blob: bc223065e7d30530ecb6ee1318f5c7c3cf28c554 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/emotion/emotion-9999.ebuild,v 1.5 2006/01/24 00:47:08 vapier Exp $
inherit enlightenment
DESCRIPTION="video libraries for e17"
IUSE="gstreamer xine"
DEPEND=">=dev-libs/eet-0.9.9
>=x11-libs/evas-0.9.9
>=media-libs/edje-0.5.0
>=x11-libs/ecore-0.9.9
>=dev-libs/embryo-0.9.1
xine? ( >=media-libs/xine-lib-1.1.1 )
!gstreamer? ( !xine? ( >=media-libs/xine-lib-1.1.1 ) )
gstreamer? ( =media-libs/gstreamer-0.8* )"
src_compile() {
if ! use xine && ! use gstreamer ; then
export MY_ECONF="--enable-xine --disable-gstreamer"
else
export MY_ECONF="
$(use_enable xine) \
$(use_enable gstreamer) \
"
fi
enlightenment_src_compile
}
|