blob: b536285fd6798282332f9eed492c7ad3ba93d37a (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/motiontrack/motiontrack-0.1.0.ebuild,v 1.1.1.1 2005/11/30 09:57:57 chriswhite Exp $
DESCRIPTION="A set of tools that detect motion between two images"
SRC_URI="http://gemia.de/motion/${P}.tar.gz"
HOMEPAGE="http://motiontrack.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~ppc64 ~sparc ~mips ~alpha ~hppa ~amd64"
IUSE="gd imagemagick debug"
DEPEND="virtual/libc
debug? (
gd? (
imagemagick? ( >=media-gfx/imagemagick-5.5.7 )
!imagemagick? ( media-libs/gd )
)
!gd? ( >=media-gfx/imagemagick-5.5.7 )
)
!debug? (
imagemagick? (
gd? ( media-libs/gd )
!gd? ( >=media-gfx/imagemagick-5.5.7 )
)
!imagemagick? ( media-libs/gd )
)"
src_compile() {
local myconf
if use gd; then
if use imagemagick; then
einfo "motiontrack can only use one of gd or imagemagick, not both."
einfo "default is gd when debug is unset, imagemagick otherwise."
einfo "please unset one of these use flags if you have other intentions."
fi
fi
if use debug; then
#default to imagemagick for providing better features
#for debugging
myconf="--enable-debug"
if use gd; then
if use imagemagick; then
myconf="${myconf} --enable-magick --disable-gd";
else
myconf="${myconf} --disable-magick --enable-gd";
fi
else
myconf="${myconf} --enable-magick --disable-gd";
fi
else
#default to gd for being faster
myconf="--disable-debug"
if use imagemagick; then
if use gd; then
myconf="${myconf} --disable-magick --enable-gd";
else
myconf="${myconf} --enable-magick --disable-gd";
fi
else
myconf="${myconf} --disable-magick --enable-gd";
fi
fi
econf $myconf || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc README src/TheCode.txt
}
|