09216ec22b
This patch fixes different problems: * The autogen script of Webkit did not find autoconf, automake and aclocal since they are not installed in the host, but in $(HOST_DIR). Therefore we pass HOST_CONFIGURE_OPTS to autogen.sh so that the PATH is correct. * The autogen script was complaining that gtk-doc.make could not be find. As compiling gtk-doc completely is a pain (depends on Docbook), we just include gtk-doc.make into package/webkit/, and copy it to the source directory. * The autogen script was complaining about macros used in gtk-doc.make that did not exist. This is because aclocal was not run with $(STAGING_DIR)/usr/share/aclocal/ in the include path. Therefore, we fix ACLOCAL_FLAGS of Webkit's autogen script before running it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
#############################################################
|
|
#
|
|
# webkit
|
|
#
|
|
#############################################################
|
|
WEBKIT_VERSION = r44552
|
|
WEBKIT_SOURCE = WebKit-$(WEBKIT_VERSION).tar.bz2
|
|
WEBKIT_SITE = http://nightly.webkit.org/files/trunk/src/
|
|
|
|
WEBKIT_INSTALL_STAGING = YES
|
|
WEBKIT_INSTALL_TARGET = YES
|
|
WEBKIT_LIBTOOL_PATCH = NO
|
|
|
|
WEBKIT_DEPENDENCIES = host-flex host-gperf icu curl libxml2 libxslt \
|
|
libgtk2 sqlite enchant libsoup
|
|
|
|
ifeq ($(BR2_PACKAGE_WEBKIT_X11),y)
|
|
WEBKIT_CONF_OPT = --with-target=x11
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WEBKIT_DIRECTFB),y)
|
|
WEBKIT_CONF_OPT = --with-target=directfb
|
|
endif
|
|
|
|
WEBKIT_CONF_OPT += --disable-video
|
|
|
|
define WEBKIT_AUTOGEN_PATCH
|
|
$(SED) 's%ACLOCAL_FLAGS=.*%ACLOCAL_FLAGS="-I autotools -I $(STAGING_DIR)/usr/share/aclocal"%' $(WEBKIT_DIR)/autogen.sh
|
|
$(SED) 's/AUTOMAKE_FLAGS=.*/AUTOMAKE_FLAGS="--foreign --add-missing --copy"/' $(WEBKIT_DIR)/autogen.sh
|
|
$(SED) 's/LIBTOOLIZE_FLAGS=.*/LIBTOOLIZE_FLAGS="--force --automake --copy"/' $(WEBKIT_DIR)/autogen.sh
|
|
cp package/webkit/gtk-doc.make $(WEBKIT_DIR)/
|
|
# Don't run the configure step yet
|
|
cd $(WEBKIT_DIR); $(HOST_CONFIGURE_OPTS) AUTOGEN_CONFIGURE_ARGS=--version ./autogen.sh
|
|
endef
|
|
|
|
WEBKIT_POST_EXTRACT_HOOKS += WEBKIT_AUTOGEN_PATCH
|
|
|
|
$(eval $(call AUTOTARGETS,package,webkit))
|