aboutsummaryrefslogtreecommitdiffstats
path: root/python/python-pyqwt_3.10.oe
diff options
context:
space:
mode:
Diffstat (limited to 'python/python-pyqwt_3.10.oe')
-rw-r--r--python/python-pyqwt_3.10.oe64
1 files changed, 0 insertions, 64 deletions
diff --git a/python/python-pyqwt_3.10.oe b/python/python-pyqwt_3.10.oe
deleted file mode 100644
index 1f41ab0459..0000000000
--- a/python/python-pyqwt_3.10.oe
+++ /dev/null
@@ -1,64 +0,0 @@
-DESCRIPTION = "Python QWT Bindings, QtE edition"
-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 python-pyqt (>=${PV}) python-numeric qwt"
-DEPENDS = "virtual/libqte2 python-numeric python-pyqt qwt"
-SRCNAME = "pyqwt"
-PR = "ml2"
-
-SRC_URI = "http://www.vanille.de/mirror/PyQwt-20040118.tar.gz \
- file://qt2.x-compat.patch;patch=1 \
- file://features"
-S = "${WORKDIR}/PyQwt-20040118"
-
-inherit qmake sip
-
-QMAKE_PROFILES = "pyqwt.pro"
-EXTRA_SIPTAGS = "-tWS_QWS -tQtPE_1_6_0 -tQt_2_3_1"
-SIP_MODULES = "qwt"
-SIP_FEATURES = "${WORKDIR}/features"
-EXTRA_OEMAKE = " MAKEFLAGS= "
-
-EXTRA_QMAKEVARS_POST += "CONFIG=qt CONFIG+=warn_on CONFIG+=release \
- TARGET=qwt DESTDIR= VERSION=1.0.0 \
- DEFINES=SIP_MAKE_DLL DEFINES+=SIP_QT_SUPPORT DEFINES+=HAS_NUMERIC DEFINES+=QWS \
- INCLUDEPATH+=../numpy \
- INCLUDEPATH+=${STAGING_INCDIR}/python2.3 \
- INCLUDEPATH+=${STAGING_INCDIR} \
- LIBS+=-L${STAGING_LIBDIR}/python2.3/site-packages \
- LIBS+=-L${QTDIR}/lib LIBS+=-lqte LIBS+=-lqpe "
-
-do_generate_prepend() {
- echo -e "TEMPLATE=subdirs\nSUBDIRS=qwt\n" >pyqwt.pro
-
- echo "%Makefile qwt.pro.in" >>sip/qwtmod.sip
- echo "TEMPLATE=lib" >>sip/qwtmod.sip
- echo 'SOURCES = $B' >>sip/qwtmod.sip
- echo 'HEADERS = $H' >>sip/qwtmod.sip
- echo "%End" >>sip/qwtmod.sip
-
- mkdir -p sip/qwt/
- mv sip/*.* sip/qwt/
-}
-
-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} = "/usr/lib/python2.3/site-packages"