blob: 86b81a96cb4b0c67fd24e69b3e9b350a88869695 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/freej/freej-0.7.ebuild,v 1.2 2005/07/28 10:33:41 dholm Exp $
inherit eutils
DESCRIPTION="A unified framework for realtime video processing"
HOMEPAGE="http://freej.dyne.org/"
SRC_URI="ftp://freej.dyne.org/freej/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="avi v4l debug"
DEPEND=">=media-libs/libsdl-1.2.0
>=media-libs/libpng-1.2.0
>=media-libs/freetype-2
!avi? ( media-video/ffmpeg )
avi? ( >=media-video/avifile-0.7.16 )"
src_unpack() {
unpack ${A}
cd ${S}
# fixes missing errno defines
epatch ${FILESDIR}/${P}-errno.patch
# fixes bad hacking with type casting
epatch ${FILESDIR}/${P}-fastmemcpy.patch
# fixes some v4l defines
epatch ${FILESDIR}/${P}-v4l.patch
}
src_compile() {
# patch the doc path
sed -i -e "s:doc/\${PACKAGE}-\${VERSION}:share/doc/${PF}:" Makefile.in || die "doc path patching failed!"
econf \
$(use_enable avi) \
$(use_enable v4l) \
$(use_enable debug) \
|| die "econf failed!"
# give us custom CFLAGS
sed -i \
-e "s:^CFLAGS = .*:CFLAGS = -D_REENTRANT ${CFLAGS}:" \
-e "s:^CXXFLAGS = .*:CXXFLAGS = -D_REENTRANT ${CXXFLAGS}:" ${S}/src/Makefile \
|| die "Could not patch custom CFLAGS!"
emake || die "emake failed"
}
src_install() {
einstall || die
dodoc FreeJ_Tutorial.pdf
}
|