summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2019-10-26 14:26:28 +0100
committerJames Le Cuirot <chewi@gentoo.org>2019-10-26 14:26:28 +0100
commit6b6198cf83601088066cac51751ba046820236c3 (patch)
treec5f0ee17236661e8d655aea9a21cc20083b49464 /games-engines
parentgames-engines/frotz: Version bump to 2.50_beta2 (diff)
downloadgentoo-6b6198cf83601088066cac51751ba046820236c3.tar.gz
gentoo-6b6198cf83601088066cac51751ba046820236c3.tar.bz2
gentoo-6b6198cf83601088066cac51751ba046820236c3.zip
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 <chewi@gentoo.org>
Diffstat (limited to 'games-engines')
-rw-r--r--games-engines/frotz/frotz-2.50_beta2.ebuild10
1 files 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 dda1c12531bd..732495e1c963 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=
)