summaryrefslogtreecommitdiffstats
path: root/package/alsa-utils/alsa-utils.mk
Commit message (Collapse)AuthorAgeFilesLines
* package/alsa-utils: Add option for alsaloop utilBernd Kuhls2016-01-181-1/+9
| | | | | | | | | Add libsamplerate as optional dependency, see alsa-utils-1.1.0/alsaloop/Makefile.am [Peter: move libsamplerate dependency outside alsaloop conditional] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* alsa-utils: allow installing the new alsatplg toolThomas Petazzoni2016-01-161-0/+1
| | | | | | | Since we now depend on !BR2_STATIC_LIBS to be able to build the alsatplg tool, it makes sense to provide an option to install it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* alsa-utils: bump to version 1.1.0Gustavo Zacarias2015-11-111-1/+9
| | | | | | | Also add BAT (Basic Audio Testing) tool option. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* alsa-utils: add option to install alsaucmPeter Korsgaard2015-04-211-0/+1
| | | | | | alsaucm is the alsa use case manager configuration tool. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* alsa-utils: bump to version 1.0.29Gustavo Zacarias2015-03-031-1/+1
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* alsa-utils: remove -ldl in static buildsBaruch Siach2015-01-271-0/+4
| | | | | | | | | | | | | | | | | | | Since commit ffd7a00aef723 (alsa-lib: add patch to remove hardcoded -ldl) we patch alsa.m4 from alsa-lib to remove -ldl on static builds. Autoreconf alsa-utils to regenerate aclocal.m4 using our alsa.m4 so we don't end up linking the utilities against -ldl if not needed/available. We also need to gettextize alsa-utils because we use a more recent gettext version. Fixes: http://autobuild.buildroot.net/results/314/314dac9f5e62ae9beb598eb1b4cb35c0a7bfe792/ http://autobuild.buildroot.net/results/964/964e44f0c1653370600c7e8c647abda3f6380e34/ http://autobuild.buildroot.net/results/d72/d72f31bab907c7485d03db4597d01fd759277db4/ ... Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* alsa-utils: add error handling to for loopThomas Petazzoni2014-12-011-1/+1
| | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* alsa-utils: fix linking with intlVicente Olivert Riera2014-11-111-5/+5
| | | | | | | | | | | | | | | | | | | | alsa-utils needs to link with intl if the toolchain needs gettext and locale is set. Otherwise we will see an error like this one: alsamixer-cli.o: In function `main': cli.c:(.text.startup+0x4d): undefined reference to `libintl_textdomain' cli.c:(.text.startup+0xc1): undefined reference to `libintl_gettext' cli.c:(.text.startup+0xd5): undefined reference to `libintl_gettext' cli.c:(.text.startup+0xe9): undefined reference to `libintl_gettext' cli.c:(.text.startup+0x1fd): undefined reference to `libintl_gettext' cli.c:(.text.startup+0x223): undefined reference to `libintl_gettext' Fixes: http://autobuild.buildroot.net/results/707/707016a2490fc97b98d17e2b6a9c6423a56bb4a9/ [Peter: correct autobuilder reference] Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/alsa-utils: optionally depends on gettextBernd Kuhls2014-10-261-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To get a reproducable build add optional gettext dependency. - Configure log without gettext checking for GNU gettext in libc... no checking for iconv... yes checking for working iconv... guessing yes checking for GNU gettext in libintl... no checking whether to use NLS... no - Configure log with gettext built before alsa-utils checking for GNU gettext in libc... no checking for iconv... yes checking for working iconv... guessing yes checking for GNU gettext in libintl... yes checking whether to use NLS... yes checking where the gettext function comes from... external libintl checking how to link with libintl... -lintl Tested using this defconfig BR2_TOOLCHAIN_BUILDROOT_LARGEFILE=y BR2_TOOLCHAIN_BUILDROOT_INET_IPV6=y BR2_TOOLCHAIN_BUILDROOT_INET_RPC=y BR2_TOOLCHAIN_BUILDROOT_LOCALE=y BR2_PACKAGE_ALSA_UTILS=y BR2_PACKAGE_ALSA_UTILS_ALSACONF=y BR2_PACKAGE_ALSA_UTILS_AMIDI=y BR2_PACKAGE_ALSA_UTILS_AMIXER=y BR2_PACKAGE_ALSA_UTILS_APLAY=y BR2_PACKAGE_ALSA_UTILS_IECSET=y BR2_PACKAGE_ALSA_UTILS_ACONNECT=y BR2_PACKAGE_ALSA_UTILS_APLAYMIDI=y BR2_PACKAGE_ALSA_UTILS_ARECORDMIDI=y BR2_PACKAGE_ALSA_UTILS_ASEQDUMP=y BR2_PACKAGE_ALSA_UTILS_ASEQNET=y BR2_PACKAGE_ALSA_UTILS_SPEAKER_TEST=y BR2_PACKAGE_NCURSES_WCHAR=y [Thomas: - it's not only alsamixer, but also several other alsa-utils utilities, like aplay or arecord, which optionally depend on gettext. Therefore, the patch was changed to have the optional gettext dependency apply to the entire package. - in addition, we don't need gettext when locales are enabled: alsa-utils builds perfectly fine with a toolchain having locales enabled even without gettext. So all we really want is to have gettext built before alsa-utils, if gettext is enabled.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/alsa-utils: Switch ALSA_UTILS_SITE to official siteBernd Kuhls2014-10-191-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: rename FOO_CONF_OPT into FOO_CONF_OPTSThomas De Schampheleire2014-10-041-2/+2
| | | | | | | | | | | | To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* alsa-utils: fixup ncurses config scriptGustavo Zacarias2014-09-181-2/+2
| | | | | | | | | | Point the build to the proper (which BTW was broken since it pointed to the wrong directory) ncurses config by using $(NCURSES_CONFIG_SCRIPTS) from the ncurses package directly. Also select the proper variant (widec/non-widec) in configure. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* alsa-utils: bump to version 1.0.28Gustavo Zacarias2014-06-291-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: replace command install by $(INSTALL)Maxime Hadjinlian2014-06-081-1/+1
| | | | | | Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: remove uninstall commandsThomas De Schampheleire2013-12-061-4/+0
| | | | | Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* alsa-utils: add dependency on host-pkgconfSven Neumann2013-12-041-1/+1
| | | | | | | | The alsa-utils configure script will use pkg-config if available, so make sure that it is available. Signed-off-by: Sven Neumann <neumann@teufel.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Remove multimedia subdirectoryJérôme Pouiller2013-09-081-0/+63
| | | | | | | | | | | Unless it was a group of sub-packages, packages was never regrouped by category. multimedia/ was an exception to this rule. This patch move packages/multimedia/ sub-directories to packages/. It keeps two subdirectories for gstream 0.10 and gstreamer 1.X. Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* audio: Move all audio packages into audio subdirDaniel Laird2008-09-051-96/+0
| | | | | | | | Moved all audio packages into a subdir called audio. I then created a Config.in and made sure that a audio.mk existed. Daniel Laird
* buildroot: add missing -source targetsPeter Korsgaard2008-02-191-0/+2
|
* - make sure that configure doesn't see a wrong cacheBernhard Reutner-Fischer2007-09-251-1/+1
|
* - global whitespace trimmingBernhard Reutner-Fischer2007-08-221-14/+14
|
* - semicolon touchup. No other changesBernhard Reutner-Fischer2007-08-221-4/+4
|
* - sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer2007-08-211-2/+2
| | | | toolchain/*/*.mk */Makefile.in -l)
* cleanup alsa-utilsUlf Samuelsson2007-07-231-11/+12
|
* Add alsa-utils packageUlf Samuelsson2007-07-231-0/+93
OpenPOWER on IntegriCloud