packages/konqueror: add new svn version of konqueror embedded
authorDirk Opfer <dirk@opfer-online.de>
Tue, 4 Apr 2006 12:21:57 +0000 (12:21 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 4 Apr 2006 12:21:57 +0000 (12:21 +0000)
- Needs a multithreaded qte version
- To build this package dcopidl-native are needed: ASSUME_PROVIDED += "dcopidl-native"

packages/konqueror/konqueror-embedded_svn.bb [new file with mode: 0644]

diff --git a/packages/konqueror/konqueror-embedded_svn.bb b/packages/konqueror/konqueror-embedded_svn.bb
new file mode 100644 (file)
index 0000000..26d2877
--- /dev/null
@@ -0,0 +1,76 @@
+DESCRIPTION = "KDE Web Browser Konqueror, QtE based Palmtop Environments Edition"
+BROKEN = "1"
+SECTION = "opie/applications"
+PRIORITY = "optional"
+HOMEPAGE = "http://www.konqueror.org/"
+DEPENDS = "openssl pcre libqte-mt dcopidl-native"
+LICENSE = "LGPL/GPL"
+DEFAULT_PREFERENCE = "-1"
+FILES_${PN} = "${palmtopdir} /usr/share"
+PR = "r0"
+PV = "svn${SRCDATE}"
+
+# this Konqueror needs the KDEDIR set and the font helvetica installed on the target
+
+inherit autotools
+
+SRC_URI = "svn://anonsvn.kde.org/home/kde/tags/KDE/3.5.1;module=kdelibs \
+          svn://anonsvn.kde.org/home/kde/trunk;module=kdenox "
+
+S = "${WORKDIR}/kdenox"
+
+export QMAKE = "${STAGING_BINDIR}/qmake"
+export MOC = "${STAGING_BINDIR}/moc"
+export UIC = "${STAGING_BINDIR}/uic"
+export exec_prefix = "${palmtopdir}"
+export CXXFLAGS = "-fexceptions -frtti -DKJS_VERBOSE=1 -DQT_THREAD_SUPPORT -DQ_OS_UNIX -DQT_NO_DOM -DENABLE_BOOKMARKS"
+export PCRE_CONFIG = "invalid"
+
+EXTRA_OECONF = '--prefix=${palmtopdir} \
+       --exec-prefix=${palmtopdir} \
+       --includedir=${STAGING_INCDIR} \
+       --with-extra-includes=${STAGING_INCDIR} \
+       --with-extra-libs=${STAGING_LIBDIR} \
+       --with-ssl-version=0.9.7e \
+       --with-ssl-dir=${STAGING_LIBDIR}/.. \
+       --with-qt-includes=${STAGING_DIR}/${HOST_SYS}/qt2/include \
+       --with-qt-libraries=${STAGING_DIR}/${HOST_SYS}/qt2/lib \
+       --enable-fontsubs \
+       --with-konq-tmp-prefix=/tmp/kde-cache \
+       --enable-static \
+#      --disable-static \
+#      --enable-shared \
+       --disable-debug \
+        --with-gui=road \
+       --with-ipv6-lookup=no \
+       --without-xinerama \
+       --disable-scrollbars \
+       --disable-selection \
+       --disable-bookmarks \
+       --with-javascript=static \
+       --enable-debug=yes \
+       --disable-printing \
+       --enable-pcre \
+       --without-arts \
+       --enable-jshostext \
+       --disable-selection \
+       --enable-final \
+       --enable-qt-embedded \
+       --enable-rtti-embedded \
+       --enable-mt \
+       --enable-qt-mt\
+       --enable-fwnewepg=yes \
+       --enable-embedded '
+
+do_configure_prepend() {
+       cd ${S}
+       if ! test -L admin
+       then
+           ln -s ../kdelibs/admin admin
+       fi
+       make -f Makefile.cvs 
+}
+
+do_compile_prepend() {
+       perl admin/am_edit
+}