blob: 5b66716ef8c9375481cfc3098c3971cecff915d3 (
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
|
# Copyright 1999-2003 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.5 2003/12/08 18:15:56 vapier Exp $
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_compile() {
# `use_enable avi avifile` \
econf \
`use_enable flash` \
--disable-avifile \
|| die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|