# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI="5" PYTHON_COMPAT=( python2_7 ) inherit cmake-multilib eutils python-single-r1 DESCRIPTION="A tool for tracing, analyzing, and debugging graphics APIs" HOMEPAGE="https://github.com/apitrace/apitrace" SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" IUSE="+cli egl qt5 +bundled-snappy" RDEPEND="${PYTHON_DEPS} >=sys-devel/gcc-4.7 >=app-arch/snappy-1.1.1[${MULTILIB_USEDEP}] >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] >=media-libs/mesa-9.1.6[egl?,${MULTILIB_USEDEP}] egl? ( || ( >=media-libs/mesa-8.0[gles1,gles2] gzguts.h rm -rf "${S}"/thirdparty/{getopt,less,libpng,zlib} if ! use bundled-snappy ; then rm -rf "${S}"/thirdparty/snappy fi } src_configure() { my_configure() { mycmakeargs=( -DARCH_SUBDIR= $(cmake-utils_use_enable egl EGL) $(cmake-utils_use_enable bundled-snappy STATIC_SNAPPY) ) if multilib_is_native_abi ; then mycmakeargs+=( $(cmake-utils_use_enable cli CLI) $(cmake-utils_use_enable qt5 GUI) ) else mycmakeargs+=( -DBUILD_LIB_ONLY=ON -DENABLE_CLI=OFF -DENABLE_GUI=OFF ) fi cmake-utils_src_configure } multilib_parallel_foreach_abi my_configure } src_install() { cmake-multilib_src_install dosym glxtrace.so /usr/$(get_libdir)/${PN}/wrappers/libGL.so dosym glxtrace.so /usr/$(get_libdir)/${PN}/wrappers/libGL.so.1 dosym glxtrace.so /usr/$(get_libdir)/${PN}/wrappers/libGL.so.1.2 dodoc docs/{BUGS,Dalvik,FORMAT,HACKING,NEWS,TODO,USAGE}.markdown dodoc README.markdown exeinto /usr/$(get_libdir)/${PN}/scripts doexe $(find scripts -type f -executable) }