Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg2theora: ChangeLog ffmpeg2theora-0.22.ebuild
Date: Thu, 23 Oct 2008 21:14:08
Message-Id: E1Kt7VO-0003A9-Vm@stork.gentoo.org
1 hanno 08/10/23 21:14:06
2
3 Modified: ChangeLog
4 Added: ffmpeg2theora-0.22.ebuild
5 Log:
6 ffmpeg2theora bump
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-rc9-00179-g2447a26 x86_64)
8
9 Revision Changes Path
10 1.27 media-video/ffmpeg2theora/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg2theora/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg2theora/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg2theora/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 15 Oct 2008 17:43:35 -0000 1.26
23 +++ ChangeLog 23 Oct 2008 21:14:06 -0000 1.27
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-video/ffmpeg2theora
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ChangeLog,v 1.26 2008/10/15 17:43:35 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ChangeLog,v 1.27 2008/10/23 21:14:06 hanno Exp $
29 +
30 +*ffmpeg2theora-0.22 (22 Oct 2008)
31 +
32 + 22 Oct 2008; Hanno Boeck <hanno@g.o> +ffmpeg2theora-0.22.ebuild:
33 + Version bump.
34
35 15 Oct 2008; Alexis Ballier <aballier@g.o>
36 -ffmpeg2theora-0.18.ebuild, -ffmpeg2theora-0.19.ebuild,
37
38
39
40 1.1 media-video/ffmpeg2theora/ffmpeg2theora-0.22.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg2theora/ffmpeg2theora-0.22.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg2theora/ffmpeg2theora-0.22.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ffmpeg2theora-0.22.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg2theora/ffmpeg2theora-0.22.ebuild,v 1.1 2008/10/23 21:14:06 hanno Exp $
50
51 inherit eutils
52
53 DESCRIPTION="A simple converter to create Ogg Theora files."
54 HOMEPAGE="http://www.v2v.cc/~j/ffmpeg2theora/index.html"
55 SRC_URI="http://www.v2v.cc/~j/ffmpeg2theora/${P}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
60 IUSE=""
61
62 RDEPEND=">=media-video/ffmpeg-0.4.9_p20070616-r20
63 >=media-libs/libvorbis-1.1
64 >=media-libs/libogg-1.1
65 >=media-libs/libtheora-1.0_beta1"
66 DEPEND="${RDEPEND}
67 dev-util/pkgconfig
68 dev-util/scons"
69
70 pkg_setup() {
71 local fail="Re-emerge media-libs/libtheora with USE encode."
72
73 if ! built_with_use media-libs/libtheora encode; then
74 eerror "${fail}"
75 die "${fail}"
76 fi
77 if ! built_with_use --missing true media-video/ffmpeg vhook; then
78 eerror "${PN} requires ffmpeg to be built with the vhook useflag."
79 die "Please reinstall media-video/ffmpeg with the vhook useflag enabled"
80 fi
81 }
82
83 src_compile() {
84 scons APPEND_CFLAGS="${CFLAGS}" APPEND_LINKFLAGS="${LDFLAGS}" || die "scons failed"
85 }
86
87 src_install() {
88 scons destdir="${D}" prefix=/usr install || die "install failed"
89 dodoc AUTHORS ChangeLog README TODO || die
90 # newdoc kino_export/README README.kino_export
91 # exeinto /usr/share/kino/scripts/exports
92 # doexe kino_export/ffmpeg2theora.sh
93 }