blob: 9605ecb014c217704e50229f3d93eeb96fcf8851 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-0.9_pre26.ebuild,v 1.4 2003/02/13 13:23:19 vapier Exp $
inherit eutils
MY_P="${P/_/}"
DESCRIPTION="Great Video editing/encoding tool"
HOMEPAGE="http://fixounet.free.fr/avidemux/"
SRC_URI="http://fixounet.free.fr/avidemux/${MY_P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
S="${WORKDIR}/${MY_P}"
DEPEND="virtual/x11
>=media-sound/mad-0.14.2b-r1
>=media-sound/lame-3.92
<=media-sound/esound-0.2.29
>=media-libs/libmpeg3-1.5-r1
>=media-libs/a52dec-0.7.4
>=media-libs/divx4linux-20020418
>=media-libs/freetype-2.1.2
>=x11-libs/gtk+-1.2.10-r8
>=media-video/mjpegtools-1.6.0-r3"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/ADM_vidFont.cpp.diff.gz
}
src_compile() {
econf --disable-warnings
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog History README TODO
}
|