summaryrefslogtreecommitdiff
path: root/dev-cpp/lucene++/lucene++-3.0.9.ebuild
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-04-09 07:52:49 +0100
committerSam James <sam@gentoo.org>2025-04-09 07:52:58 +0100
commit9c3ff286d44fe05e31c2cbcbca8552acc467335d (patch)
tree3851d7d3329e2d9ad6ebec63b0606cafcd2688b7 /dev-cpp/lucene++/lucene++-3.0.9.ebuild
parent870542214e67aa263ca5b3c92661f3c313a7825e (diff)
downloadgentoo-9c3ff286d44fe05e31c2cbcbca8552acc467335d.tar.gz
gentoo-9c3ff286d44fe05e31c2cbcbca8552acc467335d.tar.bz2
gentoo-9c3ff286d44fe05e31c2cbcbca8552acc467335d.zip
dev-cpp/lucene++: add 3.0.9
Closes: https://bugs.gentoo.org/946534 Closes: https://bugs.gentoo.org/947796 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/lucene++/lucene++-3.0.9.ebuild')
-rw-r--r--dev-cpp/lucene++/lucene++-3.0.9.ebuild36
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-cpp/lucene++/lucene++-3.0.9.ebuild b/dev-cpp/lucene++/lucene++-3.0.9.ebuild
new file mode 100644
index 000000000000..a774b663b0cb
--- /dev/null
+++ b/dev-cpp/lucene++/lucene++-3.0.9.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="LucenePlusPlus-rel_${PV}"
+inherit cmake
+
+DESCRIPTION="C++ port of Lucene library, a high-performance, full-featured text search engine"
+HOMEPAGE="https://github.com/luceneplusplus/LucenePlusPlus"
+SRC_URI="https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="|| ( LGPL-3 Apache-2.0 )"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~loong ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug"
+RESTRICT="test"
+
+DEPEND="dev-libs/boost:=[zlib]"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-3.0.7-boost-1.85.patch"
+ "${FILESDIR}/${PN}-3.0.9-boost-1.87.patch"
+ "${FILESDIR}/${PN}-3.0.9-pkgconfig.patch"
+)
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_DEMO=OFF
+ -DENABLE_TEST=OFF
+ )
+
+ cmake_src_configure
+}