diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-07-06 18:09:18 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-07-06 18:09:18 +0000 |
commit | e1cea4f44d083bd46dd30230d1bc6936c81af0ba (patch) | |
tree | e7e7586c3caf7cb932d5a46f5ac31edf9d24618a /python | |
parent | a44a8eda3491ef2949b608c794d16a7c8b391e13 (diff) |
staging and build fixes for python-sip and python-pyqt
BKrev: 40eaeace8jJZuPlfeV43onlo2IP2LA
Diffstat (limited to 'python')
-rw-r--r-- | python/python-pyqt_3.12.oe | 55 |
1 files changed, 55 insertions, 0 deletions
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" |