diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /libsip | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'libsip')
-rw-r--r-- | libsip/libsip_3.10.1.oe | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/libsip/libsip_3.10.1.oe b/libsip/libsip_3.10.1.oe index e69de29bb2..44569ea64b 100644 --- a/libsip/libsip_3.10.1.oe +++ b/libsip/libsip_3.10.1.oe @@ -0,0 +1,42 @@ +DESCRIPTION = "Runtime helper for sip-generated python wrapper libraries" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +LICENSE = "GPL" +DEPENDS = "virtual/libc virtual/libqte2 python" + +SRC_URI := "http://www.vanille.de/mirror/sip-${PV}.tar.gz" +S := "${WORKDIR}/sip-${PV}/siplib" + +inherit qmake + +QMAKE_PROFILES = "siplib.pro.in" + +export QTDIR=${STAGING_DIR}/target + +# +# Warning: passing ' "FOO=BAR" results in double ""FOO=BAR"" which is then ignored by qmake +# + +EXTRA_QMAKEVARS_POST = ' CONFIG=qte \ + DESTDIR=${STAGING_LIBDIR}/python2.3/site-packages \ + TARGET=sip \ + DEFINES=SIP_MAKE_DLL \ + DEFINES+=SIP_QT_SUPPORT \ + INCLUDEPATH=. \ + INCLUDEPATH+=${STAGING_INCDIR}/python2.3 \ + INCLUDEPATH+=${STAGING_INCDIR} ' + + +# +# It would be nice if I could use spaces, e.g. CONFIG=qt warn_off release dll +# + +do_compile() { + oe_runmake LINK="${CC}" LIBS="" +} + +do_stage() { + install -m 0644 sip.h ${STAGING_INCDIR}/sip.h + install -m 0644 sipQt.h ${STAGING_INCDIR}/sipQt.h +} |