Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/frotz/
Date: Sat, 26 Oct 2019 13:29:29
Message-Id: 1572096388.6b6198cf83601088066cac51751ba046820236c3.chewi@gentoo
1 commit: 6b6198cf83601088066cac51751ba046820236c3
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 26 13:26:28 2019 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 26 13:26:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b6198cf
7
8 games-engines/frotz: Add missing sound dependencies
9
10 libvorbis isn't actually used directly, apart from in the Makefile,
11 where it's included in the link, presumably for static
12 linking. Support in libsndfile or libsdl2 is expected to be present
13 though so I have included it anyway.
14
15 I haven't included minimum versions as stated in INSTALL because it
16 admits that older versions may work and we generally don't bother
17 unless older versions are still in the tree or were until recently.
18
19 Closes: https://bugs.gentoo.org/698434
20 Package-Manager: Portage-2.3.78, Repoman-2.3.17
21 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
22
23 games-engines/frotz/frotz-2.50_beta2.ebuild | 10 ++++++++--
24 1 file changed, 8 insertions(+), 2 deletions(-)
25
26 diff --git a/games-engines/frotz/frotz-2.50_beta2.ebuild b/games-engines/frotz/frotz-2.50_beta2.ebuild
27 index dda1c12531b..732495e1c96 100644
28 --- a/games-engines/frotz/frotz-2.50_beta2.ebuild
29 +++ b/games-engines/frotz/frotz-2.50_beta2.ebuild
30 @@ -20,13 +20,19 @@ REQUIRED_USE="sound? ( || ( ncurses sdl ) )"
31 DEPEND="
32 ncurses? (
33 sys-libs/ncurses:0=[unicode?]
34 - sound? ( media-libs/libao )
35 + sound? (
36 + media-libs/libao
37 + media-libs/libmodplug
38 + media-libs/libsamplerate[sndfile]
39 + media-libs/libsndfile[-minimal]
40 + media-libs/libvorbis
41 + )
42 )
43 sdl? (
44 media-libs/freetype:2
45 media-libs/libpng:0=
46 media-libs/libsdl2[sound,threads,video]
47 - media-libs/sdl2-mixer
48 + media-libs/sdl2-mixer[mod,vorbis,wav]
49 sys-libs/zlib
50 virtual/jpeg:0=
51 )