aboutsummaryrefslogtreecommitdiff
blob: 8ef1a1c354788eedf58902282bdde8d9954f4377 (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="4"

inherit cmake-utils

DESCRIPTION="Object-oriented 3D toolkit that facilitates the 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"

IUSE=""

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="${mycmakeargs} -Dshared:int=1 -Dcoin:int=1 -Dsys_fonts:int=1"
	cmake-utils_src_configure
}

src_install() {
	insinto "/usr/$(get_libdir)"
	doins "${CMAKE_BUILD_DIR}/libChemKit2.so" || die "doins for libChemKit2 failed"

	insinto "/usr/include"
	doins -r "${S}/include/ChemKit2" || die "include install failed"
}