forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-plugins/vdr-vcd: compilefix gcc-6; thx to P.Levine on wrt bug 5…
…94274 Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
compile fix gcc-6 | ||
https://bugs.gentoo.org/show_bug.cgi?id=594274 | ||
provided by P.Levine | ||
Signed-of-by: Joerg Bornkessel <[email protected]> (2016/Oct/16) | ||
--- vcd-0.9/functions.h.old 2016-09-23 23:59:29.151668778 -0400 | ||
+++ vcd-0.9/functions.h 2016-09-23 23:59:33.842225407 -0400 | ||
@@ -167,7 +167,7 @@ | ||
__u16 playing_time; | ||
__u8 play_item_wait_time; | ||
__u8 auto_pause_wait_time; | ||
- __u16 play_item[]; | ||
+ __u16 play_item[1]; | ||
} play; | ||
struct { | ||
__u8 header; | ||
@@ -183,7 +183,7 @@ | ||
__u8 timeout_wait_time; | ||
__u8 loop_count; | ||
__u16 play_item; | ||
- __u16 selection_offset[]; | ||
+ __u16 selection_offset[1]; | ||
} selection; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit vdr-plugin-2 | ||
|
||
DESCRIPTION="VDR plugin: play video cds" | ||
|
||
HOMEPAGE="http://www.heiligenmann.de/" | ||
SRC_URI=" http://www.heiligenmann.de/vdr/download/${P}.tgz" | ||
|
||
SLOT="0" | ||
LICENSE="GPL-2" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
DEPEND=">=media-video/vdr-1.5.9" | ||
RDEPEND="${DEPEND}" | ||
|
||
PATCHES=( "${FILESDIR}/${P}_xgettext.diff" | ||
"${FILESDIR}/${P}_vdr-1.7.2.diff" | ||
"${FILESDIR}/${P}_devicetrickspeed.patch" | ||
"${FILESDIR}/${P}_gcc-6.patch" ) | ||
|
||
src_prepare() { | ||
vdr-plugin-2_src_prepare | ||
|
||
# Patch Makefile, as VDRDIR is no well known variable name | ||
# to stop spare -I in gcc cmdline | ||
sed -e 's:$(VDRINC):$(VDRDIR)/include:' -i Makefile | ||
} |