From: Lars Wendler Date: Tue, 5 Nov 2019 09:58:26 +0000 (+0100) Subject: games-engines/scummvm: Added "net" USE flag for optional cloud support X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=97be1a0e3c8281aff774a128fcd50ea9f8540670;p=gentoo.git games-engines/scummvm: Added "net" USE flag for optional cloud support Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Lars Wendler --- diff --git a/games-engines/scummvm/metadata.xml b/games-engines/scummvm/metadata.xml index e71c4a5e17bb..5ccc7bb685e0 100644 --- a/games-engines/scummvm/metadata.xml +++ b/games-engines/scummvm/metadata.xml @@ -8,6 +8,7 @@ compile with support for fluidsynth enable mpeg2 codec for cutscenes + enable cloud support via media-libs/sdl2-net enable text-to-speech support through app-accessibility/speech-dispatcher enable unsupported and/or broken game engines (you're on your own) diff --git a/games-engines/scummvm/scummvm-2.1.0.ebuild b/games-engines/scummvm/scummvm-2.1.0.ebuild index 4df7865efa74..fa2a0700cccb 100644 --- a/games-engines/scummvm/scummvm-2.1.0.ebuild +++ b/games-engines/scummvm/scummvm-2.1.0.ebuild @@ -11,12 +11,11 @@ SRC_URI="https://scummvm.org/frs/scummvm/${PV}/${P}.tar.xz" LICENSE="GPL-2+ LGPL-2.1 BSD GPL-3-with-font-exception" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="a52 aac alsa debug flac fluidsynth jpeg lua mpeg2 mp3 opengl png speech theora truetype unsupported vorbis zlib" +IUSE="a52 aac alsa debug flac fluidsynth jpeg lua mpeg2 mp3 net opengl png speech theora truetype unsupported vorbis zlib" RESTRICT="test" # it only looks like there's a test there #77507 RDEPEND=" >=media-libs/libsdl2-2.0.0[sound,joystick,video] - media-libs/sdl2-net a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) alsa? ( media-libs/alsa-lib ) @@ -25,6 +24,7 @@ RDEPEND=" jpeg? ( virtual/jpeg:0 ) mp3? ( media-libs/libmad ) mpeg2? ( media-libs/libmpeg2 ) + net? ( media-libs/sdl2-net ) opengl? ( virtual/opengl ) png? ( media-libs/libpng:0 ) speech? ( app-accessibility/speech-dispatcher ) @@ -84,6 +84,7 @@ src_configure() { $(use_enable lua) $(use_enable mp3 mad) $(use_enable mpeg2) + $(use_enable net sdlnet) $(use_enable png) $(use_enable speech tts) $(use_enable theora theoradec)