diff options
author | 2017-10-15 03:35:43 -0400 | |
---|---|---|
committer | 2017-10-21 16:30:31 +0200 | |
commit | bf877ee8392966a61fbd4504a2323129eaba340b (patch) | |
tree | 91df3d1ac48bced407e2c6d7cdb18eb0e1934d31 /media-plugins/vdr-live/vdr-live-0.3.0_p20130504-r2.ebuild | |
parent | net-misc/usbip: Version bump (bug #634996 by Tomoatsu Shimada). (diff) | |
download | gentoo-bf877ee8392966a61fbd4504a2323129eaba340b.tar.gz gentoo-bf877ee8392966a61fbd4504a2323129eaba340b.tar.bz2 gentoo-bf877ee8392966a61fbd4504a2323129eaba340b.zip |
media-plugins/vdr-live: Maintainer timeout. Fix building with GCC-6.
Closes: https://bugs.gentoo.org/599752
Closes: https://github.com/gentoo/gentoo/pull/5951
Package-Manager: Portage-2.3.10, Repoman-2.3.3
Diffstat (limited to 'media-plugins/vdr-live/vdr-live-0.3.0_p20130504-r2.ebuild')
-rw-r--r-- | media-plugins/vdr-live/vdr-live-0.3.0_p20130504-r2.ebuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/media-plugins/vdr-live/vdr-live-0.3.0_p20130504-r2.ebuild b/media-plugins/vdr-live/vdr-live-0.3.0_p20130504-r2.ebuild index 25179ef3d55f..9d7f6bdbaf5d 100644 --- a/media-plugins/vdr-live/vdr-live-0.3.0_p20130504-r2.ebuild +++ b/media-plugins/vdr-live/vdr-live-0.3.0_p20130504-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -28,6 +28,11 @@ VDR_RCADDON_FILE="${FILESDIR}/rc-addon-0.3.sh" KEEP_I18NOBJECT="yes" +PATCHES=( + "${FILESDIR}"/${P}_vdr-2.1.2.diff + "${FILESDIR}"/${P}-c++11.patch +) + make_live_cert() { # TODO: still true? # ssl-cert eclass creates a "invalid" cert, create our own one @@ -51,12 +56,9 @@ make_live_cert() { chown vdr:vdr "${ROOT}"/etc/vdr/plugins/live/live{,-key}.pem } -src_configure() { - # tmp. disabled gcc -std=c++11, due massiv compile errors - filter-flags -std=c++11 -} - src_prepare() { + default + # new Makefile handling ToDp # cp "${FILESDIR}/live.mk" "${S}/Makefile" @@ -65,8 +67,6 @@ src_prepare() { vdr-plugin-2_src_prepare - epatch "${FILESDIR}/${P}_vdr-2.1.2.diff" - if ! use pcre; then sed -i "s:^HAVE_LIBPCRECPP:#HAVE_LIBPCRECPP:" Makefile || die fi |