blob: c7b56d133f9ca7794bc2c2cb60b431b1d9ac7a8f (
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
33
34
35
36
37
38
39
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/DirectFB-extra/DirectFB-extra-0.9.16.ebuild,v 1.8 2004/03/14 12:28:57 mr_bones_ Exp $
inherit eutils
DESCRIPTION="Extra image/video/font providers and graphics/input drivers for DirectFB"
HOMEPAGE="http://www.directfb.org/"
SRC_URI="http://directfb.org/download/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc -sparc"
IUSE="quicktime flash imlib avi"
DEPEND=">=dev-libs/DirectFB-${PV}*
quicktime? ( media-libs/openquicktime )
flash? ( media-libs/libflash )
imlib? ( media-libs/imlib2 )"
# avi? ( media-video/avifile )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-newdirectfb.patch
}
src_compile() {
# `use_enable avi avifile` \
econf \
`use_enable flash` \
--disable-avifile \
|| die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|