From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DBB1F138346 for ; Sun, 5 Jan 2020 12:31:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 285F3E0AAF; Sun, 5 Jan 2020 12:31:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F0EEE0AAF for ; Sun, 5 Jan 2020 12:31:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0544E34DCCE for ; Sun, 5 Jan 2020 12:31:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E3D23D for ; Sun, 5 Jan 2020 12:31:50 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1578227500.390bd29b869a5daff23213223bd33a474d6743f5.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/lucene++/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/lucene++/lucene++-3.0.7-r2.ebuild X-VCS-Directories: dev-cpp/lucene++/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 390bd29b869a5daff23213223bd33a474d6743f5 X-VCS-Branch: master Date: Sun, 5 Jan 2020 12:31:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 29eb2527-dc0c-4dc0-bfba-68d13e946056 X-Archives-Hash: b513f04d45b6d88355f5125aece2bf17 commit: 390bd29b869a5daff23213223bd33a474d6743f5 Author: Johannes Huber gentoo org> AuthorDate: Sun Jan 5 12:31:17 2020 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun Jan 5 12:31:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=390bd29b dev-cpp/lucene++: Migrate to cmake eclass Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Johannes Huber gentoo.org> dev-cpp/lucene++/lucene++-3.0.7-r2.ebuild | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-cpp/lucene++/lucene++-3.0.7-r2.ebuild b/dev-cpp/lucene++/lucene++-3.0.7-r2.ebuild new file mode 100644 index 00000000000..84363e8ff77 --- /dev/null +++ b/dev-cpp/lucene++/lucene++-3.0.7-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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" + +LICENSE="|| ( LGPL-3 Apache-2.0 )" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug" + +DEPEND="dev-libs/boost:=" +RDEPEND="${DEPEND}" + +RESTRICT="test" + +S="${WORKDIR}/${MY_P}" + +DOCS=( AUTHORS README.rst ) + +PATCHES=( "${FILESDIR}/${P}-boost-1.58.patch" ) + +src_configure() { + local mycmakeargs=( + -DENABLE_DEMO=OFF + -DENABLE_TEST=OFF + ) + + cmake_src_configure +}