diff options
author | nia <nia@pkgsrc.org> | 2020-01-20 21:54:00 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2020-01-20 21:54:00 +0000 |
commit | 6e3e91dc62efefe2f7fcfbc2063889c9737a11c8 (patch) | |
tree | 419fc47f1340065bf2fdcfb662de8d8cb8c8926e /wm | |
parent | 09a1b0c37bf9bc15bc4e3f01d2336c23e04c3733 (diff) | |
download | pkgsrc-6e3e91dc62efefe2f7fcfbc2063889c9737a11c8.tar.gz |
*: Remove esound support from pkgsrc
Enlightened Sound Daemon was one of the earlier solutions to the old
"multiple programs can't open /dev/audio at once" problem that was once
a thing we had to worry about.
Eventually, it was adopted as part of GNOME. GNOME lost interest in it
about a decade ago and dropped it in favour of PulseAudio, newer
applications are generally uninterested in supporting it. Last release
was in 2008 and support for newer OS APIs is pretty nonexistent.
Several years ago the original website disappeared.
https://en.wikipedia.org/wiki/Enlightened_Sound_Daemon
https://tracker.debian.org/news/999428/removed-0241-11-from-unstable/
Diffstat (limited to 'wm')
-rw-r--r-- | wm/enlightenment16/options.mk | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/wm/enlightenment16/options.mk b/wm/enlightenment16/options.mk index 49c0cd097d3..7b6bda28137 100644 --- a/wm/enlightenment16/options.mk +++ b/wm/enlightenment16/options.mk @@ -1,12 +1,9 @@ -# $NetBSD: options.mk,v 1.1 2019/12/30 03:50:06 gutteridge Exp $ +# $NetBSD: options.mk,v 1.2 2020/01/20 21:54:03 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.enlightenment16 -PKG_OPTIONS_OPTIONAL_GROUPS= sound -PKG_OPTIONS_GROUP.sound= pulseaudio esound - -PKG_SUPPORTED_OPTIONS= pango vera-ttf -PKG_SUGGESTED_OPTIONS= pango esound vera-ttf +PKG_SUPPORTED_OPTIONS= pango pulseaudio vera-ttf +PKG_SUGGESTED_OPTIONS= pango pulseaudio vera-ttf .include "../../mk/bsd.options.mk" @@ -22,11 +19,6 @@ CONFIGURE_ARGS+= --enable-sound=pulseaudio CONFIGURE_ARGS+= --with-sndldr=sndfile .include "../../audio/libsndfile/buildlink3.mk" .include "../../audio/pulseaudio/buildlink3.mk" -.elif !empty(PKG_OPTIONS:Mesound) -CONFIGURE_ARGS+= --enable-sound=esound -CONFIGURE_ARGS+= --with-sndldr=audiofile -.include "../../audio/libaudiofile/buildlink3.mk" -.include "../../audio/esound/buildlink3.mk" .else CONFIGURE_ARGS+= --enable-sound=no CONFIGURE_ARGS+= --with-sndldr=none |