mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 12:03:02 -04:00
Closes: https://bugs.gentoo.org/842759 Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
48 lines
1.0 KiB
Bash
48 lines
1.0 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake flag-o-matic
|
|
|
|
DESCRIPTION="A conflict-driven nogood learning answer set solver"
|
|
HOMEPAGE="
|
|
https://github.com/potassco/clasp
|
|
http://www.cs.uni-potsdam.de/clasp/
|
|
"
|
|
SRC_URI="https://github.com/potassco/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="examples test +threads +tools"
|
|
|
|
RDEPEND="sci-libs/libpotassco:="
|
|
DEPEND="
|
|
${RDEPEND}
|
|
test? ( dev-cpp/catch:0 )
|
|
"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
src_prepare() {
|
|
append-cxxflags "-I/usr/include/catch2"
|
|
rm tests/catch.hpp || die
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DCLASP_BUILD_APP=$(usex tools)
|
|
-DCLASP_BUILD_EXAMPLES=$(usex examples)
|
|
-DCLASP_BUILD_TESTS=$(usex test)
|
|
-DCLASP_BUILD_WITH_THREADS=$(usex threads)
|
|
|
|
-DCLASP_BUILD_STATIC=OFF
|
|
-DCLASP_INSTALL_LIB=ON
|
|
-DCLASP_INSTALL_VERSIONED=OFF
|
|
-DCLASP_USE_LOCAL_LIB_POTASSCO=OFF
|
|
)
|
|
cmake_src_configure
|
|
}
|