diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-02-09 11:01:56 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2005-02-09 11:01:56 +0000 |
commit | 5d7dc2d94e88f492539761b4909a69955a5142b0 (patch) | |
tree | 0c922779ffcadcf5d2aab29530980bad1351a22f /packages/qwt | |
parent | ead81927963fb9513ffb18bc50d7f4ced7198117 (diff) |
Merge bk://oe-devel@oe-devel.bkbits.net/openembedded
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages
2005/02/09 02:42:08+01:00 uni-frankfurt.de!mickeyl
update python-numeric to v23.7
2005/02/09 02:02:21+01:00 uni-frankfurt.de!mickeyl
fix qwt 4.2 compilage against 2.3.10. Yes, QT_VERSION again (or still *sigh*)
2005/02/09 01:44:39+01:00 uni-frankfurt.de!mickeyl
fix PyQt compilage against QtE 2.3.10 (QT_VERSION again *sigh*)
BKrev: 4209eda4ikLKONxgarptvjIfCJ5yOA
Diffstat (limited to 'packages/qwt')
-rw-r--r-- | packages/qwt/files/qt2-fix.patch (renamed from packages/qwt/qwt-pyqwt-20040505.bb) | 0 | ||||
-rw-r--r-- | packages/qwt/qwt_4.2.0rc1.bb | 27 |
2 files changed, 27 insertions, 0 deletions
diff --git a/packages/qwt/qwt-pyqwt-20040505.bb b/packages/qwt/files/qt2-fix.patch index e69de29bb2..e69de29bb2 100644 --- a/packages/qwt/qwt-pyqwt-20040505.bb +++ b/packages/qwt/files/qt2-fix.patch diff --git a/packages/qwt/qwt_4.2.0rc1.bb b/packages/qwt/qwt_4.2.0rc1.bb index e69de29bb2..39dcdb0ddb 100644 --- a/packages/qwt/qwt_4.2.0rc1.bb +++ b/packages/qwt/qwt_4.2.0rc1.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "Qt Widget Extension for Technical Applications" +SECTION = "libs" +PRIORITY = "optional" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "GPL" +DEPENDS = "virtual/libqte2" +PR = "r1" + +SRC_URI = "${SOURCEFORGE_MIRROR}/qwt/qwt-${PV}.tgz \ + file://qt2-fix.patch;patch=1" + +inherit qmake + +EXTRA_QMAKEVARS_POST = "CONFIG-=thread" + +do_stage() { + oe_libinstall -so -C lib libqwt ${STAGING_LIBDIR} + cp -a include/* ${STAGING_INCDIR} +} + +do_install() { + install -d ${D}/${libdir} \ + ${D}/${includedir} + oe_libinstall -so -C lib libqwt ${D}/${libdir} + cp -a include/* ${D}/${includedir} +} + |