diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-20 05:50:01 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-20 05:50:01 +0000 |
commit | 21048a7289cfceabfebc9b930c7d2c93241c2d21 (patch) | |
tree | 1ff196f0824c74f42ae9bd43176dce2630d30287 /libqpe/libqpe-opie_1.0.3.oe | |
parent | 0ba1fd5f2ac718b3b9fb19ee8602481d223626b4 (diff) |
Add uicmoc-native to deps of korg/e and libqpe-opie.
BKrev: 400cc18924VnPUe9OnmJYqCcAjNtpQ
Diffstat (limited to 'libqpe/libqpe-opie_1.0.3.oe')
-rw-r--r-- | libqpe/libqpe-opie_1.0.3.oe | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/libqpe/libqpe-opie_1.0.3.oe b/libqpe/libqpe-opie_1.0.3.oe index e69de29bb2..c7d063af4b 100644 --- a/libqpe/libqpe-opie_1.0.3.oe +++ b/libqpe/libqpe-opie_1.0.3.oe @@ -0,0 +1,57 @@ +DESCRIPTION="Base library for the Qt Palmtop Environment" +SECTION="base" +PRIORITY="optional" +MAINTAINER="Michael Lauer <mickey@Vanille.de>" +LICENSE="GPL" +DEPENDS=virtual/libc uicmoc-native +PROVIDES=virtual/libqpe + +SRC_URI="cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=opie/library;tag=${@'v' + oe.data.getVar('PV',d,1).replace('.','_')}" +S = ${WORKDIR}/library + +inherit qmake + +QMAKE_PROFILES = "library.pro" + +export QTDIR=${STAGING_DIR}/target +export OPIEDIR=${STAGING_DIR}/target + +CXXFLAGS_append = " -DQWS -fno-rtti -fno-exceptions" + +# +# for developing - qmake.oeclass should gather this automatically +# +export QMAKESPEC=${QMAKE_MKSPEC_PATH}/qws/linux-sharp-g++ + +do_compile() { + mkdir -p ${STAGING_INCDIR}/qpe \ + ${STAGING_INCDIR}/qtopia \ + ${STAGING_INCDIR}/opie \ + ${STAGING_INCDIR}/opie2 \ + ${STAGING_INCDIR}/qtopia/private + for i in ${S}/*.h + do + install -m 0644 $i ${STAGING_INCDIR}/qpe/`basename $i` + install -m 0644 $i ${STAGING_INCDIR}/qtopia/`basename $i` + install -m 0644 $i ${STAGING_INCDIR}/qtopia/private/`basename $i` + done + for i in ${S}/backend/*.h + do + install -m 0644 $i ${STAGING_INCDIR}/qpe/`basename $i` + install -m 0644 $i ${STAGING_INCDIR}/qtopia/`basename $i` + install -m 0644 $i ${STAGING_INCDIR}/qtopia/private/`basename $i` + done + rm -f ${STAGING_INCDIR}/qtopia/*_p.h # remove private stuff out of qtopia + oe_runmake MOC=${STAGING_BINDIR}/moc UIC=${STAGING_BINDIR}/uic DESTDIR=${S} +} + +do_stage() { + oe_soinstall libqpe.so.1.5.0 ${STAGING_LIBDIR} + # include files already done during do_compile +} + +do_install() { + install -d ${D}/${prefix}/lib + oe_soinstall ${STAGING_LIBDIR}/libqpe.so.1.5.0 ${D}/${prefix}/lib +} + |