mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
29
package/qwt/Config.in
Normal file
29
package/qwt/Config.in
Normal file
@@ -0,0 +1,29 @@
|
||||
config BR2_PACKAGE_QWT
|
||||
bool "qwt"
|
||||
depends on BR2_PACKAGE_QT5
|
||||
select BR2_PACKAGE_QT5BASE
|
||||
select BR2_PACKAGE_QT5BASE_GUI
|
||||
select BR2_PACKAGE_QT5BASE_WIDGETS # printsupport
|
||||
select BR2_PACKAGE_QT5BASE_CONCURRENT
|
||||
help
|
||||
Qwt is a graphics extension to the Qt GUI application
|
||||
framework. It provides a 2D plotting widget and more.
|
||||
|
||||
http://qwt.sourceforge.net/
|
||||
|
||||
if BR2_PACKAGE_QWT
|
||||
|
||||
config BR2_PACKAGE_QWT_SVG
|
||||
bool "SVG support"
|
||||
select BR2_PACKAGE_QT5SVG
|
||||
|
||||
config BR2_PACKAGE_QWT_MATHML
|
||||
bool "MathML support"
|
||||
|
||||
config BR2_PACKAGE_QWT_OPENGL
|
||||
bool "OpenGL support"
|
||||
depends on BR2_PACKAGE_QT5_GL_AVAILABLE
|
||||
select BR2_PACKAGE_QT5BASE_OPENGL
|
||||
select BR2_PACKAGE_QT5BASE_OPENGL_LIB
|
||||
|
||||
endif
|
||||
3
package/qwt/qwt.hash
Normal file
3
package/qwt/qwt.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# From https://sourceforge.net/projects/qwt/files/qwt/6.1.3/
|
||||
sha1 90ec21bc42f7fae270482e1a0df3bc79cb10e5c7 qwt-6.1.3.tar.bz2
|
||||
md5 19d1f5fa5e22054d22ee3accc37c54ba qwt-6.1.3.tar.bz2
|
||||
67
package/qwt/qwt.mk
Normal file
67
package/qwt/qwt.mk
Normal file
@@ -0,0 +1,67 @@
|
||||
################################################################################
|
||||
#
|
||||
# qwt
|
||||
#
|
||||
################################################################################
|
||||
|
||||
QWT_VERSION = 6.1.3
|
||||
QWT_SOURCE = qwt-$(QWT_VERSION).tar.bz2
|
||||
QWT_SITE = http://downloads.sourceforge.net/project/qwt/qwt/$(QWT_VERSION)
|
||||
QWT_INSTALL_STAGING = YES
|
||||
QWT_DEPENDENCIES = qt5base
|
||||
|
||||
QWT_LICENSE = LGPL-2.1 with exceptions
|
||||
QWT_LICENSE_FILES = COPYING
|
||||
|
||||
QWT_CONFIG = 's%QWT_INSTALL_PREFIX.*/usr/local/.*%QWT_INSTALL_PREFIX = /usr%'
|
||||
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtDesigner.*$$/\# QWT_CONFIG += QwtDesigner/'
|
||||
QWT_CONFIG += -e 's%/features%/mkspecs/features%'
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QWT_SVG),y)
|
||||
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtSvg.*$$/QWT_CONFIG += QwtSvg/'
|
||||
else
|
||||
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtSvg.*$$/\# QWT_CONFIG += QwtSvg/'
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QWT_MATHML),y)
|
||||
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtMathML.*$$/QWT_CONFIG += QwtMathML/'
|
||||
else
|
||||
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtMathML.*$$/\# QWT_CONFIG += QwtMathML/'
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QWT_OPENGL),y)
|
||||
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtOpenGL.*$$/QWT_CONFIG += QwtOpenGL/'
|
||||
else
|
||||
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtOpenGL.*$$/\# QWT_CONFIG += QwtOpenGL/'
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtDll.*$$/\# QWT_CONFIG += QwtDll/'
|
||||
else
|
||||
QWT_CONFIG += -e 's/^.*QWT_CONFIG.*QwtDll.*$$/QWT_CONFIG += QwtDll/'
|
||||
endif
|
||||
|
||||
define QWT_CONFIGURE_CMDS
|
||||
$(SED) $(QWT_CONFIG) $(@D)/qwtconfig.pri
|
||||
(cd $(@D); $(TARGET_MAKE_ENV) $(QT5_QMAKE))
|
||||
endef
|
||||
|
||||
define QWT_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
||||
endef
|
||||
|
||||
# After installation, we fixup the INSTALL_PREFIX in qwtconfig.pri so
|
||||
# that when building with qmake, -L$(STAGING_DIR)/usr/lib is used and
|
||||
# not -L/usr/lib.
|
||||
define QWT_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install INSTALL_ROOT=$(STAGING_DIR)
|
||||
$(SED) "s%QWT_INSTALL_PREFIX = .*%QWT_INSTALL_PREFIX = $(STAGING_DIR)/usr%" \
|
||||
$(STAGING_DIR)/usr/mkspecs/features/qwtconfig.pri
|
||||
endef
|
||||
|
||||
define QWT_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install INSTALL_ROOT=$(TARGET_DIR)
|
||||
rm -Rf $(TARGET_DIR)/usr/mkspecs
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user