sip-native: add version 4.7.8
authorMichael 'Mickey' Lauer <mickey@vanille-media.de>
Mon, 17 Nov 2008 19:43:26 +0000 (20:43 +0100)
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>
Mon, 17 Nov 2008 22:15:17 +0000 (23:15 +0100)
packages/sip/sip-native_4.7.8.bb [new file with mode: 0644]

diff --git a/packages/sip/sip-native_4.7.8.bb b/packages/sip/sip-native_4.7.8.bb
new file mode 100644 (file)
index 0000000..eace443
--- /dev/null
@@ -0,0 +1,30 @@
+DESCRIPTION = "SIP is a C++/Python Wrapper Generator"
+SECTION = "devel"
+HOMEPAGE = "http://www.riverbankcomputing.co.uk/sip"
+AUTHOR = "Phil Thompson"
+PRIORITY = "optional"
+LICENSE = "GPL"
+PR = "ml0"
+
+SRC_URI = "http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-${PV}.tar.gz"
+S = "${WORKDIR}/sip-${PV}/sipgen"
+
+inherit qt4x11 native
+
+export BUILD_SYS
+export HOST_SYS
+export STAGING_LIBDIR
+export STAGING_INCDIR
+
+EXTRA_QMAKEVARS_POST += "DESTDIR=${S} CONFIG=console"
+
+do_configure_prepend() {
+       cat sipgen.sbf | sed s,target,TARGET, | sed s,sources,SOURCES, | sed s,headers,HEADERS, > sipgen.pro
+}
+
+do_stage() {
+       install -m 0755 sip ${STAGING_BINDIR_NATIVE}/sip
+       cd ${WORKDIR}/sip-${PV} && python configure.py
+       install -d ${STAGING_PYDIR}/site-packages
+       install -m 0755 sip*.py ${STAGING_PYDIR}/site-packages
+}