36 lines
734 B
Bash
36 lines
734 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3 cmake-utils
|
|
|
|
DESCRIPTION="Parametric 2d/3d CAD"
|
|
HOMEPAGE="http://solvespace.com/"
|
|
EGIT_REPO_URI="https://github.com/solvespace/solvespace"
|
|
EGIT_SUBMODULES=( '*libdxfrw' 'extlib/flatbuffers' 'extlib/q3d' 'extlib/mimalloc' )
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
sys-libs/zlib
|
|
dev-libs/json-c
|
|
x11-libs/cairo
|
|
dev-cpp/gtkmm:3.0
|
|
dev-cpp/pangomm
|
|
media-libs/fontconfig
|
|
media-libs/freetype
|
|
media-libs/glu
|
|
media-libs/libpng
|
|
dev-libs/libspnav"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
CMAKE_BUILD_TYPE="Release"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=("-DENABLE_TESTS=OFF")
|
|
cmake-utils_src_configure
|
|
}
|