aboutsummaryrefslogtreecommitdiff
blob: d44b4be543ed79c46d5098f186e1f5485e8d10d8 (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit cmake-utils

DESCRIPTION="Object-oriented 3D toolkit for rendering and interaction of chemical systems"
HOMEPAGE="http://www.tecn.upf.es/openMOIV/"
SRC_URI="http://www.tecn.upf.es/openMOIV/download/1.0.3/${PN}.src.${PV}.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~amd64"

RDEPEND="media-libs/coin"
DEPEND="${RDEPEND}"

S="${WORKDIR}/${PN}.src.${PV/a//}"

src_prepare() {
	sed \
		-e 's:$ENV{OIV_DIR}/include:/usr/include/coin:g' \
		-i CMakeLists.txt || die
}

src_configure() {
	mycmakeargs=(
		-Dshared:int=1
		-Dcoin:int=1
		-Dsys_fonts:int=1
	)
	cmake-utils_src_configure
}

src_install() {
	dolib.so "${BUILD_DIR}"/libChemKit2.so

	insinto /usr/include
	doins -r "${S}"/include/ChemKit2
}