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 29A24138239 for ; Tue, 5 Nov 2019 09:59:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D2D2E08A8; Tue, 5 Nov 2019 09:59:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0D1BEE08A8 for ; Tue, 5 Nov 2019 09:59:15 +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 9698834C8D4 for ; Tue, 5 Nov 2019 09:59:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09C4CA8 for ; Tue, 5 Nov 2019 09:59:12 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1572947906.97be1a0e3c8281aff774a128fcd50ea9f8540670.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/scummvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/scummvm/metadata.xml games-engines/scummvm/scummvm-2.1.0.ebuild X-VCS-Directories: games-engines/scummvm/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 97be1a0e3c8281aff774a128fcd50ea9f8540670 X-VCS-Branch: master Date: Tue, 5 Nov 2019 09:59:12 +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: 34ff9eff-99eb-4767-9e78-f4a67bbbff25 X-Archives-Hash: 51c0471cad0fb4e1f4885060b941ae3e commit: 97be1a0e3c8281aff774a128fcd50ea9f8540670 Author: Lars Wendler gentoo org> AuthorDate: Tue Nov 5 09:58:26 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Nov 5 09:58:26 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97be1a0e 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 gentoo.org> games-engines/scummvm/metadata.xml | 1 + games-engines/scummvm/scummvm-2.1.0.ebuild | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/games-engines/scummvm/metadata.xml b/games-engines/scummvm/metadata.xml index e71c4a5e17b..5ccc7bb685e 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 4df7865efa7..fa2a0700ccc 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)