Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/glfw/
Date: Mon, 04 Oct 2021 21:00:07
Message-Id: 1633381147.d10fc4c6cbf577b3028ba543776bf5a1e281e643.ionen@gentoo
1 commit: d10fc4c6cbf577b3028ba543776bf5a1e281e643
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 19:24:28 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 20:59:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d10fc4c6
7
8 media-libs/glfw: drop 3.3.4-r2
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 media-libs/glfw/glfw-3.3.4-r2.ebuild | 48 ------------------------------------
13 1 file changed, 48 deletions(-)
14
15 diff --git a/media-libs/glfw/glfw-3.3.4-r2.ebuild b/media-libs/glfw/glfw-3.3.4-r2.ebuild
16 deleted file mode 100644
17 index a8d714e18ba..00000000000
18 --- a/media-libs/glfw/glfw-3.3.4-r2.ebuild
19 +++ /dev/null
20 @@ -1,48 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -inherit cmake
27 -
28 -DESCRIPTION="The Portable OpenGL FrameWork"
29 -HOMEPAGE="https://www.glfw.org/"
30 -SRC_URI="https://github.com/glfw/glfw/archive/${PV}.tar.gz -> ${P}.tar.gz"
31 -
32 -LICENSE="ZLIB"
33 -SLOT="0"
34 -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc64 x86"
35 -IUSE="wayland"
36 -
37 -RDEPEND="
38 - x11-libs/libxkbcommon
39 - !wayland? (
40 - virtual/opengl
41 - x11-libs/libX11
42 - x11-libs/libXcursor
43 - x11-libs/libXinerama
44 - x11-libs/libXrandr
45 - x11-libs/libXxf86vm
46 - )
47 - wayland? (
48 - dev-libs/wayland
49 - media-libs/mesa[egl(+),wayland]
50 - )
51 -"
52 -DEPEND="
53 - ${RDEPEND}
54 - !wayland? ( x11-libs/libXi )
55 - wayland? ( dev-libs/wayland-protocols )
56 -"
57 -BDEPEND="
58 - wayland? ( kde-frameworks/extra-cmake-modules )
59 -"
60 -
61 -src_configure() {
62 - local mycmakeargs=(
63 - -DGLFW_BUILD_EXAMPLES=no
64 - -DGLFW_USE_WAYLAND="$(usex wayland)"
65 - -DBUILD_SHARED_LIBS=1
66 - )
67 - cmake_src_configure
68 -}