diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-04-29 13:52:06 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-04-29 13:52:06 +0000 |
commit | fbbb72d0d891027a8591342a42353bf22cc4f6a1 (patch) | |
tree | 1de97d1502e05c181e211478262cc7d81ccceb5b /libqtaux/libqtaux2_cvs.oe | |
parent | 4cc6ead5acfbd9c40226e12327c4228186148ae4 (diff) |
s/192.58.209.91/cvs.handhelds.org/
BKrev: 40910886IaaXGBq-L2T6MoGQDfC5qw
Diffstat (limited to 'libqtaux/libqtaux2_cvs.oe')
-rw-r--r-- | libqtaux/libqtaux2_cvs.oe | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/libqtaux/libqtaux2_cvs.oe b/libqtaux/libqtaux2_cvs.oe index e69de29bb2..9a4031fc2c 100644 --- a/libqtaux/libqtaux2_cvs.oe +++ b/libqtaux/libqtaux2_cvs.oe @@ -0,0 +1,36 @@ +DESCRIPTION = "Qt/Embedded 2 Auxilliary libraries" +HOMEPAGE = "http://opie.handhelds.org" +SECTION = "opie/libs" +PRIORITY = "optional" +MAINTAINER = "Team Opie <opie@handhelds.org>" +LICENSE = "GPL" +PV = "1.1.3-cvs-${CVSDATE}" + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/libqtaux;date=${CVSDATE}" +S = "${WORKDIR}/libqtaux" + +inherit qmake + +export QTDIR = "${STAGING_LIBDIR}/.." +export OPIEDIR = "${STAGING_LIBDIR}/.." + +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}${palmtopdir}/lib/ + oe_soinstall ${STAGING_LIBDIR}/libqtaux2.so.1.0.0 ${D}${palmtopdir}/lib/ +} + +FILES_${PN}=${palmtopdir}/lib + |