diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2019-09-08 01:00:25 +0900 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2019-09-07 17:09:28 +0100 |
commit | 1caa0aa82631f75e1e6b7c27580a62a688d266d1 (patch) | |
tree | d62bd8f32d1243a6b9fd1b02293b41d1e4a2486e /games-engines/odamex | |
parent | media-video/movit: arm64 stable (bug #690946) (diff) | |
download | gentoo-1caa0aa82631f75e1e6b7c27580a62a688d266d1.tar.gz gentoo-1caa0aa82631f75e1e6b7c27580a62a688d266d1.tar.bz2 gentoo-1caa0aa82631f75e1e6b7c27580a62a688d266d1.zip |
games-engines/odamex: Call setup-wxwidgets
The wxwidgets eclass requires setup-wxwidgets to be called to set up the
environment for wxGTK. In addition, WX_GTK_VER is updated to select the
3.0-gtk3 slot.
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12882
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-engines/odamex')
-rw-r--r-- | games-engines/odamex/odamex-0.8.1.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games-engines/odamex/odamex-0.8.1.ebuild b/games-engines/odamex/odamex-0.8.1.ebuild index 687e1349aab3..8cfa9cbee75a 100644 --- a/games-engines/odamex/odamex-0.8.1.ebuild +++ b/games-engines/odamex/odamex-0.8.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -WX_GTK_VER="3.0" +WX_GTK_VER="3.0-gtk3" inherit cmake-utils desktop wxwidgets xdg DESCRIPTION="Online multiplayer free software engine for DOOM" @@ -39,6 +39,9 @@ PATCHES=( src_prepare() { rm -r libraries/libminiupnpc odamex.wad || die + + setup-wxwidgets + cmake-utils_src_prepare } |