diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
commit | a780643c4b6aa11e1a36965a69df7116477c7b4c (patch) | |
tree | 17e81e77bde19931facf9b30fa5b5981df796071 /qmake | |
parent | 88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff) |
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb
2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.
2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.
2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge
2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.
BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/qmake-native_3.2.3.bb | 0 | ||||
-rw-r--r-- | qmake/qmake-native_3.2.3.oe | 55 |
2 files changed, 0 insertions, 55 deletions
diff --git a/qmake/qmake-native_3.2.3.bb b/qmake/qmake-native_3.2.3.bb new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/qmake/qmake-native_3.2.3.bb diff --git a/qmake/qmake-native_3.2.3.oe b/qmake/qmake-native_3.2.3.oe deleted file mode 100644 index 9ba2b50665..0000000000 --- a/qmake/qmake-native_3.2.3.oe +++ /dev/null @@ -1,55 +0,0 @@ -SECTION = "devel" -DESCRIPTION = "Qt(E) Makefile Generator" -PRIORITY = "optional" -LICENSE = "GPL|QPL" - -SRC_URI = \ - "ftp://ftp.trolltech.com/pub/qt/source/qt-embedded-free-${PV}.tar.bz2 \ - file://linux-oe-qmake.conf" - -S = "${WORKDIR}/qt-embedded-free-${PV}" - -inherit autotools native - -export QTDIR = "${S}" - -EXTRA_OECONF = "-static -no-gif -no-sm -system-zlib -system-libjpeg \ - -system-libpng -no-thread -no-nis -no-cups -no-stl -disable-styles \ - -disable-tools -disable-kernel -disable-widgets -disable-dialogs \ - -disable-iconview -disable-workspace -disable-network -disable-canvas \ - -disable-table -disable-xml -disable-opengl -disable-sql" -EXTRA_OEMAKE = "-e" - -do_configure() { - # Install the OE build templates (linux, linux-uclibc) - install -d ${S}/mkspecs/linux-oe-g++ - install -d ${S}/mkspecs/linux-uclibc-oe-g++ - install -m 0644 ${WORKDIR}/linux-oe-qmake.conf \ - ${S}/mkspecs/linux-oe-g++/qmake.conf - ln -sf ../linux-g++/qplatformdefs.h \ - ${S}/mkspecs/linux-oe-g++/qplatformdefs.h - ln -sf ../linux-oe-g++/qmake.conf \ - ${S}/mkspecs/linux-uclibc-oe-g++/qmake.conf - ln -sf ../linux-g++/qplatformdefs.h \ - ${S}/mkspecs/linux-uclibc-oe-g++/qplatformdefs.h - - QMAKESPEC= - PLATFORM=${HOST_OS}-oe-g++ - export PLATFORM - oenote ./configure ${EXTRA_OECONF} - echo yes | ./configure ${EXTRA_OECONF} || die "Configuring qt failed" -} - -do_compile() { - : -} - -do_stage() { - install -m 0755 bin/qmake ${STAGING_BINDIR} - install -d ${QMAKE_MKSPEC_PATH} - cp -dfR mkspecs/* ${QMAKE_MKSPEC_PATH} -} - -do_install() { - : -} |