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/opencollada/opencollada-1.6.58.ebuild

70 lines
1.7 KiB

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils versionator
DESCRIPTION="Stream based read/write library for COLLADA files"
HOMEPAGE="http://www.opencollada.org/"
SRC_URI="https://github.com/KhronosGroup/OpenCOLLADA/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE="static-libs"
# This is still needed to have so version numbers
MY_SOVERSION="$(get_version_component_range 1-2)"
RDEPEND="dev-libs/libpcre
dev-libs/zziplib
media-libs/lib3ds
sys-libs/zlib
dev-libs/libxml2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S="${WORKDIR}/OpenCOLLADA-${PV}"
PATCHES=( "${FILESDIR}/${PN}-build-fixes-v3.patch" )
src_prepare() {
edos2unix CMakeLists.txt
cmake-utils_src_prepare
# Remove bundled depends that have portage equivalents
rm -rv Externals/{expat,lib3ds,LibXML,pcre,zziplib} || die
# Remove unused build systems
rm -v Makefile scripts/{unixbuild.sh,vcproj2cmake.rb} || die
find "${S}" -name SConscript -delete || die
}
src_configure() {
local mycmakeargs=(
-DUSE_SHARED=ON
-DUSE_STATIC=$(usex static-libs)
-DUSE_LIBXML=ON
-Dsoversion=${MY_SOVERSION}
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
echo "LDPATH=/usr/$(get_libdir)/opencollada" > "${T}"/99${PN} || die "echo failed"
doenvd "${T}"/99${PN}
dobin "${BUILD_DIR}/bin/DAEValidator"
dobin "${BUILD_DIR}/bin/OpenCOLLADAValidator"
# Need to be in same directory as above binaries
docinto "/usr/bin"
dodoc "${BUILD_DIR}/bin/COLLADAPhysX3Schema.xsd"
dodoc "${BUILD_DIR}/bin/collada_schema_1_4_1.xsd"
dodoc "${BUILD_DIR}/bin/collada_schema_1_5.xsd"
}