blob: 98b1c9901eb8c6717a7f36a8b02547347deea20a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
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 )
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
}
|