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 8AE93138334 for ; Sat, 26 Oct 2019 13:29:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3774E09B4; Sat, 26 Oct 2019 13:29:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 AFD86E09B4 for ; Sat, 26 Oct 2019 13:29:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8635734C4D0 for ; Sat, 26 Oct 2019 13:29:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 948E8894 for ; Sat, 26 Oct 2019 13:29:25 +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: <1572096388.6b6198cf83601088066cac51751ba046820236c3.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/frotz/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/frotz/frotz-2.50_beta2.ebuild X-VCS-Directories: games-engines/frotz/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 6b6198cf83601088066cac51751ba046820236c3 X-VCS-Branch: master Date: Sat, 26 Oct 2019 13:29:25 +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: 87063343-ec31-4dae-968b-8fdddabce167 X-Archives-Hash: dde4b4abcfa9ce3eac08efdbb5e33d83 commit: 6b6198cf83601088066cac51751ba046820236c3 Author: James Le Cuirot gentoo org> AuthorDate: Sat Oct 26 13:26:28 2019 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sat Oct 26 13:26:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b6198cf games-engines/frotz: Add missing sound dependencies libvorbis isn't actually used directly, apart from in the Makefile, where it's included in the link, presumably for static linking. Support in libsndfile or libsdl2 is expected to be present though so I have included it anyway. I haven't included minimum versions as stated in INSTALL because it admits that older versions may work and we generally don't bother unless older versions are still in the tree or were until recently. Closes: https://bugs.gentoo.org/698434 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: James Le Cuirot gentoo.org> games-engines/frotz/frotz-2.50_beta2.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/games-engines/frotz/frotz-2.50_beta2.ebuild b/games-engines/frotz/frotz-2.50_beta2.ebuild index dda1c12531b..732495e1c96 100644 --- a/games-engines/frotz/frotz-2.50_beta2.ebuild +++ b/games-engines/frotz/frotz-2.50_beta2.ebuild @@ -20,13 +20,19 @@ REQUIRED_USE="sound? ( || ( ncurses sdl ) )" DEPEND=" ncurses? ( sys-libs/ncurses:0=[unicode?] - sound? ( media-libs/libao ) + sound? ( + media-libs/libao + media-libs/libmodplug + media-libs/libsamplerate[sndfile] + media-libs/libsndfile[-minimal] + media-libs/libvorbis + ) ) sdl? ( media-libs/freetype:2 media-libs/libpng:0= media-libs/libsdl2[sound,threads,video] - media-libs/sdl2-mixer + media-libs/sdl2-mixer[mod,vorbis,wav] sys-libs/zlib virtual/jpeg:0= )