Gentoo Archives: gentoo-commits

From: "Joerg Bornkessel (hd_brummy)" <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-osdpip: vdr-osdpip-0.1.2-r1.ebuild ChangeLog
Date: Sat, 28 Feb 2015 19:50:43
Message-Id: 20150228195038.1EAB712C17@oystercatcher.gentoo.org
1 hd_brummy 15/02/28 19:50:38
2
3 Modified: ChangeLog
4 Added: vdr-osdpip-0.1.2-r1.ebuild
5 Log:
6 compile fix libav10/11, wrt bug 540850, thx to T.Foerster for testing,reporting
7
8 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 34C2808A)
9
10 Revision Changes Path
11 1.25 media-plugins/vdr-osdpip/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-osdpip/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-osdpip/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-osdpip/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-plugins/vdr-osdpip/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 31 Aug 2014 11:22:53 -0000 1.24
24 +++ ChangeLog 28 Feb 2015 19:50:38 -0000 1.25
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-plugins/vdr-osdpip
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-osdpip/ChangeLog,v 1.24 2014/08/31 11:22:53 hd_brummy Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-osdpip/ChangeLog,v 1.25 2015/02/28 19:50:38 hd_brummy Exp $
31 +
32 +*vdr-osdpip-0.1.2-r1 (28 Feb 2015)
33 +
34 + 28 Feb 2015; Joerg Bornkessel <hd_brummy@g.o>
35 + +vdr-osdpip-0.1.2-r1.ebuild:
36 + compile fix libav10/11, wrt bug 540850, thx to T.Foerster for
37 + testing,reporting
38
39 31 Aug 2014; Joerg Bornkessel <hd_brummy@g.o>
40 -vdr-osdpip-0.1.1-r1.ebuild:
41
42
43
44 1.1 media-plugins/vdr-osdpip/vdr-osdpip-0.1.2-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-osdpip/vdr-osdpip-0.1.2-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-osdpip/vdr-osdpip-0.1.2-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: vdr-osdpip-0.1.2-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-osdpip/vdr-osdpip-0.1.2-r1.ebuild,v 1.1 2015/02/28 19:50:38 hd_brummy Exp $
54
55 EAPI=5
56
57 VERSION="961" # every bump, new version
58
59 inherit vdr-plugin-2 flag-o-matic
60
61 DESCRIPTION="VDR plugin: Show another channel in the OSD"
62 HOMEPAGE="http://projects.vdr-developer.org/projects/plg-osdpip"
63 SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
64
65 KEYWORDS="~amd64 ~x86"
66 SLOT="0"
67 LICENSE="GPL-2"
68 IUSE=""
69
70 DEPEND=">=media-video/vdr-1.7.27
71 >=media-libs/libmpeg2-0.5.1
72 >=virtual/ffmpeg-0.6.90"
73 RDEPEND="${DEPEND}"
74
75 src_prepare() {
76 vdr-plugin-2_src_prepare
77
78 # UINT64_C is needed by ffmpeg headers
79 append-cxxflags -D__STDC_CONSTANT_MACROS
80
81 epatch "${FILESDIR}/${PN}-0.1.1-ffmpeg-1.patch"
82 epatch "${FILESDIR}/${PN}-libav-9.patch"
83
84 # tested with libav10/11, ffmpeg-2.5.4
85 sed -e "s:CODEC_ID_MPEG2VIDEO:AV_CODEC_ID_MPEG2VIDEO:"\
86 -e "s:avcodec_alloc_frame:av_frame_alloc:"\
87 -i decoder.c
88 }