media-libs/waffle: Drop old versions
authorMatt Turner <mattst88@gentoo.org>
Sat, 28 Sep 2019 18:09:54 +0000 (11:09 -0700)
committerMatt Turner <mattst88@gentoo.org>
Sat, 28 Sep 2019 18:27:13 +0000 (11:27 -0700)
Signed-off-by: Matt Turner <mattst88@gentoo.org>
media-libs/waffle/Manifest
media-libs/waffle/waffle-1.5.2.ebuild [deleted file]

index 32f21dcd3360c7dd7ba7a49aed53a665d878737b..0b0146e39dc5aa40fc7a44d4d36a7d74bbb9aba1 100644 (file)
@@ -1,2 +1 @@
-DIST waffle-1.5.2.tar.xz 179284 BLAKE2B 40befb3e4463605e303b404677268d4758f6a43f5d83bee5e74222e2e2bf949f51444c0df68291ef0edc76be313363eca3e59e642b0356451c10703e66d96e56 SHA512 04f90f70421c88418d1d98175b552de9e036ea36b6c870a6c968c7fcc2d4cb2fa4ce08b0adcdd50f4853a7503558eae7a05ef75b292cf85d3c9796e7b342ca62
 DIST waffle-1.6.0.tar.xz 224400 BLAKE2B 458add99b346bd75dc757243b9e7db6ac269fb2c1e488333d921c640e10efd182e51e8a5e0312d334593033936adf047fc2339d21e675654d89d66edfb8922b3 SHA512 c8796ab8adf968df2c5c88e2941c83955fe41e87eb2b75b6a5cc61b0d0c06eaa44df2f255f573a51816036dc8bc3ec63f3fb51ccfb7efbfe83cdd50b3f1be13f
diff --git a/media-libs/waffle/waffle-1.5.2.ebuild b/media-libs/waffle/waffle-1.5.2.ebuild
deleted file mode 100644 (file)
index 2be51a3..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} = *9999* ]]; then
-       EGIT_REPO_URI="https://github.com/waffle-gl/${PN}.git"
-       GIT_ECLASS="git-r3"
-else
-       SRC_URI="https://people.freedesktop.org/~chadversary/${PN}/files/release/${P}/${P}.tar.xz"
-       KEYWORDS="amd64 arm ~ppc ~ppc64 x86"
-fi
-inherit cmake-multilib ${GIT_ECLASS}
-
-DESCRIPTION="Library that allows selection of GL API and of window system at runtime"
-HOMEPAGE="https://people.freedesktop.org/~chadversary/waffle/"
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="doc egl gbm test wayland"
-
-RDEPEND="
-       >=media-libs/mesa-9.1.6[egl?,gbm?,${MULTILIB_USEDEP}]
-       >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
-       >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
-       >=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]
-       gbm? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] )
-       wayland? ( >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-       >=x11-base/xcb-proto-1.8-r3[${MULTILIB_USEDEP}]
-       doc? (
-               dev-libs/libxslt
-               app-text/docbook-xml-dtd:4.2
-       )
-"
-
-src_configure() {
-       local mycmakeargs=(
-               -Dwaffle_has_glx=ON
-               -Dwaffle_build_examples=OFF
-               -Dwaffle_build_manpages=$(usex doc )
-               -Dwaffle_has_x11_egl=$(usex egl)
-               -Dwaffle_has_gbm=$(usex gbm)
-               -Dwaffle_build_tests=$(usex test)
-               -Dwaffle_has_wayland=$(usex wayland)
-       )
-
-       cmake-multilib_src_configure
-}
-
-src_test() {
-       emake -C "${CMAKE_BUILD_DIR}" check
-}