diff options
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/libretro-dosbox/libretro-dosbox-0.0.1_pre20180723.ebuild | 9 | ||||
-rw-r--r-- | games-emulation/libretro-dosbox/libretro-dosbox-9999.ebuild | 9 |
2 files changed, 14 insertions, 4 deletions
diff --git a/games-emulation/libretro-dosbox/libretro-dosbox-0.0.1_pre20180723.ebuild b/games-emulation/libretro-dosbox/libretro-dosbox-0.0.1_pre20180723.ebuild index 7e054e83e3a6..0b886621f567 100644 --- a/games-emulation/libretro-dosbox/libretro-dosbox-0.0.1_pre20180723.ebuild +++ b/games-emulation/libretro-dosbox/libretro-dosbox-0.0.1_pre20180723.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -6,8 +6,13 @@ EAPI=7 LIBRETRO_REPO_NAME="libretro/dosbox-libretro" LIBRETRO_COMMIT_SHA="169d476437ec813b462a47254f24cf78473389c8" KEYWORDS="~amd64 ~x86" -inherit libretro-core +inherit flag-o-matic libretro-core DESCRIPTION="DOSBox libretro port" LICENSE="GPL-2+" SLOT="0" + +src_compile() { + append-cxxflags -std=gnu++11 + default +} diff --git a/games-emulation/libretro-dosbox/libretro-dosbox-9999.ebuild b/games-emulation/libretro-dosbox/libretro-dosbox-9999.ebuild index 5105cca887f1..ad6cbe45346b 100644 --- a/games-emulation/libretro-dosbox/libretro-dosbox-9999.ebuild +++ b/games-emulation/libretro-dosbox/libretro-dosbox-9999.ebuild @@ -1,11 +1,16 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 LIBRETRO_REPO_NAME="libretro/dosbox-libretro" -inherit libretro-core +inherit libretro-core flag-o-matic DESCRIPTION="DOSBox libretro port" LICENSE="GPL-2+" SLOT="0" + +src_compile() { + append-cxxflags -std=gnu++11 + default +} |