blob: bf0f5bb9a5ddec5361bcef7eafc6a19082d8e66f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
DEPENDS = "flex-native gperf-native gperf perl-native curl icu uicmoc4-native qmake2-native libxml2 sqlite3 cairo libxslt libidn gnutlsgtk+"
# Yes, this is wrong...
PV = "0.0+svn${SRCDATE}"
PR = "r1"
inherit qmake 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 \
svn://svn.webkit.org/repository/webkit/trunk/;module=WebKit;proto=http \
svn://svn.webkit.org/repository/webkit/trunk/;module=WebKitLibraries;proto=http \
# svn://svn.webkit.org/repository/webkit/trunk/;module=WebKitQt;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}/"
do_configure_append() {
qmake2 -spec ${QMAKESPEC} CONFIG+=gdk-port CONFIG-=qt CONFIG-=release CONFIG+=debug
mkdir -p WebKitBuilds/Debug
cd WebKitBuilds/Debug
PWD=`pwd` qmake2 -spec ${QMAKESPEC} -r OUTPUT_DIR=$PWD/ CONFIG-=qt CONFIG+=gdk-port $PWD/../../WebKit.pro
}
do_compile_prepend() {
cd ${S}/WebKitBuilds/Debug
}
do_install() {
install -d ${D}${bindir}
install -d ${D}${libdir}
install -d ${D}${libdir}/pkgconfig
install -m 0755 ${S}/WebKitBuilds/Debug/WebKitTools/GdkLauncher/GdkLauncher ${D}${bindir}
cp -pPR WebKitBuilds/Debug/lib/*.so* ${D}${libdir}
cp -pPR WebKitBuilds/Debug/lib/*.pc ${D}${libdir}/pkgconfig/
}
PACKAGES =+ "webkit-gdklauncher-dbg webkit-gdklauncher"
FILES_webkit-gdklauncher = "${bindir}/GdkLauncher"
FILES_webkit-gdklauncher-dbg = "${bindir}/.debug/GdkLauncher"
|