diff options
author | Holger Freyther <zecke@selfish.org> | 2007-10-21 12:56:09 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2007-10-21 12:56:09 +0000 |
commit | 48bc6e67b38a64f6a6c065ec15f02d042fea8c45 (patch) | |
tree | 02111ecd1c88175f2a2326cbf7a9fde9a14014a4 /packages/webkit/webkit.inc | |
parent | 6ab2767ae321ad4f2f5891a7e359fd7273845bd5 (diff) |
packages/webkit: Build the Qt/Qtopia port of WebKit as well.
Unifiy the WebKit recipe and allow to build the Gtk+, Qt
and Qtopia port. Add classes/qtopia4core.bbclass to assist
building for Qtopia. Change the WebKit.pro to currently not
build the testkjs and DumpRenderTree test utilities.
Diffstat (limited to 'packages/webkit/webkit.inc')
-rw-r--r-- | packages/webkit/webkit.inc | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/packages/webkit/webkit.inc b/packages/webkit/webkit.inc new file mode 100644 index 0000000000..c20fc57c93 --- /dev/null +++ b/packages/webkit/webkit.inc @@ -0,0 +1,48 @@ +DEPENDS += "flex-native gperf-native perl-native sqlite3" +SRCREV_FORMAT = "webcore-rwebkit" + +# Yes, this is wrong... +PV = "0.0+svnr${SRCREV}" +PR = "r1" + +inherit qmake2 pkgconfig + +SRC_URI = "\ + svn://svn.webkit.org/repository/webkit/trunk/;module=JavaScriptCore;proto=http \ + svn://svn.webkit.org/repository/webkit/trunk/;module=JavaScriptGlue;proto=http \ + svn://svn.webkit.org/repository/webkit/trunk/;module=WebCore;proto=http;name=webcore \ + svn://svn.webkit.org/repository/webkit/trunk/;module=WebKit;proto=http;name=webkit \ + svn://svn.webkit.org/repository/webkit/trunk/;module=WebKitLibraries;proto=http \ + svn://svn.webkit.org/repository/webkit/trunk/;module=WebKitTools;proto=http \ + file://Makefile \ + file://Makefile.shared \ + file://WebKit.pri \ + file://WebKit.pro \ +" +S = "${WORKDIR}/" + +WEBKIT_QMAKE = "qmake2 -spec ${QMAKESPEC} -r OUTPUT_DIR=$PWD/ ${WEBKIT_EXTRA_OPTIONS} CONFIG+=${WEBKIT_PORT}" + +do_configure() { + qmake2 -spec ${QMAKESPEC} CONFIG+=${WEBKIT_PORT} ${WEBKIT_EXTRA_OPTIONS} CONFIG-=release CONFIG+=debug + mkdir -p WebKitBuilds/Debug + cd WebKitBuilds/Debug + PWD=`pwd` ${WEBKIT_QMAKE} WEBKIT_INC_DIR=${prefix}/include WEBKIT_LIB_DIR=${libdir} $PWD/../../WebKit.pro +} + +do_compile_prepend() { + mkdir -p ${S}/WebKitBuilds/Debug/JavaScriptCore/pcre/tmp/ + cd ${S}/JavaScriptCore/pcre + ${BUILD_CC} dftables.c -o dftables -I. -I../wtf + cp dftables ${S}/WebKitBuilds/Debug/JavaScriptCore/pcre/tmp/ + cd ${S}/WebKitBuilds/Debug +} + +do_stage() { + install -d ${STAGING_LIBDIR} + install -d ${STAGING_INCDIR} + cd ${S}/WebKitBuilds/Debug + PWD=`pwd` ${WEBKIT_QMAKE} WEBKIT_INC_DIR=${STAGING_INCDIR} WEBKIT_LIB_DIR=${STAGING_LIBDIR} $PWD/../../WebKit.pro + oe_runmake install +} + |