summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2023-03-09 12:48:36 -0500
committerIonen Wolkens <ionen@gentoo.org>2023-03-09 15:12:41 -0500
commit0e912b93931557fdbf852e06bd93b72220d368f1 (patch)
tree6bac2d3d3dcf400a39a1b3459b687ed0bace860c /media-libs/glfw
parentgames-board/pychess: drop 1.0.3-r2 (diff)
downloadgentoo-0e912b93931557fdbf852e06bd93b72220d368f1.tar.gz
gentoo-0e912b93931557fdbf852e06bd93b72220d368f1.tar.bz2
gentoo-0e912b93931557fdbf852e06bd93b72220d368f1.zip
media-libs/glfw: drop 3.3.5
These minor bumps been uneventful, should be little reason to keep old for longer. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'media-libs/glfw')
-rw-r--r--media-libs/glfw/Manifest1
-rw-r--r--media-libs/glfw/glfw-3.3.5.ebuild50
2 files changed, 0 insertions, 51 deletions
diff --git a/media-libs/glfw/Manifest b/media-libs/glfw/Manifest
index 0d967a17dd91..71c0f7c0e413 100644
--- a/media-libs/glfw/Manifest
+++ b/media-libs/glfw/Manifest
@@ -1,2 +1 @@
-DIST glfw-3.3.5.tar.gz 776593 BLAKE2B ce92a42ef7361ae2580c9d6722d340106f9ca26e7fb436b9a4be2f25bf4a15d2b08d82ff71ad4ce4cd6a59e31d934d0fe6ab0e546474a3e7de38e229795ee0e8 SHA512 cbb8ebf25d3d826eb1daeff3ad2e0e965ce9def3352955f297743d918f625d96bc05bf87c90f7b57ec53376a0f2f6ce62f80b57fac4e81e023400de275e97beb
DIST glfw-3.3.8.tar.gz 803789 BLAKE2B e06b319f4b5c1aaa27b32895c39fb1759adc0576a1e4c3fef095b31f204709d7ec6a89a915604b39daaa9f481a2bf2dbff165948ab2074b8a0b12c2afe913c0e SHA512 70d6d99fb7e7616990516070c9a430915dc68d89ec4fe785570f0b35f5c9606a34121e0cd57c0a7debb50e87e2a8e8d97d81a6d52d65ef454f7fd191bd9f679f
diff --git a/media-libs/glfw/glfw-3.3.5.ebuild b/media-libs/glfw/glfw-3.3.5.ebuild
deleted file mode 100644
index 3fcd9a61ae42..000000000000
--- a/media-libs/glfw/glfw-3.3.5.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib
-
-DESCRIPTION="Portable OpenGL FrameWork"
-HOMEPAGE="https://www.glfw.org/"
-SRC_URI="https://github.com/glfw/glfw/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc64 x86"
-IUSE="wayland-only"
-
-RDEPEND="
- media-libs/libglvnd[${MULTILIB_USEDEP}]
- wayland-only? ( dev-libs/wayland[${MULTILIB_USEDEP}] )
- !wayland-only? (
- media-libs/libglvnd[X]
- x11-libs/libX11[${MULTILIB_USEDEP}]
- )"
-DEPEND="
- ${RDEPEND}
- wayland-only? (
- dev-libs/wayland-protocols
- x11-libs/libxkbcommon[${MULTILIB_USEDEP}]
- )
- !wayland-only? (
- x11-base/xorg-proto
- x11-libs/libXcursor[${MULTILIB_USEDEP}]
- x11-libs/libXi[${MULTILIB_USEDEP}]
- x11-libs/libXinerama[${MULTILIB_USEDEP}]
- x11-libs/libXrandr[${MULTILIB_USEDEP}]
- )"
-BDEPEND="
- wayland-only? (
- dev-util/wayland-scanner
- kde-frameworks/extra-cmake-modules
- )"
-
-src_configure() {
- local mycmakeargs=(
- -DGLFW_BUILD_EXAMPLES=no
- -DGLFW_USE_WAYLAND=$(usex wayland-only)
- )
-
- cmake-multilib_src_configure
-}