blob: be7fc8506a900f5756e39c836d526bf1fd317050 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/SDLcam/SDLcam-0.7.3-r1.ebuild,v 1.6 2004/11/06 00:18:54 vapier Exp $
inherit eutils
DESCRIPTION="Webcam application that uses the SDL library"
HOMEPAGE="http://sdlcam.raphnet.net/"
SRC_URI="http://sdlcam.raphnet.net/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="dev-libs/libxml2
media-libs/libfame
media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-ttf"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-gcc3.patch
epatch ${FILESDIR}/${PV}-no-divx.patch
rm capture/divx.c # the divx.so needs to be ported to newer avifile
epatch ${FILESDIR}/${PV}-linux-2.6.patch
sed -i "s: -g: ${CFLAGS} `avifile-config --cflags`:" Makefile
sed -i "/#include/s:avifile/::" capture/divx2.cpp
# Don't you love hardcoded vars?
sed -i \
-e 's:/usr/local/share/SDLcam/:/usr/share/SDLcam/:' \
-e 's:/usr/local/lib/SDLcam:/usr/lib/SDLcam:' \
-e 's:sources/:/usr/lib/SDLcam/sources/:' \
configuration.h interface.cpp SDL_v4l_filters.c main.cpp
}
src_compile() {
emake || die
}
src_install() {
dobin SDLcam || die
insinto /usr/share/SDLcam
doins LucidaSansRegular.ttf LucidaTypewriterRegular.ttf SDLcam.xml SDLcam.cfg || die
insinto /usr/lib/SDLcam/filters
doins filter/*.so || die
insinto /usr/lib/SDLcam/capture
doins capture/*.so || die
insinto /usr/lib/SDLcam/sources
doins sources/*.so || die
}
|