Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/lucene++/
Date: Mon, 22 Oct 2018 16:15:05
Message-Id: 1540224829.1593c2fdcaeb97085146a8f345b7ce2458a928fb.asturm@gentoo
1 commit: 1593c2fdcaeb97085146a8f345b7ce2458a928fb
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 14 13:48:27 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 22 16:13:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1593c2fd
7
8 dev-cpp/lucene++: EAPI-6 bump
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12 Closes: https://github.com/gentoo/gentoo/pull/10144
13
14 dev-cpp/lucene++/lucene++-3.0.7-r1.ebuild | 36 +++++++++++++++++++++++++++++++
15 1 file changed, 36 insertions(+)
16
17 diff --git a/dev-cpp/lucene++/lucene++-3.0.7-r1.ebuild b/dev-cpp/lucene++/lucene++-3.0.7-r1.ebuild
18 new file mode 100644
19 index 00000000000..731f8871827
20 --- /dev/null
21 +++ b/dev-cpp/lucene++/lucene++-3.0.7-r1.ebuild
22 @@ -0,0 +1,36 @@
23 +# Copyright 1999-2018 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +MY_P="LucenePlusPlus-rel_${PV}"
29 +inherit cmake-utils
30 +
31 +DESCRIPTION="C++ port of Lucene library, a high-performance, full-featured text search engine"
32 +HOMEPAGE="https://github.com/luceneplusplus/LucenePlusPlus"
33 +SRC_URI="https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="|| ( LGPL-3 Apache-2.0 )"
36 +SLOT="0"
37 +KEYWORDS="amd64 hppa ppc ppc64 sparc x86"
38 +IUSE="debug"
39 +
40 +DEPEND="dev-libs/boost:="
41 +RDEPEND="${DEPEND}"
42 +
43 +RESTRICT="test"
44 +
45 +S="${WORKDIR}/${MY_P}"
46 +
47 +DOCS=( AUTHORS README.rst )
48 +
49 +PATCHES=( "${FILESDIR}/${P}-boost-1.58.patch" )
50 +
51 +src_configure() {
52 + local mycmakeargs=(
53 + -DENABLE_DEMO=OFF
54 + -DENABLE_TEST=OFF
55 + )
56 +
57 + cmake-utils_src_configure
58 +}