forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assimp-4.0.0.ebuild
53 lines (42 loc) · 1.12 KB
/
assimp-4.0.0.ebuild
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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils versionator multilib
DESCRIPTION="Importer library to import assets from 3D files"
HOMEPAGE="https://github.com/assimp/assimp"
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="samples static test tools"
SLOT="0"
RDEPEND="
dev-libs/boost
samples? ( x11-libs/libX11 virtual/opengl media-libs/freeglut )
sys-libs/zlib
"
DEPEND="${RDEPEND}
test? ( dev-cpp/gtest )
"
src_prepare() {
eapply "${FILESDIR}/findassimp-${PV}.patch"
eapply_user
}
src_configure() {
mycmakeargs=(
-DASSIMP_BUILD_SAMPLES=$(usex samples) \
-DASSIMP_BUILD_ASSIMP_TOOLS=$(usex tools) \
-DASSIMP_BUILD_STATIC_LIB=$(usex static) \
-DASSIMP_BUILD_TESTS=$(usex test)
-DCMAKE_DEBUG_POSTFIX=""
-DASSIMP_LIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
insinto /usr/share/cmake/Modules
doins cmake-modules/Findassimp.cmake
}
src_test() {
"${BUILD_DIR}/test/unit" || die
}