aboutsummaryrefslogtreecommitdiffstats
path: root/nonworking
diff options
context:
space:
mode:
authorGreg Gilbert <greg@treke.net>2004-08-20 05:55:46 +0000
committerGreg Gilbert <greg@treke.net>2004-08-20 05:55:46 +0000
commit1fcb936f2f346d6e47bbbb335ad76dd40fbffea3 (patch)
treeb43007e9d1643600618786fb8f429565ebe3eaa5 /nonworking
parenta7a49f76b33d28729622b47868ec5d179995dc52 (diff)
downloadopenembedded-1fcb936f2f346d6e47bbbb335ad76dd40fbffea3.tar.gz
Merge bk://openembedded@openembedded.bkbits.net/packages
into olddog.home.treke.net:/home/ggilbert/oe/packages 2004/08/19 22:55:03-07:00 treke.net!ggilbert konqueror-embedded_20030705.oe: Using the autotools class wipes out the Makefile.in code for running MOC. Do things by hand. There are still some gcc 3.4 issues that need working out. BKrev: 41259262pR-akjTxF-DdOMTNyMOZvw
Diffstat (limited to 'nonworking')
-rw-r--r--nonworking/konqueror/konqueror-embedded_20030705.oe36
1 files changed, 35 insertions, 1 deletions
diff --git a/nonworking/konqueror/konqueror-embedded_20030705.oe b/nonworking/konqueror/konqueror-embedded_20030705.oe
index d675f5f22c..0c2c60aacb 100644
--- a/nonworking/konqueror/konqueror-embedded_20030705.oe
+++ b/nonworking/konqueror/konqueror-embedded_20030705.oe
@@ -8,7 +8,7 @@ SRC_URI = http://devel-home.kde.org/~hausmann/snapshots/konqueror-embedded-snaps
S = "${WORKDIR}/konqueror-embedded-snapshot-${PV}"
-inherit autotools libtool
+inherit libtool
FILES=
FILES_${PN}=/opt/QtPalmtop
@@ -22,3 +22,37 @@ EXTRA_OECONF = --enable-static --disable-shared --disable-debug --enable-qpe --e
--with-extra-includes=${STAGING_INCDIR} --with-extra-libs=${STAGING_LIBDIR} --with-ssl-version=0.9.7c \
--with-ssl-dir=${STAGING_DIR}/target --with-qtopia-dir=${STAGING_DIR}/target --prefix=/opt/QtPalmtop --with-javascript=static
+
+do_configure () {
+ ./configure \
+ --build=${BUILD_SYS} \
+ --host=${HOST_SYS} \
+ --target=${TARGET_SYS} \
+ --prefix=${prefix} \
+ --exec_prefix=${exec_prefix} \
+ --bindir=${bindir} \
+ --sbindir=${sbindir} \
+ --libexecdir=${libexecdir} \
+ --datadir=${datadir} \
+ --sysconfdir=${sysconfdir} \
+ --sharedstatedir=${sharedstatedir} \
+ --localstatedir=${localstatedir} \
+ --libdir=${libdir} \
+ --includedir=${includedir} \
+ --oldincludedir=${oldincludedir} \
+ --infodir=${infodir} \
+ --mandir=${mandir} \
+ --enable-static \
+ --disable-shared \
+ --disable-debug \
+ --enable-qpe \
+ --enable-embedded \
+ --with-extra-includes=${STAGING_INCDIR} \
+ --with-extra-libs=${STAGING_LIBDIR} \
+ --with-ssl-version=0.9.7c \
+ --with-ssl-dir=${STAGING_DIR}/target \
+ --with-qtopia-dir=${STAGING_DIR}/target \
+ --prefix=/opt/QtPalmtop \
+ --with-javascript=static
+
+}