From acf64d44f89f2e8a4cd77f069be558fc1a04e589 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Mon, 15 Feb 2021 21:19:47 -0500 Subject: app-benchmarks/glmark2: Drop old versions Signed-off-by: Matt Turner --- app-benchmarks/glmark2/Manifest | 2 - app-benchmarks/glmark2/glmark2-2012.12_p285.ebuild | 64 ---------------------- app-benchmarks/glmark2/glmark2-2014.03.ebuild | 64 ---------------------- 3 files changed, 130 deletions(-) delete mode 100644 app-benchmarks/glmark2/glmark2-2012.12_p285.ebuild delete mode 100644 app-benchmarks/glmark2/glmark2-2014.03.ebuild diff --git a/app-benchmarks/glmark2/Manifest b/app-benchmarks/glmark2/Manifest index 818bfe97..285e3b4c 100644 --- a/app-benchmarks/glmark2/Manifest +++ b/app-benchmarks/glmark2/Manifest @@ -1,3 +1 @@ -DIST glmark2-2012.12_p285.tar.gz 7779498 SHA256 85f014a28cf26b67cc5225b0e6e4ce9c611741c3acf7ac9909fb763a285482f3 SHA512 3efc6000de05b39b28b8fcde564dfc22d7fb2e8469998e84284e88d60865a4175548fbfa9aac8389a59154c4e6fc3ec9c19a99aedd52ad3b18c5962f930a51d2 WHIRLPOOL 7c392631b6e1aa13e65a0bd076624054bbab5727a739202d39eb2a3ad4fbd9a13051509fe6cf96d8a0492e5c1a639b5b9876693e34dea91fda93487068915d4d -DIST glmark2-2014.03.tar.gz 7801401 SHA256 bded41aaf918ce062d9b81e42cc5be943e6a80bc4ff9d046983b96102c3df6b5 SHA512 fe2781f56083ed6fcdecd70210cbe55609b679c447cf8634b0ab5a1c2dd8e4ca72a7b40fe260bb6d8b435aa21571283bfc659279d008ba5dea4df24bfbdca542 WHIRLPOOL 71f8c184907adbc5cb9059571bd03001b205d804e94a0de4479bcc97595adfe3c08bd9c6bebff74c6a0fce3854e176202db029eb17db4d453fbdd86df6b8e8e6 DIST glmark2-2020.04.tar.gz 9364467 SHA256 0fa7723111c928a73c04d4fa4adfc15a9dea6d335fe189f59c74ae5af26f99a2 SHA512 68d72403ab5c6b4562faf43ae94159e4b8dcb697f62ea9dc3eac5634a3e22b19e14e215a081ae2a39e5db77e6f0f40d5ceb0281962600526d08121a197105a80 WHIRLPOOL 786bd372f6081b6c653489012267581a77d625b4e8b353ad7fcc925ec680f0bbb7685ae89f2c9b5bb3d67c330998d22b13ab4415122cdc401ad6c1eb65d1b92c diff --git a/app-benchmarks/glmark2/glmark2-2012.12_p285.ebuild b/app-benchmarks/glmark2/glmark2-2012.12_p285.ebuild deleted file mode 100644 index ce4a9ced..00000000 --- a/app-benchmarks/glmark2/glmark2-2012.12_p285.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python{2_6,2_7} ) -inherit waf-utils python-single-r1 - -REV=${PV#*_p} - -DESCRIPTION="Opengl test suite" -HOMEPAGE="https://launchpad.net/glmark2" -SRC_URI="http://bazaar.launchpad.net/~glmark2-dev/glmark2/trunk/tarball/${REV} -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="drm +gles2 opengl wayland X" - -RDEPEND="media-libs/libpng - media-libs/mesa[gles2?] - X? ( x11-libs/libX11 ) - wayland? ( >=dev-libs/wayland-1.2 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -REQUIRED_USE="|| ( opengl gles2 ) - || ( drm wayland X )" - -S="${WORKDIR}/~${PN}-dev/${PN}/trunk/" - -src_prepare() { - rm -rf "${S}/src/libpng" - sed -i "s/libpng15/libpng/g" "${S}/wscript" # allow build with >= libpng:1.6 -} - -src_configure() { - : ${WAF_BINARY:="${S}/waf"} - - local myconf - - if use X; then - use opengl && myconf+="x11-gl" - use gles2 && myconf+=",x11-glesv2" - fi - - if use drm; then - use opengl && myconf+=",drm-gl" - use gles2 && myconf+=",drm-glesv2" - fi - - if use wayland; then - use opengl && myconf+=",wayland-gl" - use gles2 && myconf+=",wayland-glesv2" - - fi - myconf=${myconf#,} - - # it does not know --libdir specification, dandy huh - CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \ - --prefix=/usr \ - --with-flavors ${myconf} \ - configure || die "configure failed" -} diff --git a/app-benchmarks/glmark2/glmark2-2014.03.ebuild b/app-benchmarks/glmark2/glmark2-2014.03.ebuild deleted file mode 100644 index 19c7b21c..00000000 --- a/app-benchmarks/glmark2/glmark2-2014.03.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) -inherit waf-utils python-single-r1 - -REV=${PV#*_p} - -DESCRIPTION="Opengl test suite" -HOMEPAGE="https://launchpad.net/glmark2" -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="drm gles2 +opengl wayland X" - -RDEPEND="media-libs/libpng - media-libs/mesa[gles2?] - X? ( x11-libs/libX11 ) - wayland? ( >=dev-libs/wayland-1.2 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -REQUIRED_USE="|| ( opengl gles2 ) - || ( drm wayland X )" - -src_prepare() { - rm -rf "${S}/src/libpng" - sed -i "s/libpng15/libpng/g" "${S}/wscript" # allow build with >= libpng:1.6 - sed -i "/req_funcs/ s/,..sqrt.*\]/\]/" "${S}/wscript" # sqrt patch - sed -i "s/-Werror//" "${S}/wscript" -} - -src_configure() { - : ${WAF_BINARY:="${S}/waf"} - - local myconf - - if use X; then - use opengl && myconf+="x11-gl" - use gles2 && myconf+=",x11-glesv2" - fi - - if use drm; then - use opengl && myconf+=",drm-gl" - use gles2 && myconf+=",drm-glesv2" - fi - - if use wayland; then - use opengl && myconf+=",wayland-gl" - use gles2 && myconf+=",wayland-glesv2" - - fi - myconf=${myconf#,} - - # it does not know --libdir specification, dandy huh - CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \ - --prefix=/usr \ - --with-flavors ${myconf} \ - configure || die "configure failed" -} -- cgit v1.2.3-65-gdbad