diff options
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild index 45755a6557d1..89e1b97f6728 100644 --- a/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild +++ b/dev-cpp/clucene/clucene-2.3.3.4-r6.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 MY_PN="${PN}"-core MY_P="${MY_PN}"-"${PV}" -inherit cmake-utils multilib +inherit cmake multilib DESCRIPTION="High-performance, full-featured text search engine based off of lucene in C++" HOMEPAGE="http://clucene.sourceforge.net/" @@ -14,14 +14,13 @@ 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 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="debug doc static-libs" -DEPEND=" +BDEPEND=" doc? ( >=app-doc/doxygen-1.4.2 ) " -RDEPEND="" RESTRICT="test" @@ -38,7 +37,7 @@ PATCHES=( ) src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare # patch out installing bundled boost headers, we build against system one sed -i \ @@ -61,5 +60,5 @@ src_configure() { -DBUILD_STATIC_LIBRARIES=$(usex static-libs) ) - cmake-utils_src_configure + cmake_src_configure } |