diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-01-16 20:59:56 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-01-16 20:59:56 +0000 |
commit | 59ff90cafaf30b1aa7c57b0336daf71b5fdf984a (patch) | |
tree | e860f1b2a0ed46d8d450c2798c93e9b23696a030 /libsip | |
parent | c3f585f7ec242a5c500f163b17732af5951430ea (diff) |
improve libsip build
BKrev: 400850ccx06keggVInQTN3MVN2wbRQ
Diffstat (limited to 'libsip')
-rw-r--r-- | libsip/libsip_3.9.oe | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libsip/libsip_3.9.oe b/libsip/libsip_3.9.oe index e69de29bb2..f5b4e85283 100644 --- a/libsip/libsip_3.9.oe +++ b/libsip/libsip_3.9.oe @@ -0,0 +1,38 @@ +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_DIR}/build/include/python2.3 \ + INCLUDEPATH+=${STAGING_DIR}/target/include ' + + +# +# It would be nice if I could use spaces, e.g. CONFIG=qt warn_off release dll +# + +do_compile() { + oe_runmake LINK="${CC}" LIBS="" +} + |