diff options
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-tools/makefile_no_gtk.patch | 21 | ||||
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb | 8 |
2 files changed, 27 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-tools/makefile_no_gtk.patch b/meta/recipes-multimedia/alsa/alsa-tools/makefile_no_gtk.patch new file mode 100644 index 0000000000..51f934d8f6 --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-tools/makefile_no_gtk.patch | |||
@@ -0,0 +1,21 @@ | |||
1 | Remove some sub-components which need gtk+. | ||
2 | |||
3 | Signed-off-by: Rogerio Nunes <ronunes@gmail.com> | ||
4 | |||
5 | Upstream-Status: Inappropriate [configuration] | ||
6 | |||
7 | diff --git a/Makefile b/Makefile | ||
8 | --- a/Makefile | ||
9 | +++ b/Makefile | ||
10 | @@ -1,8 +1,8 @@ | ||
11 | VERSION = 1.0.26.1 | ||
12 | TOP = . | ||
13 | -SUBDIRS = ac3dec as10k1 envy24control \ | ||
14 | - mixartloader pcxhrloader rmedigicontrol sb16_csp seq sscape_ctl \ | ||
15 | - us428control usx2yloader vxloader echomixer \ | ||
16 | +SUBDIRS = ac3dec as10k1 \ | ||
17 | + mixartloader pcxhrloader sb16_csp seq sscape_ctl \ | ||
18 | + us428control usx2yloader vxloader \ | ||
19 | hwmixvolume hda-verb | ||
20 | |||
21 | all: | ||
diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb index 2b46aaffdd..81ad55acd3 100644 --- a/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb +++ b/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb | |||
@@ -5,14 +5,15 @@ SECTION = "console/utils" | |||
5 | LICENSE = "GPLv2 & LGPLv2+" | 5 | LICENSE = "GPLv2 & LGPLv2+" |
6 | DEPENDS = "alsa-lib ncurses" | 6 | DEPENDS = "alsa-lib ncurses" |
7 | 7 | ||
8 | PR = "r0" | 8 | PR = "r1" |
9 | 9 | ||
10 | LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | 10 | LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ |
11 | file://ld10k1/COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34" | 11 | file://ld10k1/COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34" |
12 | 12 | ||
13 | SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2 \ | 13 | SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2 \ |
14 | file://mips_has_no_io_h.patch \ | 14 | file://mips_has_no_io_h.patch \ |
15 | file://autotools.patch" | 15 | file://autotools.patch \ |
16 | ${@base_contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)}" | ||
16 | 17 | ||
17 | SRC_URI[md5sum] = "805526ea5d6c40e1f2c94cee86141230" | 18 | SRC_URI[md5sum] = "805526ea5d6c40e1f2c94cee86141230" |
18 | SRC_URI[sha256sum] = "553338693707fe6ddfc430b9edc4cd2677390e200c9e38de82ede3394e733841" | 19 | SRC_URI[sha256sum] = "553338693707fe6ddfc430b9edc4cd2677390e200c9e38de82ede3394e733841" |
@@ -21,6 +22,9 @@ inherit autotools | |||
21 | 22 | ||
22 | EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}' ACLOCAL_FLAGS='-I ${STAGING_DATADIR}/aclocal'" | 23 | EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}' ACLOCAL_FLAGS='-I ${STAGING_DATADIR}/aclocal'" |
23 | 24 | ||
25 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}" | ||
26 | PACKAGECONFIG[gtk+] = ",,gtk+," | ||
27 | |||
24 | do_compile_prepend () { | 28 | do_compile_prepend () { |
25 | #Automake dir is not correctly detected in cross compilation case | 29 | #Automake dir is not correctly detected in cross compilation case |
26 | export AUTOMAKE_DIR=${STAGING_DATADIR_NATIVE}/$(ls ${STAGING_DATADIR_NATIVE} | grep automake) | 30 | export AUTOMAKE_DIR=${STAGING_DATADIR_NATIVE}/$(ls ${STAGING_DATADIR_NATIVE} | grep automake) |