diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2018-02-18 14:28:08 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-02-18 15:35:22 +0100 |
commit | d6a2771f2db6112320635e3f270b087179b173e1 (patch) | |
tree | 52c440f960a89222094a5c8dea21b491b97ad83e /media-plugins/alsa-plugins/files | |
parent | dev-python/funcsigs: add ~amd64-fbsd keyword. (diff) | |
download | gentoo-d6a2771f2db6112320635e3f270b087179b173e1.tar.gz gentoo-d6a2771f2db6112320635e3f270b087179b173e1.tar.bz2 gentoo-d6a2771f2db6112320635e3f270b087179b173e1.zip |
media-plugins/alsa-plugins: Revbump to add a couple of USE flags.
Added the following list of USE flags:
- arcam_av: control plugin for ARCAM AV receiver
- mix: upmix and vdownmix plugins
- oss: OSS plugin
- usb_stream: usb stream plugin
The speex USE flag now also controls the speexdsp configure flag.
Closes: https://bugs.gentoo.org/630856
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'media-plugins/alsa-plugins/files')
-rw-r--r-- | media-plugins/alsa-plugins/files/alsa-plugins-1.1.5-optional_plugins.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/media-plugins/alsa-plugins/files/alsa-plugins-1.1.5-optional_plugins.patch b/media-plugins/alsa-plugins/files/alsa-plugins-1.1.5-optional_plugins.patch new file mode 100644 index 000000000000..3ede79860f6c --- /dev/null +++ b/media-plugins/alsa-plugins/files/alsa-plugins-1.1.5-optional_plugins.patch @@ -0,0 +1,30 @@ +Alsa upstream added a couple of configure options to disable some plugins but +forgot to reflect these changes in Makefile.am. + +--- alsa-plugins-1.1.5/Makefile.am ++++ alsa-plugins-1.1.5/Makefile.am +@@ -1,4 +1,4 @@ +-SUBDIRS = oss mix usb_stream arcam-av doc ++SUBDIRS = doc + if HAVE_JACK + SUBDIRS += jack + endif +@@ -20,6 +20,18 @@ + if HAVE_SPEEXDSP + SUBDIRS += speex + endif ++if HAVE_OSS ++SUBDIRS += oss ++endif ++if HAVE_MIX ++SUBDIRS += mix ++endif ++if HAVE_USBSTREAM ++SUBDIRS += usb_stream ++endif ++if HAVE_ARCAMAV ++SUBDIRS += arcam-av ++endif + + EXTRA_DIST = gitcompile version COPYING.GPL m4/attributes.m4 + AUTOMAKE_OPTIONS = foreign |