86 lines
2.2 KiB
Bash
86 lines
2.2 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake toolchain-funcs
|
|
|
|
MY_PN="CuraEngine"
|
|
|
|
DESCRIPTION="A 3D model slicing engine for 3D printing"
|
|
HOMEPAGE="https://github.com/Ultimaker/CuraEngine"
|
|
SRC_URI="https://github.com/Ultimaker/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="AGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
IUSE="+arcus doc openmp test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
${PYTHON_DEPS}
|
|
arcus? (
|
|
~dev-libs/libarcus-${PV}:*
|
|
dev-libs/protobuf:=
|
|
)
|
|
dev-libs/clipper
|
|
dev-libs/rapidjson
|
|
dev-libs/stb"
|
|
|
|
DEPEND="${RDEPEND}
|
|
test? ( dev-cpp/gtest )"
|
|
BDEPEND="doc? ( app-doc/doxygen )"
|
|
|
|
DOCS=( README.md )
|
|
PATCHES=( "${FILESDIR}/${PN}-4.7.0-fix-tests.patch" )
|
|
S="${WORKDIR}/${MY_PN}-${PV}"
|
|
|
|
src_prepare() {
|
|
rm -r "${S}"/libs || die
|
|
|
|
# remove static linking
|
|
# respect cflags
|
|
sed -i \
|
|
-e "s/-static-libstdc++//g" \
|
|
-e 's/set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")//g' \
|
|
-e 's/set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_RELEASE_INIT}")//g' \
|
|
CMakeLists.txt || die
|
|
|
|
if use test; then
|
|
find "${S}"/tests/arcus "${S}"/tests/integration "${S}"/tests/settings "${S}"/tests/utils \
|
|
-type f -name '*.cpp' | xargs sed -i \
|
|
-e 's <../src/utils/AABB.h> "../../src/utils/AABB.h" g'\
|
|
-e 's <../src/utils/IntPoint.h> "../../src/utils/IntPoint.h" g' \
|
|
-e 's <../src/utils/polygon.h> "../../src/utils/polygon.h" g'\
|
|
-e 's <../src/utils/PolygonConnector.h> "../../src/utils/PolygonConnector.h" g'\
|
|
-e 's <../src/utils/polygonUtils.h> "../../src/utils/polygonUtils.h" g'\
|
|
-e 's <../src/utils/string.h> "../../src/utils/string.h" g' \
|
|
-e 's <../src/utils/SVG.h> "../../src/utils/SVG.h" g' \
|
|
-e 's#include "../src#include "../../src#g'|| die
|
|
fi
|
|
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DBUILD_TESTS=$(usex test ON OFF)
|
|
-DENABLE_ARCUS=$(usex arcus ON OFF)
|
|
-DENABLE_MORE_COMPILER_OPTIMIZATION_FLAGS=OFF
|
|
-DENABLE_OPENMP=$(usex openmp ON OFF)
|
|
-DUSE_SYSTEM_LIBS=ON
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
cmake_src_compile
|
|
|
|
if use doc; then
|
|
doxygen || die "generating docs failed"
|
|
mv docs/html . || die
|
|
find html -type f \(-name '*.md5' -o -name '*.map'\) -delete || die
|
|
HTML_DOCS=( html/. )
|
|
fi
|
|
}
|