diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-05-08 09:58:08 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-05-08 09:58:08 +0000 |
commit | 4b7faf38efa2d036009526723fbe030e7af266c2 (patch) | |
tree | 994e4d7d882fcd6cefefeafe357276bf08fde779 /uicmoc | |
parent | e29b7641e2f2d84f282bdfcd882a6683d8ea2996 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into gandalf.tm.informatik.uni-frankfurt.de:/usr/local/projects/packages
2004/05/08 11:58:01+02:00 uni-frankfurt.de!mickeyl
add x11-native and make uicmoc3-native use it - patch courtesy pb_.
BKrev: 409caf30iJ047Dmkn4hxYs2CzFa1Vg
Diffstat (limited to 'uicmoc')
-rw-r--r-- | uicmoc/uicmoc3-native_3.3.1.oe | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/uicmoc/uicmoc3-native_3.3.1.oe b/uicmoc/uicmoc3-native_3.3.1.oe index e69de29bb2..eeda60782d 100644 --- a/uicmoc/uicmoc3-native_3.3.1.oe +++ b/uicmoc/uicmoc3-native_3.3.1.oe @@ -0,0 +1,30 @@ +inherit native + +DEPENDS = "x11-native" + +SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-x11-free-3.3.1.tar.bz2" +S = "${WORKDIR}/qt-x11-free-${PV}" + +export QTDIR = "${S}" +#export SYSCONF_CXX = "${CCACHE} g++" +#export SYSCONF_CC = "${CCACHE} gcc" +#export SYSCONF_LINK = "${CCACHE} g++" + +ARCH_i686 = "x86" + +QT_CONFIG_FLAGS = "-release -static -qt-zlib -no-nas-sound -no-sm -qt-libpng -no-gif -no-xshape -no-xinerama -no-xcursor -no-xrandr \ + -no-xrender -no-xft -no-tablet -no-xkb -no-dlopen-opengl -no-thread -no-nis -no-cups" + +do_configure() { + echo "yes" | ./configure -prefix ${prefix} ${QT_CONFIG_FLAGS} +} + +do_stage() { + install -m 0755 bin/moc ${STAGING_BINDIR}/moc3 + install -m 0755 bin/uic ${STAGING_BINDIR}/uic3 + install lib/libqt.a ${STAGING_LIBDIR}/ + for f in include/*.h + do + install -m 0644 $f ${STAGING_INCDIR}/ + done +} |