sys-fs/e4rat: Fix compilation with gcc6 (#594046 by Peter Levine)
authorPacho Ramos <pacho@gentoo.org>
Fri, 23 Sep 2016 19:27:47 +0000 (21:27 +0200)
committerPacho Ramos <pacho@gentoo.org>
Fri, 23 Sep 2016 19:30:25 +0000 (21:30 +0200)
Package-Manager: portage-2.3.0

sys-fs/e4rat/e4rat-0.2.4_pre20141201.ebuild
sys-fs/e4rat/files/e4rat-0.2.4-gcc6.patch [new file with mode: 0644]

index 7bbee6565e1f58b720767181f7f1de14d9052009..5c62fd26a7131dbdcf125880fa77b6015188bafb 100644 (file)
@@ -1,10 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
-
-inherit cmake-utils linux-info readme.gentoo
+EAPI=6
+inherit cmake-utils linux-info readme.gentoo-r1
 
 DESCRIPTION="Toolset to accelerate the boot process and application startup"
 HOMEPAGE="http://e4rat.sourceforge.net/"
@@ -23,9 +22,7 @@ RDEPEND="
        sys-process/audit
        sys-process/lsof
 "
-DEPEND="${DEPEND}
-       app-arch/xz-utils
-"
+DEPEND="${DEPEND}"
 
 CONFIG_CHECK="~AUDITSYSCALL"
 
@@ -33,6 +30,7 @@ PATCHES=(
        "${FILESDIR}"/${PN}-0.2.2-shared-build.patch
        "${FILESDIR}"/${PN}-0.2.2-libdir.patch
        "${FILESDIR}"/${PN}-0.2.4-sysmacros.patch #580534
+       "${FILESDIR}"/${PN}-0.2.4-gcc6.patch #594046
 )
 
 pkg_setup() {
diff --git a/sys-fs/e4rat/files/e4rat-0.2.4-gcc6.patch b/sys-fs/e4rat/files/e4rat-0.2.4-gcc6.patch
new file mode 100644 (file)
index 0000000..cdf14e5
--- /dev/null
@@ -0,0 +1,11 @@
+--- e4rat-0.2.4_pre20141201/src/logging.hh.old 2016-09-21 22:01:37.631925077 -0400
++++ e4rat-0.2.4_pre20141201/src/logging.hh     2016-09-21 22:01:44.351086734 -0400
+@@ -93,7 +93,7 @@
+ #define dump_log(...) logger.write(__VA_ARGS__)
+ 
+ #ifdef DEBUG_ENABLED
+-    #define debug(format,args...) dump_log(Debug, "%s:%d in %s(): "format, __FILE__, __LINE__, __FUNCTION__, ## args)
++    #define debug(format,args...) dump_log(Debug, "%s:%d in %s(): " format, __FILE__, __LINE__, __FUNCTION__, ## args)
+ #else
+     #define debug(format,args...)
+ #endif