blob: d3e7d5bb6adb6cfb2ef40410818e00931c63c43d (
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
|
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
MY_P="FreeSOLID-${PV}"
DESCRIPTION="Library for collision detection of three-dimensional objects"
HOMEPAGE="https://sourceforge.net/projects/freesolid/"
SRC_URI="mirror://sourceforge/freesolid/${MY_P}.zip"
S="${WORKDIR}/${MY_P}"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
BDEPEND="app-arch/unzip"
src_prepare() {
cmake_src_prepare
sed -i 's/ \(-ffast-math -msse\|-mfpmath=sse\)//' CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=( -DBUILD_SHARED_LIBS=no )
cmake_src_configure
}
src_install() {
cmake_src_install
doinfo doc/solid2.info
}
|