diff options
author | 2019-11-28 09:51:58 +0000 | |
---|---|---|
committer | 2019-11-28 10:07:56 +0000 | |
commit | 20b13a05b15d89f9b1fdb937b55106da6a605ca2 (patch) | |
tree | d2d5e8a6a7cd3df8a7370ef0892903463d50a51e /media-libs/gmmlib/gmmlib-19.3.4.ebuild | |
parent | media-libs/opencv: Remove _ from useflags (diff) | |
download | gentoo-20b13a05b15d89f9b1fdb937b55106da6a605ca2.tar.gz gentoo-20b13a05b15d89f9b1fdb937b55106da6a605ca2.tar.bz2 gentoo-20b13a05b15d89f9b1fdb937b55106da6a605ca2.zip |
media-libs/gmmlib: bump to 19.3.4
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'media-libs/gmmlib/gmmlib-19.3.4.ebuild')
-rw-r--r-- | media-libs/gmmlib/gmmlib-19.3.4.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/media-libs/gmmlib/gmmlib-19.3.4.ebuild b/media-libs/gmmlib/gmmlib-19.3.4.ebuild new file mode 100644 index 000000000000..aee2550263c0 --- /dev/null +++ b/media-libs/gmmlib/gmmlib-19.3.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-multilib + +if [[ ${PV} == *9999 ]] ; then + : ${EGIT_REPO_URI:="https://github.com/intel/gmmlib"} + if [[ ${PV%9999} != "" ]] ; then + : ${EGIT_BRANCH:="release/${PV%.9999}"} + fi + inherit git-r3 +fi + +DESCRIPTION="Intel Graphics Memory Management Library" +HOMEPAGE="https://github.com/intel/gmmlib" +if [[ ${PV} == *9999 ]] ; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/intel/gmmlib/archive/intel-${P}.tar.gz" + S="${WORKDIR}/${PN}-intel-${P}" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +multilib_src_configure() { +# once upstream makes this optional +# local mycmakeargs=( +# -DMEDIA_RUN_TEST_SUITE=OFF +# ) + + cmake-utils_src_configure +} |