mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
Package-Manager: portage-2.3.0 RepoMan-Options: --include-arches="amd64" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
38 lines
816 B
Bash
38 lines
816 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
MY_P="LucenePlusPlus-rel_${PV}"
|
|
inherit cmake-utils multilib
|
|
|
|
DESCRIPTION="C++ port of Java 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 ~ppc64 ~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-utils_src_configure
|
|
}
|