blob: 35f6ec154ad2e983accc388d5adcc5d4b31fd2f3 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Dan Armak <danarmak@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/transcode-0.5.3.ebuild,v 1.2 2002/04/05 08:44:03 verwilst Exp $
S=${WORKDIR}/${P}
DESCRIPTION="video stream processing tool"
SRC_URI="http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/${P}.tgz"
HOMEPAGE="http://divx.euro.ru/"
# note: transcode can use pretty much any media-related package ever written as a plugin.
# an exhaustive dep list would make me add about 20-30 packages to portage. perhaps another time :-)
DEPEND="sys-devel/gcc
virtual/glibc
>=media-sound/lame-3.89
media-libs/libdv
media-libs/libmpeg3
>=media-video/avifile-0.6"
src_compile() {
cd ${S}
./configure --prefix=/usr || die
emake all || die
}
src_install () {
make DESTDIR=${D} install || die
}
|