Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/cinelerra: ChangeLog cinelerra-20120707.ebuild
Date: Sat, 07 Jul 2012 06:53:30
Message-Id: 20120707065317.106042004B@flycatcher.gentoo.org
1 ssuominen 12/07/07 06:53:17
2
3 Modified: ChangeLog
4 Added: cinelerra-20120707.ebuild
5 Log:
6 Latest from upstream cinelerra-cv git master.
7
8 (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.58 media-video/cinelerra/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/cinelerra/ChangeLog?rev=1.58&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/cinelerra/ChangeLog?rev=1.58&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/cinelerra/ChangeLog?r1=1.57&r2=1.58
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/cinelerra/ChangeLog,v
20 retrieving revision 1.57
21 retrieving revision 1.58
22 diff -u -r1.57 -r1.58
23 --- ChangeLog 6 Jul 2012 14:42:35 -0000 1.57
24 +++ ChangeLog 7 Jul 2012 06:53:16 -0000 1.58
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-video/cinelerra
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra/ChangeLog,v 1.57 2012/07/06 14:42:35 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra/ChangeLog,v 1.58 2012/07/07 06:53:16 ssuominen Exp $
30 +
31 +*cinelerra-20120707 (07 Jul 2012)
32 +
33 + 07 Jul 2012; Samuli Suominen <ssuominen@g.o>
34 + +cinelerra-20120707.ebuild:
35 + Latest from upstream cinelerra-cv git master.
36
37 06 Jul 2012; Alexis Ballier <aballier@g.o>
38 +files/cinelerra-ffmpeg-0.11.patch, cinelerra-20111223.ebuild:
39
40
41
42 1.1 media-video/cinelerra/cinelerra-20120707.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/cinelerra/cinelerra-20120707.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/cinelerra/cinelerra-20120707.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cinelerra-20120707.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra/cinelerra-20120707.ebuild,v 1.1 2012/07/07 06:53:16 ssuominen Exp $
52
53 EAPI=4
54 inherit autotools eutils multilib flag-o-matic
55
56 DESCRIPTION="The most advanced non-linear video editor and compositor"
57 HOMEPAGE="http://www.cinelerra.org/"
58 SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="3dnow alsa altivec css ieee1394 mmx opengl oss"
64
65 RDEPEND="media-libs/a52dec
66 media-libs/faac
67 media-libs/faad2
68 >=media-libs/freetype-2
69 media-libs/libdv
70 >=media-libs/libogg-1.2
71 media-libs/libpng:0
72 media-libs/libsndfile
73 >=media-libs/libtheora-1.1
74 >=media-libs/libvorbis-1.3
75 >=media-libs/openexr-1.5
76 media-libs/tiff:0
77 media-libs/x264
78 media-sound/lame
79 >=media-video/mjpegtools-2
80 >=sci-libs/fftw-3
81 x11-libs/libX11
82 x11-libs/libXext
83 x11-libs/libXft
84 x11-libs/libXv
85 x11-libs/libXvMC
86 x11-libs/libXxf86vm
87 virtual/ffmpeg
88 virtual/jpeg
89 alsa? ( media-libs/alsa-lib )
90 ieee1394? (
91 media-libs/libiec61883
92 >=sys-libs/libraw1394-1.2.0
93 >=sys-libs/libavc1394-0.5.0
94 )
95 opengl? ( virtual/opengl )"
96 DEPEND="${RDEPEND}
97 app-arch/xz-utils
98 virtual/pkgconfig
99 mmx? ( dev-lang/nasm )"
100
101 src_prepare() {
102 epatch \
103 "${FILESDIR}"/${PN}-entry.patch \
104 "${FILESDIR}"/${PN}-ffmpeg.patch \
105 "${FILESDIR}"/${PN}-underlinking.patch \
106 "${FILESDIR}"/${PN}-ffmpeg-0.11.patch
107
108 eautoreconf
109 }
110
111 src_configure() {
112 append-flags -D__STDC_CONSTANT_MACROS #321945
113 append-ldflags -Wl,-z,noexecstack #212959
114
115 econf \
116 $(use_enable oss) \
117 $(use_enable alsa) \
118 --disable-esd \
119 $(use_enable ieee1394 firewire) \
120 $(use_enable css) \
121 $(use_enable mmx) \
122 $(use_enable 3dnow) \
123 $(use_enable altivec) \
124 $(use_enable opengl) \
125 --with-plugindir=/usr/$(get_libdir)/${PN} \
126 --with-buildinfo=cust/"Gentoo - ${PV}" \
127 --with-external-ffmpeg
128 }
129
130 src_install() {
131 emake DESTDIR="${D}" install
132 dohtml -a png,html,texi,sdw -r doc/*
133
134 rm -rf "${D}"/usr/include
135 mv -vf "${D}"/usr/bin/mpeg3cat{,.hv} || die
136 mv -vf "${D}"/usr/bin/mpeg3dump{,.hv} || die
137 mv -vf "${D}"/usr/bin/mpeg3toc{,.hv} || die
138 dosym /usr/bin/mpeg2enc /usr/$(get_libdir)/${PN}/mpeg2enc.plugin
139
140 prune_libtool_files --all
141 }