You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/openmoiv/openmoiv-1.0.3a.ebuild

43 lines
865 B

# 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/OpenMOIV.src.${PV}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~amd64"
RDEPEND="media-libs/coin"
DEPEND="${RDEPEND}"
S="${WORKDIR}/OpenMOIV.src.${PV/a//}"
src_prepare() {
cmake-utils_src_prepare
sed \
-e 's:$ENV{OIV_DIR}/include:/usr/include/coin:g' \
-i CMakeLists.txt || die
}
src_configure() {
local 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
}