Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/transcode/
Date: Mon, 02 May 2016 10:25:30
Message-Id: 1462184710.d8f517da0dca51d69541aca327ca783f6263d51c.polynomial-c@gentoo
1 commit: d8f517da0dca51d69541aca327ca783f6263d51c
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 08:43:57 2016 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 10:25:10 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f517da
7
8 media-video/transcode: Removed old.
9
10 Package-Manager: portage-2.2.28
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 media-video/transcode/transcode-1.1.7-r1.ebuild | 117 -----------------------
14 media-video/transcode/transcode-1.1.7-r2.ebuild | 118 ------------------------
15 2 files changed, 235 deletions(-)
16
17 diff --git a/media-video/transcode/transcode-1.1.7-r1.ebuild b/media-video/transcode/transcode-1.1.7-r1.ebuild
18 deleted file mode 100644
19 index ba60e46..0000000
20 --- a/media-video/transcode/transcode-1.1.7-r1.ebuild
21 +++ /dev/null
22 @@ -1,117 +0,0 @@
23 -# Copyright 1999-2015 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -# $Id$
26 -
27 -EAPI=4
28 -inherit eutils libtool multilib
29 -
30 -DESCRIPTION="A suite of utilities for transcoding video and audio codecs in different containers"
31 -HOMEPAGE="http://www.transcoding.org/ https://bitbucket.org/france/transcode-tcforge"
32 -SRC_URI="https://www.bitbucket.org/france/${PN}-tcforge/downloads/${P}.tar.bz2"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
37 -IUSE="cpu_flags_x86_3dnow a52 aac alsa altivec dv dvd +iconv imagemagick jpeg lzo mjpeg cpu_flags_x86_mmx mp3 mpeg nuv ogg oss pic postproc quicktime sdl cpu_flags_x86_sse cpu_flags_x86_sse2 theora truetype v4l vorbis X x264 xml xvid"
38 -
39 -RDEPEND="
40 - >=virtual/ffmpeg-0.10
41 - a52? ( media-libs/a52dec )
42 - aac? ( media-libs/faac )
43 - alsa? ( media-libs/alsa-lib )
44 - dv? ( media-libs/libdv )
45 - dvd? ( media-libs/libdvdread )
46 - iconv? ( virtual/libiconv )
47 - imagemagick? ( media-gfx/imagemagick )
48 - jpeg? ( virtual/jpeg )
49 - lzo? ( >=dev-libs/lzo-2 )
50 - mjpeg? ( media-video/mjpegtools )
51 - mp3? ( media-sound/lame )
52 - mpeg? ( media-libs/libmpeg2 )
53 - ogg? ( media-libs/libogg )
54 - postproc? ( >=virtual/ffmpeg-0.10 )
55 - quicktime? ( >=media-libs/libquicktime-1 )
56 - sdl? ( >=media-libs/libsdl-1.2.5[X?] )
57 - theora? ( media-libs/libtheora )
58 - truetype? ( >=media-libs/freetype-2 )
59 - v4l? ( media-libs/libv4l )
60 - vorbis? ( media-libs/libvorbis )
61 - X? ( x11-libs/libXpm x11-libs/libXaw x11-libs/libXv )
62 - x264? ( media-libs/x264 )
63 - xml? ( dev-libs/libxml2 )
64 - xvid? ( media-libs/xvid )
65 - "
66 -
67 -DEPEND="
68 - ${RDEPEND}
69 - virtual/pkgconfig
70 - v4l? ( >=sys-kernel/linux-headers-2.6.11 )
71 - "
72 -
73 -REQUIRED_USE="
74 - cpu_flags_x86_sse? ( cpu_flags_x86_mmx )
75 - cpu_flags_x86_sse2? ( cpu_flags_x86_mmx cpu_flags_x86_sse )
76 - cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx )
77 - nuv? ( lzo )
78 - "
79 -
80 -src_prepare() {
81 - epatch \
82 - "${FILESDIR}"/${P}-ffmpeg.patch \
83 - "${FILESDIR}"/${P}-ffmpeg-0.10.patch \
84 - "${FILESDIR}"/${P}-ffmpeg-0.11.patch \
85 - "${FILESDIR}"/${P}-preset-free.patch
86 -
87 - elibtoolize
88 -}
89 -
90 -src_configure() {
91 - local myconf
92 - use x86 && myconf="$(use_enable !pic x86-textrels)" #271476
93 -
94 - econf \
95 - $(use_enable cpu_flags_x86_mmx mmx) \
96 - $(use_enable cpu_flags_x86_3dnow 3dnow) \
97 - $(use_enable cpu_flags_x86_sse sse) \
98 - $(use_enable cpu_flags_x86_sse2 sse2) \
99 - $(use_enable altivec) \
100 - $(use_enable v4l libv4l2) \
101 - $(use_enable v4l libv4lconvert) \
102 - $(use_enable mpeg libmpeg2) \
103 - $(use_enable mpeg libmpeg2convert) \
104 - --enable-experimental \
105 - --enable-deprecated \
106 - $(use_enable v4l) \
107 - $(use_enable oss) \
108 - $(use_enable alsa) \
109 - $(use_enable postproc libpostproc) \
110 - $(use_enable truetype freetype2) \
111 - $(use_enable mp3 lame) \
112 - $(use_enable xvid) \
113 - $(use_enable x264) \
114 - $(use_enable ogg) \
115 - $(use_enable vorbis) \
116 - $(use_enable theora) \
117 - $(use_enable dvd libdvdread) \
118 - $(use_enable dv libdv) \
119 - $(use_enable quicktime libquicktime) \
120 - $(use_enable lzo) \
121 - $(use_enable a52) \
122 - $(use_enable aac faac) \
123 - $(use_enable xml libxml2) \
124 - $(use_enable mjpeg mjpegtools) \
125 - $(use_enable sdl) \
126 - $(use_enable imagemagick) \
127 - $(use_enable jpeg libjpeg) \
128 - $(use_enable iconv) \
129 - $(use_enable nuv) \
130 - $(use_with X x) \
131 - --with-mod-path=/usr/$(get_libdir)/transcode \
132 - ${myconf}
133 -}
134 -
135 -src_install() {
136 - emake DESTDIR="${D}" docsdir=/usr/share/doc/${PF} install
137 - dodoc AUTHORS ChangeLog README STYLE TODO
138 - find "${ED}"usr -name '*.la' -exec rm -f {} +
139 -}
140
141 diff --git a/media-video/transcode/transcode-1.1.7-r2.ebuild b/media-video/transcode/transcode-1.1.7-r2.ebuild
142 deleted file mode 100644
143 index 84cf4d7..0000000
144 --- a/media-video/transcode/transcode-1.1.7-r2.ebuild
145 +++ /dev/null
146 @@ -1,118 +0,0 @@
147 -# Copyright 1999-2015 Gentoo Foundation
148 -# Distributed under the terms of the GNU General Public License v2
149 -# $Id$
150 -
151 -EAPI=5
152 -inherit eutils libtool multilib
153 -
154 -DESCRIPTION="A suite of utilities for transcoding video and audio codecs in different containers"
155 -HOMEPAGE="http://www.transcoding.org/ https://bitbucket.org/france/transcode-tcforge"
156 -SRC_URI="https://www.bitbucket.org/france/${PN}-tcforge/downloads/${P}.tar.bz2"
157 -
158 -LICENSE="GPL-2"
159 -SLOT="0"
160 -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
161 -IUSE="cpu_flags_x86_3dnow a52 aac alsa altivec dv dvd +iconv imagemagick jpeg lzo mjpeg cpu_flags_x86_mmx mp3 mpeg nuv ogg oss pic postproc quicktime sdl cpu_flags_x86_sse cpu_flags_x86_sse2 theora truetype v4l vorbis X x264 xml xvid"
162 -
163 -RDEPEND="
164 - >=virtual/ffmpeg-0.10
165 - a52? ( media-libs/a52dec )
166 - aac? ( media-libs/faac )
167 - alsa? ( media-libs/alsa-lib )
168 - dv? ( media-libs/libdv )
169 - dvd? ( media-libs/libdvdread )
170 - iconv? ( virtual/libiconv )
171 - imagemagick? ( media-gfx/imagemagick )
172 - jpeg? ( virtual/jpeg )
173 - lzo? ( >=dev-libs/lzo-2 )
174 - mjpeg? ( media-video/mjpegtools )
175 - mp3? ( media-sound/lame )
176 - mpeg? ( media-libs/libmpeg2 )
177 - ogg? ( media-libs/libogg )
178 - postproc? ( >=virtual/ffmpeg-0.10 )
179 - quicktime? ( >=media-libs/libquicktime-1 )
180 - sdl? ( >=media-libs/libsdl-1.2.5[X?] )
181 - theora? ( media-libs/libtheora )
182 - truetype? ( >=media-libs/freetype-2 )
183 - v4l? ( media-libs/libv4l )
184 - vorbis? ( media-libs/libvorbis )
185 - X? ( x11-libs/libXpm x11-libs/libXaw x11-libs/libXv )
186 - x264? ( media-libs/x264 )
187 - xml? ( dev-libs/libxml2 )
188 - xvid? ( media-libs/xvid )
189 - "
190 -
191 -DEPEND="
192 - ${RDEPEND}
193 - virtual/pkgconfig
194 - v4l? ( >=sys-kernel/linux-headers-2.6.11 )
195 - "
196 -
197 -REQUIRED_USE="
198 - cpu_flags_x86_sse? ( cpu_flags_x86_mmx )
199 - cpu_flags_x86_sse2? ( cpu_flags_x86_mmx cpu_flags_x86_sse )
200 - cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx )
201 - nuv? ( lzo )
202 - "
203 -
204 -src_prepare() {
205 - epatch \
206 - "${FILESDIR}"/${P}-ffmpeg.patch \
207 - "${FILESDIR}"/${P}-ffmpeg-0.10.patch \
208 - "${FILESDIR}"/${P}-ffmpeg-0.11.patch \
209 - "${FILESDIR}"/${P}-preset-free.patch \
210 - "${FILESDIR}"/${P}-libav-9.patch
211 -
212 - elibtoolize
213 -}
214 -
215 -src_configure() {
216 - local myconf
217 - use x86 && myconf="$(use_enable !pic x86-textrels)" #271476
218 -
219 - econf \
220 - $(use_enable cpu_flags_x86_mmx mmx) \
221 - $(use_enable cpu_flags_x86_3dnow 3dnow) \
222 - $(use_enable cpu_flags_x86_sse sse) \
223 - $(use_enable cpu_flags_x86_sse2 sse2) \
224 - $(use_enable altivec) \
225 - $(use_enable v4l libv4l2) \
226 - $(use_enable v4l libv4lconvert) \
227 - $(use_enable mpeg libmpeg2) \
228 - $(use_enable mpeg libmpeg2convert) \
229 - --enable-experimental \
230 - --enable-deprecated \
231 - $(use_enable v4l) \
232 - $(use_enable oss) \
233 - $(use_enable alsa) \
234 - $(use_enable postproc libpostproc) \
235 - $(use_enable truetype freetype2) \
236 - $(use_enable mp3 lame) \
237 - $(use_enable xvid) \
238 - $(use_enable x264) \
239 - $(use_enable ogg) \
240 - $(use_enable vorbis) \
241 - $(use_enable theora) \
242 - $(use_enable dvd libdvdread) \
243 - $(use_enable dv libdv) \
244 - $(use_enable quicktime libquicktime) \
245 - $(use_enable lzo) \
246 - $(use_enable a52) \
247 - $(use_enable aac faac) \
248 - $(use_enable xml libxml2) \
249 - $(use_enable mjpeg mjpegtools) \
250 - $(use_enable sdl) \
251 - $(use_enable imagemagick) \
252 - $(use_enable jpeg libjpeg) \
253 - $(use_enable iconv) \
254 - $(use_enable nuv) \
255 - $(use_with X x) \
256 - --with-mod-path=/usr/$(get_libdir)/transcode \
257 - ${myconf}
258 -}
259 -
260 -src_install() {
261 - emake DESTDIR="${D}" docsdir=/usr/share/doc/${PF} install
262 - dodoc AUTHORS ChangeLog README STYLE TODO
263 - find "${ED}"usr -name '*.la' -exec rm -f {} +
264 -}