diff options
| author | LinuxUserGD <hugegameartgd@gmail.com> | 2023-04-11 00:01:01 +0200 |
|---|---|---|
| committer | Sam James <sam@gentoo.org> | 2023-06-28 22:13:55 +0100 |
| commit | 1ba9c12d6ed1d6054c055bea8480e2d0132ae8eb (patch) | |
| tree | 4a70f0996cdb052b4b9d6512a2fcd5dd692d69d4 /dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild | |
| parent | ae055071d7881079db25c7d6f749367c0983abe1 (diff) | |
| download | gentoo-1ba9c12d6ed1d6054c055bea8480e2d0132ae8eb.tar.gz gentoo-1ba9c12d6ed1d6054c055bea8480e2d0132ae8eb.tar.bz2 gentoo-1ba9c12d6ed1d6054c055bea8480e2d0132ae8eb.zip | |
dev-cpp/clucene: fix removed std::binary_function in c++17
Closes: https://bugs.gentoo.org/853298
Closes: https://bugs.gentoo.org/869170
Signed-off-by: LinuxUserGD <hugegameartgd@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/30547
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild')
| -rw-r--r-- | dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild new file mode 100644 index 000000000000..656750220d5b --- /dev/null +++ b/dev-cpp/clucene/clucene-2.3.3.4-r9.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="${PN}"-core +MY_P="${MY_PN}"-"${PV}" + +inherit cmake + +DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++" +HOMEPAGE="https://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 arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" + +IUSE="debug doc static-libs" + +BDEPEND=" + doc? ( >=app-doc/doxygen-1.4.2 ) +" + +RESTRICT="test" + +DOCS=(AUTHORS ChangeLog README README.PACKAGE REQUESTS) + +S="${WORKDIR}/${MY_PN}-${PV}" + +PATCHES=( + "${FILESDIR}/${P}-fix-clang.patch" + "${FILESDIR}/${P}-contrib.patch" + "${FILESDIR}/${P}-pkgconfig.patch" + "${FILESDIR}/${P}-gcc6.patch" + "${FILESDIR}/${P}-gmtime.patch" + "${FILESDIR}/${P}-musl-pthread.patch" + "${FILESDIR}/${P}-libcxx.patch" + "${FILESDIR}/${P}-fix-binary-function.patch" +) + +src_prepare() { + cmake_src_prepare + + # patch out installing bundled boost headers, we build against system one + sed -i \ + -e '/ADD_SUBDIRECTORY (src\/ext)/d' \ + CMakeLists.txt || die + rm -rf src/ext || die +} + +src_configure() { + # Disabled threads: see upstream bug + # https://sourceforge.net/p/clucene/bugs/197/ + local mycmakeargs=( + -DENABLE_ASCII_MODE=OFF + -DENABLE_PACKAGING=OFF + -DDISABLE_MULTITHREADING=OFF + -DBUILD_CONTRIBS_LIB=ON + "-DLIB_DESTINATION=${EPREFIX}/usr/$(get_libdir)" + -DENABLE_DEBUG=$(usex debug) + -DENABLE_CLDOCS=$(usex doc) + -DBUILD_STATIC_LIBRARIES=$(usex static-libs) + ) + + cmake_src_configure +} |
