mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
alsa-utils: split the content into .inc
This allows including the .inc from alsa-utils-scripts which unbreaks automated version updates. Bump alsa-utils-scripts to 1.2.2 at the same time. (From OE-Core rev: d3d8500f828d28367c114cd1f72b26f9a28107ff) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a6a1ea59d2
commit
a6551b208e
@@ -1,4 +1,4 @@
|
||||
require alsa-utils_${PV}.bb
|
||||
require alsa-utils.inc
|
||||
|
||||
SUMMARY = "Shell scripts that show help info and create ALSA configuration files"
|
||||
PROVIDES = "alsa-utils-alsaconf"
|
||||
|
||||
@@ -0,0 +1,105 @@
|
||||
SUMMARY = "ALSA sound utilities"
|
||||
HOMEPAGE = "http://www.alsa-project.org"
|
||||
BUGTRACKER = "http://alsa-project.org/main/index.php/Bug_Tracking"
|
||||
SECTION = "console/utils"
|
||||
LICENSE = "GPLv2+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
|
||||
file://alsactl/utils.c;beginline=3;endline=18;md5=96cc06a4cebe5eb7975688ffb0e65642"
|
||||
DEPENDS = "alsa-lib ncurses libsamplerate0"
|
||||
|
||||
PACKAGECONFIG ??= "udev"
|
||||
|
||||
# alsabat can be built also without fftw support (with reduced functionality).
|
||||
# It would be better to always enable alsabat, but provide an option for
|
||||
# enabling/disabling fftw. The configure script doesn't support that, however
|
||||
# (at least in any obvious way), so for now we only support alsabat with fftw
|
||||
# or no alsabat at all.
|
||||
PACKAGECONFIG[bat] = "--enable-bat,--disable-bat,fftwf"
|
||||
|
||||
PACKAGECONFIG[udev] = "--with-udev-rules-dir=`pkg-config --variable=udevdir udev`/rules.d,--with-udev-rules-dir=/unwanted/rules.d,udev"
|
||||
PACKAGECONFIG[manpages] = "--enable-xmlto, --disable-xmlto, xmlto-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native"
|
||||
|
||||
# alsa-utils specified in SRC_URI due to alsa-utils-scripts recipe
|
||||
SRC_URI = "https://www.alsa-project.org/files/pub/utils/alsa-utils-${PV}.tar.bz2"
|
||||
SRC_URI[md5sum] = "00612234ff4722c8f7f8f7a83ff9bc63"
|
||||
SRC_URI[sha256sum] = "44807bd578c5f6df6e91a11b8d37e546424a5a1ea8d8e659ee359fe01730e4f3"
|
||||
|
||||
# On build machines with python-docutils (not python3-docutils !!) installed
|
||||
# rst2man (not rst2man.py) is detected and compile fails with
|
||||
# | make[1]: *** No rule to make target 'alsaucm.1', needed by 'all-am'. Stop.
|
||||
# Avoid this by disabling expicitly
|
||||
EXTRA_OECONF = "--disable-rst2man"
|
||||
|
||||
inherit autotools gettext pkgconfig manpages
|
||||
|
||||
# This are all packages that we need to make. Also, the now empty alsa-utils
|
||||
# ipk depends on them.
|
||||
|
||||
ALSA_UTILS_PKGS = "\
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'bat', 'alsa-utils-alsabat', '', d)} \
|
||||
alsa-utils-alsamixer \
|
||||
alsa-utils-alsatplg \
|
||||
alsa-utils-midi \
|
||||
alsa-utils-aplay \
|
||||
alsa-utils-amixer \
|
||||
alsa-utils-aconnect \
|
||||
alsa-utils-iecset \
|
||||
alsa-utils-speakertest \
|
||||
alsa-utils-aseqnet \
|
||||
alsa-utils-aseqdump \
|
||||
alsa-utils-alsactl \
|
||||
alsa-utils-alsaloop \
|
||||
alsa-utils-alsaucm \
|
||||
"
|
||||
|
||||
PACKAGES += "${ALSA_UTILS_PKGS}"
|
||||
RDEPENDS_${PN} += "${ALSA_UTILS_PKGS}"
|
||||
|
||||
FILES_${PN} = ""
|
||||
ALLOW_EMPTY_alsa-utils = "1"
|
||||
FILES_alsa-utils-alsabat = "${bindir}/alsabat"
|
||||
FILES_alsa-utils-alsatplg = "${bindir}/alsatplg"
|
||||
FILES_alsa-utils-aplay = "${bindir}/aplay ${bindir}/arecord ${bindir}/axfer"
|
||||
FILES_alsa-utils-amixer = "${bindir}/amixer"
|
||||
FILES_alsa-utils-alsamixer = "${bindir}/alsamixer"
|
||||
FILES_alsa-utils-speakertest = "${bindir}/speaker-test ${datadir}/sounds/alsa/ ${datadir}/alsa/speaker-test/"
|
||||
FILES_alsa-utils-midi = "${bindir}/aplaymidi ${bindir}/arecordmidi ${bindir}/amidi"
|
||||
FILES_alsa-utils-aconnect = "${bindir}/aconnect"
|
||||
FILES_alsa-utils-aseqnet = "${bindir}/aseqnet"
|
||||
FILES_alsa-utils-iecset = "${bindir}/iecset"
|
||||
FILES_alsa-utils-alsactl = "${sbindir}/alsactl */udev/rules.d/90-alsa-restore.rules */*/udev/rules.d/90-alsa-restore.rules ${systemd_unitdir} ${localstatedir}/lib/alsa ${datadir}/alsa/init/"
|
||||
FILES_alsa-utils-aseqdump = "${bindir}/aseqdump"
|
||||
FILES_alsa-utils-alsaloop = "${bindir}/alsaloop"
|
||||
FILES_alsa-utils-alsaucm = "${bindir}/alsaucm */udev/rules.d/89-alsa-ucm.rules */*/udev/rules.d/89-alsa-ucm.rules"
|
||||
|
||||
SUMMARY_alsa-utils-alsabat = "Command-line sound tester for ALSA sound card driver"
|
||||
SUMMARY_alsa-utils-alsatplg = "Converts topology text files into binary format for kernel"
|
||||
SUMMARY_alsa-utils-aplay = "Play (and record) sound files using ALSA"
|
||||
SUMMARY_alsa-utils-amixer = "Command-line control for ALSA mixer and settings"
|
||||
SUMMARY_alsa-utils-alsamixer = "ncurses-based control for ALSA mixer and settings"
|
||||
SUMMARY_alsa-utils-speakertest = "ALSA surround speaker test utility"
|
||||
SUMMARY_alsa-utils-midi = "Miscellaneous MIDI utilities for ALSA"
|
||||
SUMMARY_alsa-utils-aconnect = "ALSA sequencer connection manager"
|
||||
SUMMARY_alsa-utils-aseqnet = "Network client/server for ALSA sequencer"
|
||||
SUMMARY_alsa-utils-iecset = "ALSA utility for setting/showing IEC958 (S/PDIF) status bits"
|
||||
SUMMARY_alsa-utils-alsactl = "Saves/restores ALSA-settings in /etc/asound.state"
|
||||
SUMMARY_alsa-utils-aseqdump = "Shows the events received at an ALSA sequencer port"
|
||||
SUMMARY_alsa-utils-alsaloop = "ALSA PCM loopback utility"
|
||||
SUMMARY_alsa-utils-alsaucm = "ALSA Use Case Manager"
|
||||
|
||||
RRECOMMENDS_alsa-utils-alsactl = "alsa-states"
|
||||
|
||||
do_install() {
|
||||
autotools_do_install
|
||||
|
||||
# We don't ship this here because it requires a dependency on bash.
|
||||
# See alsa-utils-scripts_${PV}.bb
|
||||
rm ${D}${sbindir}/alsaconf
|
||||
rm ${D}${sbindir}/alsa-info.sh
|
||||
rm -f ${D}${sbindir}/alsabat-test.sh
|
||||
|
||||
# If udev is disabled, we told configure to install the rules
|
||||
# in /unwanted, so we can remove them now. If udev is enabled,
|
||||
# then /unwanted won't exist and this will have no effect.
|
||||
rm -rf ${D}/unwanted
|
||||
}
|
||||
@@ -1,105 +1 @@
|
||||
SUMMARY = "ALSA sound utilities"
|
||||
HOMEPAGE = "http://www.alsa-project.org"
|
||||
BUGTRACKER = "http://alsa-project.org/main/index.php/Bug_Tracking"
|
||||
SECTION = "console/utils"
|
||||
LICENSE = "GPLv2+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
|
||||
file://alsactl/utils.c;beginline=3;endline=18;md5=96cc06a4cebe5eb7975688ffb0e65642"
|
||||
DEPENDS = "alsa-lib ncurses libsamplerate0"
|
||||
|
||||
PACKAGECONFIG ??= "udev"
|
||||
|
||||
# alsabat can be built also without fftw support (with reduced functionality).
|
||||
# It would be better to always enable alsabat, but provide an option for
|
||||
# enabling/disabling fftw. The configure script doesn't support that, however
|
||||
# (at least in any obvious way), so for now we only support alsabat with fftw
|
||||
# or no alsabat at all.
|
||||
PACKAGECONFIG[bat] = "--enable-bat,--disable-bat,fftwf"
|
||||
|
||||
PACKAGECONFIG[udev] = "--with-udev-rules-dir=`pkg-config --variable=udevdir udev`/rules.d,--with-udev-rules-dir=/unwanted/rules.d,udev"
|
||||
PACKAGECONFIG[manpages] = "--enable-xmlto, --disable-xmlto, xmlto-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native"
|
||||
|
||||
# alsa-utils specified in SRC_URI due to alsa-utils-scripts recipe
|
||||
SRC_URI = "https://www.alsa-project.org/files/pub/utils/alsa-utils-${PV}.tar.bz2"
|
||||
SRC_URI[md5sum] = "00612234ff4722c8f7f8f7a83ff9bc63"
|
||||
SRC_URI[sha256sum] = "44807bd578c5f6df6e91a11b8d37e546424a5a1ea8d8e659ee359fe01730e4f3"
|
||||
|
||||
# On build machines with python-docutils (not python3-docutils !!) installed
|
||||
# rst2man (not rst2man.py) is detected and compile fails with
|
||||
# | make[1]: *** No rule to make target 'alsaucm.1', needed by 'all-am'. Stop.
|
||||
# Avoid this by disabling expicitly
|
||||
EXTRA_OECONF = "--disable-rst2man"
|
||||
|
||||
inherit autotools gettext pkgconfig manpages
|
||||
|
||||
# This are all packages that we need to make. Also, the now empty alsa-utils
|
||||
# ipk depends on them.
|
||||
|
||||
ALSA_UTILS_PKGS = "\
|
||||
${@bb.utils.contains('PACKAGECONFIG', 'bat', 'alsa-utils-alsabat', '', d)} \
|
||||
alsa-utils-alsamixer \
|
||||
alsa-utils-alsatplg \
|
||||
alsa-utils-midi \
|
||||
alsa-utils-aplay \
|
||||
alsa-utils-amixer \
|
||||
alsa-utils-aconnect \
|
||||
alsa-utils-iecset \
|
||||
alsa-utils-speakertest \
|
||||
alsa-utils-aseqnet \
|
||||
alsa-utils-aseqdump \
|
||||
alsa-utils-alsactl \
|
||||
alsa-utils-alsaloop \
|
||||
alsa-utils-alsaucm \
|
||||
"
|
||||
|
||||
PACKAGES += "${ALSA_UTILS_PKGS}"
|
||||
RDEPENDS_${PN} += "${ALSA_UTILS_PKGS}"
|
||||
|
||||
FILES_${PN} = ""
|
||||
ALLOW_EMPTY_alsa-utils = "1"
|
||||
FILES_alsa-utils-alsabat = "${bindir}/alsabat"
|
||||
FILES_alsa-utils-alsatplg = "${bindir}/alsatplg"
|
||||
FILES_alsa-utils-aplay = "${bindir}/aplay ${bindir}/arecord ${bindir}/axfer"
|
||||
FILES_alsa-utils-amixer = "${bindir}/amixer"
|
||||
FILES_alsa-utils-alsamixer = "${bindir}/alsamixer"
|
||||
FILES_alsa-utils-speakertest = "${bindir}/speaker-test ${datadir}/sounds/alsa/ ${datadir}/alsa/speaker-test/"
|
||||
FILES_alsa-utils-midi = "${bindir}/aplaymidi ${bindir}/arecordmidi ${bindir}/amidi"
|
||||
FILES_alsa-utils-aconnect = "${bindir}/aconnect"
|
||||
FILES_alsa-utils-aseqnet = "${bindir}/aseqnet"
|
||||
FILES_alsa-utils-iecset = "${bindir}/iecset"
|
||||
FILES_alsa-utils-alsactl = "${sbindir}/alsactl */udev/rules.d/90-alsa-restore.rules */*/udev/rules.d/90-alsa-restore.rules ${systemd_unitdir} ${localstatedir}/lib/alsa ${datadir}/alsa/init/"
|
||||
FILES_alsa-utils-aseqdump = "${bindir}/aseqdump"
|
||||
FILES_alsa-utils-alsaloop = "${bindir}/alsaloop"
|
||||
FILES_alsa-utils-alsaucm = "${bindir}/alsaucm */udev/rules.d/89-alsa-ucm.rules */*/udev/rules.d/89-alsa-ucm.rules"
|
||||
|
||||
SUMMARY_alsa-utils-alsabat = "Command-line sound tester for ALSA sound card driver"
|
||||
SUMMARY_alsa-utils-alsatplg = "Converts topology text files into binary format for kernel"
|
||||
SUMMARY_alsa-utils-aplay = "Play (and record) sound files using ALSA"
|
||||
SUMMARY_alsa-utils-amixer = "Command-line control for ALSA mixer and settings"
|
||||
SUMMARY_alsa-utils-alsamixer = "ncurses-based control for ALSA mixer and settings"
|
||||
SUMMARY_alsa-utils-speakertest = "ALSA surround speaker test utility"
|
||||
SUMMARY_alsa-utils-midi = "Miscellaneous MIDI utilities for ALSA"
|
||||
SUMMARY_alsa-utils-aconnect = "ALSA sequencer connection manager"
|
||||
SUMMARY_alsa-utils-aseqnet = "Network client/server for ALSA sequencer"
|
||||
SUMMARY_alsa-utils-iecset = "ALSA utility for setting/showing IEC958 (S/PDIF) status bits"
|
||||
SUMMARY_alsa-utils-alsactl = "Saves/restores ALSA-settings in /etc/asound.state"
|
||||
SUMMARY_alsa-utils-aseqdump = "Shows the events received at an ALSA sequencer port"
|
||||
SUMMARY_alsa-utils-alsaloop = "ALSA PCM loopback utility"
|
||||
SUMMARY_alsa-utils-alsaucm = "ALSA Use Case Manager"
|
||||
|
||||
RRECOMMENDS_alsa-utils-alsactl = "alsa-states"
|
||||
|
||||
do_install() {
|
||||
autotools_do_install
|
||||
|
||||
# We don't ship this here because it requires a dependency on bash.
|
||||
# See alsa-utils-scripts_${PV}.bb
|
||||
rm ${D}${sbindir}/alsaconf
|
||||
rm ${D}${sbindir}/alsa-info.sh
|
||||
rm -f ${D}${sbindir}/alsabat-test.sh
|
||||
|
||||
# If udev is disabled, we told configure to install the rules
|
||||
# in /unwanted, so we can remove them now. If udev is enabled,
|
||||
# then /unwanted won't exist and this will have no effect.
|
||||
rm -rf ${D}/unwanted
|
||||
}
|
||||
require alsa-utils.inc
|
||||
|
||||
Reference in New Issue
Block a user