Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/odamex/
Date: Sat, 07 Sep 2019 16:10:01
Message-Id: 1567872568.1caa0aa82631f75e1e6b7c27580a62a688d266d1.chewi@gentoo
1 commit: 1caa0aa82631f75e1e6b7c27580a62a688d266d1
2 Author: William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 7 16:00:25 2019 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 7 16:09:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1caa0aa8
7
8 games-engines/odamex: Call setup-wxwidgets
9
10 The wxwidgets eclass requires setup-wxwidgets to be called to set up the
11 environment for wxGTK. In addition, WX_GTK_VER is updated to select the
12 3.0-gtk3 slot.
13
14 Package-Manager: Portage-2.3.73, Repoman-2.3.17
15 Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>
16 Closes: https://github.com/gentoo/gentoo/pull/12882
17 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
18
19 games-engines/odamex/odamex-0.8.1.ebuild | 5 ++++-
20 1 file changed, 4 insertions(+), 1 deletion(-)
21
22 diff --git a/games-engines/odamex/odamex-0.8.1.ebuild b/games-engines/odamex/odamex-0.8.1.ebuild
23 index 687e1349aab..8cfa9cbee75 100644
24 --- a/games-engines/odamex/odamex-0.8.1.ebuild
25 +++ b/games-engines/odamex/odamex-0.8.1.ebuild
26 @@ -3,7 +3,7 @@
27
28 EAPI=7
29
30 -WX_GTK_VER="3.0"
31 +WX_GTK_VER="3.0-gtk3"
32 inherit cmake-utils desktop wxwidgets xdg
33
34 DESCRIPTION="Online multiplayer free software engine for DOOM"
35 @@ -39,6 +39,9 @@ PATCHES=(
36
37 src_prepare() {
38 rm -r libraries/libminiupnpc odamex.wad || die
39 +
40 + setup-wxwidgets
41 +
42 cmake-utils_src_prepare
43 }