summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-07-06 18:09:18 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-07-06 18:09:18 +0000
commite1cea4f44d083bd46dd30230d1bc6936c81af0ba (patch)
treee7e7586c3caf7cb932d5a46f5ac31edf9d24618a
parenta44a8eda3491ef2949b608c794d16a7c8b391e13 (diff)
staging and build fixes for python-sip and python-pyqt
BKrev: 40eaeace8jJZuPlfeV43onlo2IP2LA
-rw-r--r--python-sip/python-sip_4.0.1.oe52
-rw-r--r--python/python-pyqt_3.12.oe55
2 files changed, 107 insertions, 0 deletions
diff --git a/python-sip/python-sip_4.0.1.oe b/python-sip/python-sip_4.0.1.oe
index e69de29bb2..17acdd0178 100644
--- a/python-sip/python-sip_4.0.1.oe
+++ b/python-sip/python-sip_4.0.1.oe
@@ -0,0 +1,52 @@
+DESCRIPTION = "Runtime helper for sip-generated python wrapper libraries"
+SECTION = "libs"
+PRIORITY = "optional"
+MAINTAINER = "Michael Lauer <mickey@Vanille.de>"
+LICENSE = "GPL"
+DEPENDS = "virtual/libqte2 python"
+RDEPENDS = "python-core"
+PR = "r1"
+
+SRC_URI = "http://www.vanille.de/mirror/sip-${PV}.tar.gz"
+S = "${WORKDIR}/sip-${PV}/siplib"
+
+inherit qmake
+
+export QTDIR = "${STAGING_LIBDIR}/.."
+
+#
+# Warning: passing ' "FOO=BAR" results in double ""FOO=BAR"" which is then ignored by qmake
+#
+
+EXTRA_QMAKEVARS_POST = " TEMPLATE=lib \
+ CONFIG=qte \
+ DESTDIR= \
+ VERSION=1.0.0 \
+ TARGET=sip \
+ 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_configure_prepend() {
+ cat siplib.sbf | sed s,target,TARGET, | sed s,sources,SOURCES, | sed s,headers,HEADERS, > siplib.pro
+}
+
+do_stage() {
+ install -d ${STAGING_LIBDIR}/python2.3/site-packages/
+ oe_libinstall -so libsip ${STAGING_LIBDIR}/python2.3/site-packages/
+ install -m 0644 sip.h ${STAGING_INCDIR}/sip.h
+}
+
+do_install() {
+ install -d ${D}/${libdir}/python2.3/site-packages/
+ install libsip.so.1.0.0 ${D}/${libdir}/python2.3/site-packages/sip.so
+}
+
+FILES_${PN} = "${libdir}/python2.3/site-packages/sip.so"
+
diff --git a/python/python-pyqt_3.12.oe b/python/python-pyqt_3.12.oe
index e69de29bb2..e74b683ce6 100644
--- a/python/python-pyqt_3.12.oe
+++ b/python/python-pyqt_3.12.oe
@@ -0,0 +1,55 @@
+DESCRIPTION = "Python Qt/Embedded + Qt/Palmtop Bindings"
+HOMEPAGE = "http://www.vanille.de/projects/python.spy"
+SECTION = "devel/python"
+PRIORITY = "optional"
+MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
+LICENSE = "GPL"
+RDEPENDS = "python-core python-sip"
+DEPENDS = "virtual/libqte2 virtual/libqpe"
+SRCNAME = "pyqt"
+PR = "r1"
+
+SRC_URI = "http://www.vanille.de/mirror/PyQt-x11-gpl-${PV}.tar.gz \
+ file://features"
+S = "${WORKDIR}/PyQt-x11-gpl-${PV}"
+
+inherit qmake sip
+
+QMAKE_PROFILES = "pyqt.pro"
+EXTRA_SIPTAGS = "-tWS_QWS -tQtPE_1_6_0 -tQt_2_3_1"
+SIP_MODULES = "qt qtcanvas qttable qtpe"
+SIP_FEATURES = "${WORKDIR}/features"
+EXTRA_OEMAKE = " MAKEFLAGS= "
+
+EXTRA_QMAKEVARS_POST = " QMAKE_UIC=${STAGING_BINDIR}/uic QMAKE_MOC=${STAGING_BINDIR}/moc QMAKE_RPATH=-Wl,-rpath-link, \
+ CONFIG=qte CONFIG+=warn_on CONFIG+=release \
+ DESTDIR= VERSION=1.0.0 \
+ DEFINES=SIP_MAKE_DLL DEFINES+=SIP_QT_SUPPORT DEFINES+=QWS \
+ INCLUDEPATH=. \
+ INCLUDEPATH+=${STAGING_INCDIR}/python2.3 \
+ INCLUDEPATH+=${STAGING_INCDIR} \
+ LIBS+=-L${STAGING_LIBDIR}/python2.3/site-packages \
+ LIBS+=-L${STAGING_LIBDIR} LIBS+=-lqte LIBS+=-lqpe "
+
+do_configure_prepend() {
+ echo -e "TEMPLATE=subdirs\nSUBDIRS=qt qtcanvas qttable qtpe\n" >pyqt.pro
+}
+
+do_stage() {
+ install -d ${STAGING_SIPDIR}/qt/
+ for module in ${SIP_MODULES}
+ do
+ install -m 0644 ${S}/sip/${module}/*.sip ${STAGING_SIPDIR}/qt/
+ install -m 0755 ${module}/lib${module}.so ${STAGING_LIBDIR}/python2.3/site-packages/${module}.so
+ done
+}
+
+do_install() {
+ install -d ${D}/${libdir}/python2.3/site-packages/
+ for module in ${SIP_MODULES}
+ do
+ install -m 0755 ${module}/lib${module}.so ${D}/${libdir}/python2.3/site-packages/${module}.so
+ done
+}
+
+FILES_${PN} = "${libdir}/python2.3/site-packages"