summaryrefslogtreecommitdiff
path: root/libopie
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-03-13 05:42:36 +0000
committerChris Larson <clarson@kergoth.com>2004-03-13 05:42:36 +0000
commit06f7d17e81de21a95e35b03453242bc62b05a6aa (patch)
treebc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /libopie
parent4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff)
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'libopie')
-rw-r--r--libopie/libopie2_20040225.oe51
1 files changed, 51 insertions, 0 deletions
diff --git a/libopie/libopie2_20040225.oe b/libopie/libopie2_20040225.oe
index e69de29bb2..ad2916e43e 100644
--- a/libopie/libopie2_20040225.oe
+++ b/libopie/libopie2_20040225.oe
@@ -0,0 +1,51 @@
+DESCRIPTION = "Base libraries for the Open Integrated Palmtop Environment"
+SECTION = "opie/libs"
+PRIORITY = "optional"
+MAINTAINER = "Michael Lauer <mickey@Vanille.de>"
+LICENSE = "LGPL"
+DEPENDS = "virtual/libc libqpe-opie sqlite libpcap"
+RDEPENDS = "libc6 libqpe sqlite libpcap"
+
+SRC_URI="cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=opie/libopie2;date=${PV}"
+S = "${WORKDIR}/libopie2"
+
+inherit qmake
+
+export QTDIR=${STAGING_DIR}/target
+export OPIEDIR=${STAGING_DIR}/target
+
+#FIXME: Add machine specific bits here. Best use oe_machinstall and read the from a given file
+
+EXTRA_QMAKEVARS_POST= 'DEFINES+=OPIE_WE_VERSION=15'
+
+#
+# for developing - qmake.oeclass should gather this automatically
+#
+export QMAKESPEC=${QMAKE_MKSPEC_PATH}/qws/linux-sharp-g++
+
+do_compile() {
+ install -d ${STAGING_INCDIR}/opie2
+ for i in `find . -name "*.h"`
+ do
+ install -m 0644 $i ${STAGING_INCDIR}/opie2/`basename $i`
+ done
+ oe_runmake MOC=${STAGING_BINDIR}/moc UIC=${STAGING_BINDIR}/uic DESTDIR=${S}
+}
+
+# no staging neessary, becaue
+# include files already done during do_compile
+# lib files already done during do_compile
+
+do_install() {
+ install -d ${D}/opt/QtPalmtop/lib/
+ oe_soinstall ${STAGING_LIBDIR}/libopiecore2.so.1.8.5 ${D}/opt/QtPalmtop/lib/
+ oe_soinstall ${STAGING_LIBDIR}/libopiedb2.so.1.8.2 ${D}/opt/QtPalmtop/lib/
+ oe_soinstall ${STAGING_LIBDIR}/libopiemm2.so.1.8.2 ${D}/opt/QtPalmtop/lib/
+ oe_soinstall ${STAGING_LIBDIR}/libopienet2.so.1.8.3 ${D}/opt/QtPalmtop/lib/
+ oe_soinstall ${STAGING_LIBDIR}/libopiepim2.so.1.8.3 ${D}/opt/QtPalmtop/lib/
+ oe_soinstall ${STAGING_LIBDIR}/libopieui2.so.1.8.5 ${D}/opt/QtPalmtop/lib/
+}
+
+FILES=
+FILES_${PN}=/opt/QtPalmtop
+