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/ffmpeg: ffmpeg-9999-r1.ebuild
Date: Thu, 09 Jul 2009 14:01:15
Message-Id: E1MOuBV-0004d3-KV@stork.gentoo.org
1 ssuominen 09/07/09 14:01:13
2
3 Modified: ffmpeg-9999-r1.ebuild
4 Log:
5 Commit last change differently to avoid adding function inside the ebuild function, it's shorter anyway like this
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.11 media-video/ffmpeg/ffmpeg-9999-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999-r1.ebuild?rev=1.11&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999-r1.ebuild?rev=1.11&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999-r1.ebuild?r1=1.10&r2=1.11
14
15 Index: ffmpeg-9999-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999-r1.ebuild,v
18 retrieving revision 1.10
19 retrieving revision 1.11
20 diff -u -r1.10 -r1.11
21 --- ffmpeg-9999-r1.ebuild 9 Jul 2009 13:43:14 -0000 1.10
22 +++ ffmpeg-9999-r1.ebuild 9 Jul 2009 14:01:13 -0000 1.11
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999-r1.ebuild,v 1.10 2009/07/09 13:43:14 ssuominen Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999-r1.ebuild,v 1.11 2009/07/09 14:01:13 ssuominen Exp $
28
29 EAPI=2
30
31 @@ -124,14 +124,10 @@
32 { use faac ; } && myconf="${myconf} --enable-nonfree"
33 fi
34
35 - disable-vdpau-support() {
36 - for i in h264_vdpau mpeg1_vdpau mpeg_vdpau vc1_vdpau wmv3_vdpau; do
37 - myconf="${myconf} --disable-decoder=$i"
38 - done
39 - }
40 -
41 - use video_cards_nvidia || disable-vdpau-support
42 - use vdpau || disable-vdpau-support
43 + for i in h264_vdpau mpeg1_vdpau mpeg_vdpau vc1_vdpau wmv3_vdpau; do
44 + use video_cards_nvidia || myconf="${myconf} --disable-decoder=$i"
45 + use vdpau || myconf="${myconf} --disable-decoder=$i"
46 + done
47
48 # CPU features
49 for i in mmx ssse3 altivec ; do