summaryrefslogtreecommitdiff
path: root/libsip
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-01-29 14:51:42 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-01-29 14:51:42 +0000
commit926511c542eedd487a51bcbc2833be0d783ed9bb (patch)
tree63b155a79016df157af6f368c06b481412d0c497 /libsip
parent56c1b41f9a2407c97419c7f2ebacb8205caddc4f (diff)
libsip/pyqt staging area fixes
BKrev: 40191dfeVZKNRN4-m64i-SOmqK9-jA
Diffstat (limited to 'libsip')
-rw-r--r--libsip/libsip_3.10.oe42
1 files changed, 42 insertions, 0 deletions
diff --git a/libsip/libsip_3.10.oe b/libsip/libsip_3.10.oe
index e69de29bb2..af582066fc 100644
--- a/libsip/libsip_3.10.oe
+++ b/libsip/libsip_3.10.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_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=""
+}
+
+do_stage() {
+ install -m 0644 sip.h ${STAGING_INCDIR}/sip.h
+ install -m 0644 sipQt.h ${STAGING_INCDIR}/sipQt.h
+}