blob: 98f9dbe763d83357c0afe2297bc645139db2b566 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ryan Tolboom <ryan@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-0.4.5.ebuild,v 1.2 2002/05/27 17:27:39 drobbins Exp $
A=${P}.tar.gz
S=${WORKDIR}/ffmpeg
DESCRIPTION="Tool to manipulate and stream video files"
SRC_URI="mirror://sourceforge/ffmpeg/${A}"
DEPEND="virtual/glibc"
RDEPEND="virtual/glibc"
src_compile() {
local myconf
if [ -z "`use mmx`" ] ; then
myconf="--disable-mmx"
fi
try ./configure ${myconf}
try make
}
src_install() {
dobin ffmpeg ffserver
dodoc doc/*
}
|