From 62998f5c488eb5b68c6fa8769db4be17bef1d262 Mon Sep 17 00:00:00 2001 From: Johannes Huber Date: Fri, 20 May 2016 19:54:32 +0200 Subject: [PATCH] dev-cpp/clucene: Fix build with gcc-6 Revision bump adds pending upstream patch which fixes build with gcc-6. Gentoo-bug: 582868 Thanks-to: Peter Levine Package-Manager: portage-2.3.0_rc1 --- dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 64 +++++++++++++++++++ .../clucene/files/clucene-2.3.3.4-gcc6.patch | 25 ++++++++ 2 files changed, 89 insertions(+) create mode 100644 dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild create mode 100644 dev-cpp/clucene/files/clucene-2.3.3.4-gcc6.patch diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild new file mode 100644 index 000000000000..625ea054de43 --- /dev/null +++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +MY_PN="${PN}"-core +MY_P="${MY_PN}"-"${PV}" + +inherit cmake-utils multilib + +DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++" +HOMEPAGE="http://clucene.sourceforge.net/" +SRC_URI="mirror://sourceforge/clucene/${MY_P}.tar.gz" + +LICENSE="|| ( Apache-2.0 LGPL-2.1 )" +SLOT="1" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" + +IUSE="debug doc static-libs" + +DEPEND=" + doc? ( >=app-doc/doxygen-1.4.2 ) +" +RDEPEND="! +Date: Thu, 12 May 2016 20:38:12 -0400 +Subject: [PATCH] Support GCC-6 + +--- + src/shared/cmake/MacroCheckGccVisibility.cmake | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/shared/cmake/MacroCheckGccVisibility.cmake b/src/shared/cmake/MacroCheckGccVisibility.cmake +index 2022aa3..020f913 100644 +--- a/src/shared/cmake/MacroCheckGccVisibility.cmake ++++ b/src/shared/cmake/MacroCheckGccVisibility.cmake +@@ -15,7 +15,7 @@ macro(MACRO_CHECK_GCC_VISIBILITY GccVisibility) + # get the gcc version + exec_program(${CMAKE_C_COMPILER} ARGS --version OUTPUT_VARIABLE _gcc_version_info) + +- string (REGEX MATCH "[345]\\.[0-9]\\.[0-9]" _gcc_version "${_gcc_version_info}") ++ string (REGEX MATCH "[3456]\\.[0-9]\\.[0-9]" _gcc_version "${_gcc_version_info}") + if (NOT _gcc_version) + + # clang reports: clang version 1.1 (trunk 95754) +-- +2.8.2 + -- 2.26.2