diff --git a/recipes-misc/recipes-multimedia/rncbc/padthv1/0002-Build-against-fftw3f-that-supports-NEON-on-ARM.patch b/recipes-misc/recipes-multimedia/rncbc/padthv1/0001-Build-against-fftw3f-that-supports-NEON-on-ARM.patch similarity index 100% rename from recipes-misc/recipes-multimedia/rncbc/padthv1/0002-Build-against-fftw3f-that-supports-NEON-on-ARM.patch rename to recipes-misc/recipes-multimedia/rncbc/padthv1/0001-Build-against-fftw3f-that-supports-NEON-on-ARM.patch diff --git a/recipes-misc/recipes-multimedia/rncbc/padthv1/0001-find-native-qt-build-tools-by-configure-options-auto.patch b/recipes-misc/recipes-multimedia/rncbc/padthv1/0001-find-native-qt-build-tools-by-configure-options-auto.patch deleted file mode 100644 index f2666633..00000000 --- a/recipes-misc/recipes-multimedia/rncbc/padthv1/0001-find-native-qt-build-tools-by-configure-options-auto.patch +++ /dev/null @@ -1,129 +0,0 @@ -From f9970bc20b4ceb864c98a3d5550c27500db60520 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Sat, 26 Nov 2016 00:46:10 +0100 -Subject: [PATCH] find native qt build tools by configure options - auto - detection does not work -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Upstream-Status: Inappropriate [cross specific] - -Signed-off-by: Andreas Müller ---- - configure.ac | 66 +++++++++++++++--------------------------------------------- - 1 file changed, 16 insertions(+), 50 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 05c7eb3..753908c 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -258,18 +258,10 @@ done - # A common error message: - ac_errmsg="not found in current PATH. Maybe QT development environment isn't available." - --if test "x$ac_qt4" = "xyes"; then -- AC_PATH_PROG(ac_qmake, qmake-qt4, [no], $ac_path) --else -- AC_PATH_PROG(ac_qmake, qmake-qt5, [no], $ac_path) --fi --if test "x$ac_qmake" = "xno"; then -- AC_PATH_PROG(ac_cv_qmake, qmake, [no], $ac_path) -- ac_qmake=$ac_cv_qmake --fi --if test "x$ac_qmake" = "xno"; then -- AC_MSG_ERROR([qmake $ac_errmsg]) --fi -+AC_ARG_WITH(qmake, -+ AC_HELP_STRING([--with-qmake=PATH], [use alternate qmake path]), -+ [ac_qmake="$withval"], [ac_qmake="no"]) -+ - - # Check for proper Qt major version. - AC_CACHE_CHECK([for Qt major version], [ac_cv_qt_version_major], [ -@@ -296,13 +288,6 @@ if test -d $ac_qt_install_path; then - ac_path="$ac_qt_install_path:$ac_path" - fi - --# Check it again, now with updated PATH, just in case... --AC_PATH_PROG(ac_cv_qmake, qmake, [no], $ac_path) --ac_qmake=$ac_cv_qmake --if test "x$ac_qmake" = "xno"; then -- AC_MSG_ERROR([qmake $ac_errmsg]) --fi -- - AC_SUBST(ac_qmake) - - AC_CACHE_CHECK([for Qt install headers], [ac_cv_qt_install_headers], [ -@@ -324,56 +309,37 @@ if test -d $ac_qt_install_libs; then - ac_libs="-L$ac_qt_install_libs $ac_libs" - fi - --# Finally, check for proper Qt4/5 version. --if test "x$ac_qt4" = "xyes"; then -- AC_CACHE_CHECK([for Qt library version >= 4.4], -- ac_cv_qtversion, [ -- AC_TRY_COMPILE([#include "QtCore/qglobal.h"], [ -- #if QT_VERSION < 0x040400 || QT_VERSION >= 0x050000 -- #error Qt library 4.4 or greater required. -- #endif -- ], ac_cv_qtversion="yes", [ -- echo "no; Qt 4.4 or greater is required" -- exit 1 -- ]) -- ]) --else -- AC_CACHE_CHECK([for Qt library version >= 5.1], -- ac_cv_qtversion, [ -- AC_TRY_COMPILE([#include "QtCore/qglobal.h"], [ -- #if QT_VERSION < 0x050100 || QT_VERSION >= 0x060000 -- #error Qt library 5.1 or greater required. -- #endif -- ], ac_cv_qtversion="yes", [ -- echo "no; Qt 5.1 or greater is required" -- exit 1 -- ]) -- ]) --fi -- - # Check for Qt moc utility. --AC_PATH_PROG(ac_moc, moc, [no], $ac_path) -+AC_ARG_WITH(moc, -+ AC_HELP_STRING([--with-moc=PATH], [use alternate moc path]), -+ [ac_moc="$withval"], [ac_moc="no"]) - if test "x$ac_moc" = "xno"; then - AC_MSG_ERROR([moc $ac_errmsg]) - fi - AC_SUBST(ac_moc) - - # Check for Qt uic utility. --AC_PATH_PROG(ac_uic, uic, [no], $ac_path) -+AC_ARG_WITH(uic, -+ AC_HELP_STRING([--with-uic=PATH], [use alternate uic path]), -+ [ac_uic="$withval"], [ac_uic="no"]) - if test "x$ac_uic" = "xno"; then - AC_MSG_ERROR([uic $ac_errmsg]) - fi - AC_SUBST(ac_uic) - - # Check for Qt lupdate utility. --AC_PATH_PROG(ac_lupdate, lupdate, [no], $ac_path) -+AC_ARG_WITH(lupdate, -+ AC_HELP_STRING([--with-lupdate=PATH], [use alternate lupdate path]), -+ [ac_lupdate="$withval"], [ac_lupdate="no"]) - if test "x$ac_lupdate" = "xno"; then - AC_MSG_ERROR([lupdate $ac_errmsg]) - fi - AC_SUBST(ac_lupdate) - - # Check for Qt lrelease utility. --AC_PATH_PROG(ac_lrelease, lrelease, [no], $ac_path) -+AC_ARG_WITH(lrelease, -+ AC_HELP_STRING([--with-lrelease=PATH], [use alternate lrelease path]), -+ [ac_lrelease="$withval"], [ac_lrelease="no"]) - if test "x$ac_release" = "xno"; then - AC_MSG_ERROR([lrelease $ac_errmsg]) - fi --- -2.5.5 - diff --git a/recipes-misc/recipes-multimedia/rncbc/padthv1_0.8.6.bb b/recipes-misc/recipes-multimedia/rncbc/padthv1_0.9.0.bb similarity index 90% rename from recipes-misc/recipes-multimedia/rncbc/padthv1_0.8.6.bb rename to recipes-misc/recipes-multimedia/rncbc/padthv1_0.9.0.bb index b78ca50b..9ab5e329 100644 --- a/recipes-misc/recipes-multimedia/rncbc/padthv1_0.8.6.bb +++ b/recipes-misc/recipes-multimedia/rncbc/padthv1_0.9.0.bb @@ -15,17 +15,18 @@ DEPENDS += " \ inherit qmake5_base autotools-brokensep pkgconfig gtk-icon-cache mime # fftwf is neon accelerated -> force SINGLE precision -FFTWSINGLEPATCH = "${@bb.utils.contains('TUNE_FEATURES', 'neon', 'file://0002-Build-against-fftw3f-that-supports-NEON-on-ARM.patch', '', d)}" +FFTWSINGLEPATCH = "${@bb.utils.contains('TUNE_FEATURES', 'neon', 'file://0001-Build-against-fftw3f-that-supports-NEON-on-ARM.patch', '', d)}" SRC_URI = " \ ${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${PV}/${BPN}-${PV}.tar.gz \ http://linuxsynths.com/Padthv1PatchesDemos/Padthv1Patches.tar.gz;name=linuxsynths-padthv1-presets;subdir=linuxsynths-padthv1-presets \ file://0001-find-native-qt-build-tools-by-configure-options-auto.patch \ + \ ${FFTWSINGLEPATCH} \ file://padthv1.conf \ " -SRC_URI[md5sum] = "a601c57ee03a7d12cfb128da6040fc43" -SRC_URI[sha256sum] = "b87348a050efbfa2007c9a1604c83c650f97435d7a5cfb9c0eb8d8e4c45233d6" +SRC_URI[md5sum] = "ca7d8c0444f20d1170f838baef7a924f" +SRC_URI[sha256sum] = "706b6f91dbd65e1da870ab77ab69118b64dbce7598fbe4f043b38127264ea130" SRC_URI[linuxsynths-padthv1-presets.md5sum] = "951484ad2fe404d233a704d444147827" SRC_URI[linuxsynths-padthv1-presets.sha256sum] = "ad9eadc707784b6931955b1fc63308b9e5dc59d24903e6405e9d34d30794fd0b"