blob: 979c1ce305e370f9f3e8c7fa8ca027f9c66cf184 (
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
55
56
57
|
DESCRIPTION = "KDE Web Browser Konqueror, QtE based Palmtop Environments Edition"
HOMEPAGE = "http://www.konqueror.org/embedded"
SECTION = "opie/applications"
PRIORITY = "optional"
DEPENDS = "libqpe-opie openssl libpcre"
LICENSE = "LGPL GPL"
PR = "r5"
# Note if this .bb files fails with the error:
# "No rule to make target `-lpcre', needed by `konqueror'. Stop."
# a workaround is to install the libpcre3-dev package onto your build
# machine (Ubuntu/Debain) or your distro's equivalent (FC = pcre-devel).
SRC_URI = "http://devel-home.kde.org/~hausmann/snapshots/Attic/konqueror-embedded-snapshot-${PV}.tar.gz \
file://opie1.patch;patch=1 \
file://packing.patch;patch=1 \
file://include_qconfig.patch;patch=1 \
file://useragent.patch;patch=1 \
file://kcookiejar-merge.patch;patch=1 \
file://malformed.patch;patch=1 \
file://cachepath.patch;patch=1 \
file://vit.patch;patch=1 \
file://gcc4.patch;patch=1 \
file://konq-embedrc"
S = "${WORKDIR}/konqueror-embedded-snapshot-${PV}"
inherit autotools
FILES_${PN} = "${palmtopdir}"
export QMAKE = "${STAGING_BINDIR_NATIVE}/qmake"
export MOC = "${STAGING_BINDIR_NATIVE}/moc"
export UIC = "${STAGING_BINDIR_NATIVE}/uic"
export exec_prefix = "${STAGING_LIBDIR}/.."
EXTRA_OECONF = '--prefix=${palmtopdir} --exec-prefix=${palmtopdir} \
--enable-static --disable-shared --disable-debug \
--with-javascript=static --enable-qpe --enable-qt-embedded \
--with-extra-includes=${STAGING_INCDIR} --with-extra-libs=${STAGING_LIBDIR} \
--with-ssl-version=0.9.7c --with-ssl-dir=${STAGING_LIBDIR}/.. \
--with-qt-dir=${QTDIR} --with-qtopia-dir=${OPIEDIR} \
--enable-libsuffix="" '
CXXFLAGS += "-DOPIE_NO_ERASE_RECT_HACKFIX -DOPIE_NEW_MALLOC"
do_compile_prepend() {
perl admin/am_edit
}
do_install() {
install -d ${D}${palmtopdir}/share/
install -d ${D}${palmtopdir}/share/config/
install -m 0644 ${WORKDIR}/konq-embedrc ${D}${palmtopdir}/share/config/
autotools_do_install
}
|