From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A4536138334 for ; Sat, 7 Sep 2019 16:10:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CFAA8E0A85; Sat, 7 Sep 2019 16:10:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC1B6E0A85 for ; Sat, 7 Sep 2019 16:10:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 73F4134AE42 for ; Sat, 7 Sep 2019 16:09:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F036A4D3 for ; Sat, 7 Sep 2019 16:09:56 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1567872568.1caa0aa82631f75e1e6b7c27580a62a688d266d1.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/odamex/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/odamex/odamex-0.8.1.ebuild X-VCS-Directories: games-engines/odamex/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 1caa0aa82631f75e1e6b7c27580a62a688d266d1 X-VCS-Branch: master Date: Sat, 7 Sep 2019 16:09:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8f7133bc-a67b-461c-8577-ad39f4d5b619 X-Archives-Hash: a618611e368d6e17521a0bf62cc399c5 commit: 1caa0aa82631f75e1e6b7c27580a62a688d266d1 Author: William Breathitt Gray gmail com> AuthorDate: Sat Sep 7 16:00:25 2019 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sat Sep 7 16:09:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1caa0aa8 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 gmail.com> Closes: https://github.com/gentoo/gentoo/pull/12882 Signed-off-by: James Le Cuirot gentoo.org> games-engines/odamex/odamex-0.8.1.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/games-engines/odamex/odamex-0.8.1.ebuild b/games-engines/odamex/odamex-0.8.1.ebuild index 687e1349aab..8cfa9cbee75 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 }