blob: 142438f4e085a2c75cfa0ae01440a5a0ed02eeb2 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/nemesi/nemesi-0.4.0.ebuild,v 1.4 2005/02/08 11:40:19 lu_zero 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="sys-libs/glibc
gtk? ( >=x11-libs/gtk+-2.4 )
sdl? ( media-libs/libsdl )
media-video/ffmpeg"
export WANT_AUTOMAKE="1.6"
src_unpack(){
unpack ${A}
cd ${S}
#./autogen.sh
sed -i -e"s:-mcpu=i486::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
}
|