2016-04-13 15:40:35 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# qt5webkit
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-06-24 20:02:01 +02:00
|
|
|
QT5WEBKIT_VERSION = b889f460280ad98c89ede179bd3b9ce9cb02002b
|
2016-04-13 15:40:35 +02:00
|
|
|
# Using GitHub since it supports downloading tarballs from random commits.
|
|
|
|
# The http://code.qt.io/cgit/qt/qtwebkit.git/ repo doesn't allow to do so.
|
|
|
|
QT5WEBKIT_SITE = $(call github,qtproject,qtwebkit,$(QT5WEBKIT_VERSION))
|
2016-07-26 00:33:31 +02:00
|
|
|
QT5WEBKIT_DEPENDENCIES = \
|
|
|
|
host-bison host-flex host-gperf host-python host-ruby \
|
|
|
|
qt5base sqlite
|
2016-04-13 15:40:35 +02:00
|
|
|
QT5WEBKIT_INSTALL_STAGING = YES
|
|
|
|
|
|
|
|
QT5WEBKIT_LICENSE_FILES = Source/WebCore/LICENSE-LGPL-2 Source/WebCore/LICENSE-LGPL-2.1
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_LICENSE_APPROVED),y)
|
|
|
|
QT5WEBKIT_LICENSE = LGPLv2.1+, BSD-3c, BSD-2c
|
|
|
|
# Source files contain references to LGPL_EXCEPTION.txt but it is not included
|
|
|
|
# in the archive.
|
|
|
|
QT5WEBKIT_LICENSE_FILES += LICENSE.LGPLv21
|
|
|
|
else
|
|
|
|
QT5WEBKIT_LICENSE = LGPLv2.1+ (WebCore), Commercial license
|
|
|
|
QT5WEBKIT_REDISTRIBUTE = NO
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5BASE_XCB),y)
|
|
|
|
QT5WEBKIT_DEPENDENCIES += xlib_libXext xlib_libXrender
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
|
|
|
|
QT5WEBKIT_DEPENDENCIES += qt5declarative
|
|
|
|
endif
|
|
|
|
|
2016-07-26 00:33:31 +02:00
|
|
|
# QtWebkit's build system uses python, but only supports python2. We work
|
|
|
|
# around this by forcing python2 early in the PATH, via a python->python2
|
|
|
|
# symlink.
|
|
|
|
QT5WEBKIT_ENV = PATH=$(@D)/bin:$(BR_PATH)
|
|
|
|
define QT5WEBKIT_PYTHON2_SYMLINK
|
|
|
|
mkdir -p $(@D)/bin
|
|
|
|
ln -sf $(HOST_DIR)/usr/bin/python2 $(@D)/bin/python
|
|
|
|
endef
|
|
|
|
QT5WEBKIT_PRE_CONFIGURE_HOOKS += QT5WEBKIT_PYTHON2_SYMLINK
|
|
|
|
|
2016-04-13 15:40:35 +02:00
|
|
|
# Since we get the source from git, generated header files are not included.
|
|
|
|
# qmake detects that header file generation (using the syncqt tool) must be
|
|
|
|
# done based on the existence of a .git directory (cfr. the git_build config
|
|
|
|
# option which is set in qt_build_paths.prf).
|
|
|
|
# So, to make sure that qmake detects that header files must be generated,
|
|
|
|
# create an empty .git directory.
|
|
|
|
define QT5WEBKIT_CONFIGURE_CMDS
|
|
|
|
mkdir -p $(@D)/.git
|
2016-07-26 00:33:31 +02:00
|
|
|
(cd $(@D); $(TARGET_MAKE_ENV) $(QT5WEBKIT_ENV) $(HOST_DIR)/usr/bin/qmake)
|
2016-04-13 15:40:35 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define QT5WEBKIT_BUILD_CMDS
|
2016-07-26 00:33:31 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(QT5WEBKIT_ENV) $(MAKE) -C $(@D)
|
2016-04-13 15:40:35 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define QT5WEBKIT_INSTALL_STAGING_CMDS
|
2016-07-26 00:33:31 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(QT5WEBKIT_ENV) $(MAKE) -C $(@D) install
|
2016-04-13 15:40:35 +02:00
|
|
|
$(QT5_LA_PRL_FILES_FIXUP)
|
|
|
|
endef
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5DECLARATIVE_QUICK),y)
|
|
|
|
define QT5WEBKIT_INSTALL_TARGET_QMLS
|
|
|
|
cp -dpfr $(STAGING_DIR)/usr/qml/QtWebKit $(TARGET_DIR)/usr/qml/
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
define QT5WEBKIT_INSTALL_TARGET_CMDS
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/lib/libQt5WebKit*.so.* $(TARGET_DIR)/usr/lib
|
|
|
|
cp -dpf $(@D)/bin/* $(TARGET_DIR)/usr/bin/
|
|
|
|
$(QT5WEBKIT_INSTALL_TARGET_QMLS)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|