blob: e8cb480141f68c5a6a48b480f8988c8dfe074e7f (
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
|
# 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-2.0.10.ebuild,v 1.1 2003/07/14 20:48:57 mholzer Exp $
inherit eutils
MY_P=${P}
DESCRIPTION="Great Video editing/encoding tool. New, gtk2 version"
HOMEPAGE="http://fixounet.free.fr/avidemux/"
SRC_URI="http://fixounet.free.fr/avidemux/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/x11
>=media-sound/mad-0.14.2b*
>=media-libs/a52dec-0.7.4
>=media-sound/lame-3.93*
>=media-video/mjpegtools-1.6*
>=media-libs/xvid-0.9*
>=dev-libs/libxml2-2.5.7
>=x11-libs/gtk+-2.2.1
>=media-libs/divx4linux-20020418-r1"
#replace-flags -O[3-9] -O2
S=${WORKDIR}/${MY_P}
src_compile() {
cd ${S}
./configure --prefix=/usr || die
# econf || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog History README TODO
}
|