blob: 7a7ba0d3ea53f4192b65d9e2c1631262fb4b6514 (
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
46
47
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ffmpeg2theora-0.22.ebuild,v 1.1 2008/10/23 21:14:06 hanno Exp $
inherit eutils
DESCRIPTION="A simple converter to create Ogg Theora files."
HOMEPAGE="http://www.v2v.cc/~j/ffmpeg2theora/index.html"
SRC_URI="http://www.v2v.cc/~j/ffmpeg2theora/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=media-video/ffmpeg-0.4.9_p20070616-r20
>=media-libs/libvorbis-1.1
>=media-libs/libogg-1.1
>=media-libs/libtheora-1.0_beta1"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/scons"
pkg_setup() {
local fail="Re-emerge media-libs/libtheora with USE encode."
if ! built_with_use media-libs/libtheora encode; then
eerror "${fail}"
die "${fail}"
fi
if ! built_with_use --missing true media-video/ffmpeg vhook; then
eerror "${PN} requires ffmpeg to be built with the vhook useflag."
die "Please reinstall media-video/ffmpeg with the vhook useflag enabled"
fi
}
src_compile() {
scons APPEND_CFLAGS="${CFLAGS}" APPEND_LINKFLAGS="${LDFLAGS}" || die "scons failed"
}
src_install() {
scons destdir="${D}" prefix=/usr install || die "install failed"
dodoc AUTHORS ChangeLog README TODO || die
# newdoc kino_export/README README.kino_export
# exeinto /usr/share/kino/scripts/exports
# doexe kino_export/ffmpeg2theora.sh
}
|