blob: 33a64e12d27b77c03bbee681c9b9a09444ca7ba7 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/nemesi/nemesi-0.5.3.ebuild,v 1.3 2006/03/07 16:46:40 flameeyes Exp $
DESCRIPTION="Tiny rtsp client"
HOMEPAGE="http://streaming.polito.it/"
SRC_URI="http://streaming.polito.it/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="gtk sdl"
DEPEND="gtk? ( >=x11-libs/gtk+-2.4 )
sdl? ( media-libs/libsdl )
media-video/ffmpeg
virtual/ghostscript"
export WANT_AUTOMAKE="1.6"
src_unpack(){
unpack ${A}
cd ${S}
#./autogen.sh
sed -i -e"s:-mcpu=i486::g" -e "s:-march=i386::g" configure
}
src_compile() {
econf `use_enable sdl` \
`use_enable gtk gui` \
--enable-optimize=none \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die
}
|