diff options
author | TheGreatMcPain <sixsupersonic@gmail.com> | 2021-01-19 16:38:54 -0600 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2021-01-19 23:03:10 +0000 |
commit | e4838ac91243db3cc2fc510d7fbab6fe368e6278 (patch) | |
tree | 77f35607a2454644c6a44763cb72c5d36106cedc /games-fps | |
parent | sys-apps/fwupd: 1.5.5: uefi? sys-fs/udisks. (diff) | |
download | gentoo-e4838ac91243db3cc2fc510d7fbab6fe368e6278.tar.gz gentoo-e4838ac91243db3cc2fc510d7fbab6fe368e6278.tar.bz2 gentoo-e4838ac91243db3cc2fc510d7fbab6fe368e6278.zip |
games-fps/gzdoom: Add '-DNDEBUG' to CXXFLAGS
Allows certain mods, like Project Brutality's git master, to work.
See: https://github.com/coelckers/gzdoom/issues/1279
I've also added a 'debug' useflag that skips 'append-cppflags -DNDEBUG'
just incase.
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: James McClain <sixsupersonic@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/19121
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/gzdoom/gzdoom-4.5.0.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/games-fps/gzdoom/gzdoom-4.5.0.ebuild b/games-fps/gzdoom/gzdoom-4.5.0.ebuild index bf1ddc570ec4..60680a131e1c 100644 --- a/games-fps/gzdoom/gzdoom-4.5.0.ebuild +++ b/games-fps/gzdoom/gzdoom-4.5.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake desktop xdg +inherit cmake desktop xdg flag-o-matic DESCRIPTION="A modder-friendly OpenGL source port based on the DOOM engine" HOMEPAGE="https://zdoom.org" @@ -14,7 +14,7 @@ LICENSE="Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT non-free? ( Activision ChexQuest3 DOOM-COLLECTORS-EDITION freedist WidePix )" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" -IUSE="gtk gtk2 +non-free openmp" +IUSE="debug gtk gtk2 +non-free openmp" DEPEND=" app-arch/bzip2 @@ -58,6 +58,9 @@ src_configure() { -DNO_OPENMP="$(usex !openmp)" -DBUILD_NONFREE="$(usex non-free)" ) + + use debug || append-cppflags -DNDEBUG + cmake_src_configure } |