Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/vlc: ChangeLog vlc-0.8.6c.ebuild
Date: Mon, 22 Oct 2007 19:16:36
Message-Id: E1Ik2lK-0005az-Hf@stork.gentoo.org
1 aballier 07/10/22 19:16:30
2
3 Modified: ChangeLog vlc-0.8.6c.ebuild
4 Log:
5 backport patch from trunk for 0.8.6c to have a much cleaner directfb detection, closes bug #196144
6 (Portage version: 2.1.3.15)
7
8 Revision Changes Path
9 1.270 media-video/vlc/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/ChangeLog?rev=1.270&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/ChangeLog?rev=1.270&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/ChangeLog?r1=1.269&r2=1.270
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v
18 retrieving revision 1.269
19 retrieving revision 1.270
20 diff -u -r1.269 -r1.270
21 --- ChangeLog 22 Oct 2007 17:02:24 -0000 1.269
22 +++ ChangeLog 22 Oct 2007 19:16:29 -0000 1.270
23 @@ -1,6 +1,10 @@
24 # ChangeLog for media-video/vlc
25 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.269 2007/10/22 17:02:24 aballier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.270 2007/10/22 19:16:29 aballier Exp $
28 +
29 + 22 Oct 2007; Alexis Ballier <aballier@g.o> vlc-0.8.6c.ebuild:
30 + backport patch from trunk for 0.8.6c to have a much cleaner directfb
31 + detection, closes bug #196144
32
33 *vlc-0.9.0_alpha20071022 (22 Oct 2007)
34
35
36
37
38 1.12 media-video/vlc/vlc-0.8.6c.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/vlc-0.8.6c.ebuild?rev=1.12&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/vlc-0.8.6c.ebuild?rev=1.12&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/vlc-0.8.6c.ebuild?r1=1.11&r2=1.12
43
44 Index: vlc-0.8.6c.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-0.8.6c.ebuild,v
47 retrieving revision 1.11
48 retrieving revision 1.12
49 diff -u -r1.11 -r1.12
50 --- vlc-0.8.6c.ebuild 13 Oct 2007 00:12:21 -0000 1.11
51 +++ vlc-0.8.6c.ebuild 22 Oct 2007 19:16:29 -0000 1.12
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2007 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-0.8.6c.ebuild,v 1.11 2007/10/13 00:12:21 dirtyepic Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-0.8.6c.ebuild,v 1.12 2007/10/22 19:16:29 aballier Exp $
57
58 WANT_AUTOMAKE=latest
59 WANT_AUTOCONF=latest
60 @@ -11,7 +11,7 @@
61 MY_PV="${MY_PV/-beta/-test}"
62 MY_P="${PN}-${MY_PV}"
63
64 -PATCHLEVEL="41"
65 +PATCHLEVEL="44"
66 DESCRIPTION="VLC media player - Video player and streamer"
67 HOMEPAGE="http://www.videolan.org/vlc/"
68
69 @@ -149,11 +149,6 @@
70 has_version '>=dev-libs/libcdio-0.78' || \
71 export EPATCH_EXCLUDE="230_all_libcdio-0.78.2.patch"
72
73 - # Drop patches that have been merged
74 - EPATCH_EXCLUDE="${EPATCH_EXCLUDE} 260_all_format-string-sa23592.patch
75 - 270_all_libtar-automagic.patch 280_all_sdl-image-automagic.patch
76 - 300_all_fullscreen_amd64.patch 240_all_flac-1.1.3.patch"
77 -
78 EPATCH_SUFFIX="patch" epatch "${WORKDIR}/patches"
79 AT_M4DIR="m4" eautoreconf
80 }
81 @@ -166,13 +161,6 @@
82 myconf="${myconf} --enable-vlm --enable-sout" || \
83 myconf="${myconf} --disable-vlm"
84
85 - if use directfb; then
86 - myconf="${myconf} --enable-directfb --with-directfb=/usr"
87 - append-flags "-I /usr/include/directfb"
88 - else
89 - myconf="${myconf} --disable-directfb"
90 - fi
91 -
92 if use nsplugin; then
93 if use seamonkey; then
94 XPIDL=/usr/lib/seamonkey
95 @@ -263,6 +251,7 @@
96 $(use_enable musepack mpc) \
97 $(use_enable x264) \
98 $(use_enable dc1394) \
99 + $(use_enable directfb) \
100 --enable-ffmpeg \
101 --disable-faad \
102 --disable-dv \
103
104
105
106 --
107 gentoo-commits@g.o mailing list