Hi, sorry for the inconvenience and thanks for the help. I hopefully configured git correct now for future use. I also hope that this post now is correct.
--- .../patches/qt4-thumbwheel-opensource_2.4.bb | 33 ++++++++++++++++++++ 1 files changed, 33 insertions(+) create mode 100644 recipes/qt4_addons/qt4-thumbwheel-opensource_2.4.bb diff --git a/recipes/qt4_addons/qt4-thumbwheel-opensource_2.4.bb b/recipes/qt4_addons/qt4-thumbwheel-opensource_2.4.bb new file mode 100644 index 0000000..1f7843a --- /dev/null +++ b/recipes/qt4_addons/qt4-thumbwheel-opensource_2.4.bb @@ -0,0 +1,33 @@ +SECTION = "libs" +PRIORITY = "optional" +HOMEPAGE = "http://qt.nokia.com/downloads" +LICENSE = "GPL LGPL" +DEPENDS = "qt4-embedded" + +inherit qt4e autotools + +PR = "r0" + +SRC_URI = "ftp://ftp.qt.nokia.com/qt/solutions/lgpl/qtthumbwheel-2.4-opensource.tar.gz" + +S = "${WORKDIR}/qtthumbwheel-${PV}-opensource" + +do_configure() { + echo yes | ./configure -library + ${OE_QMAKE_QMAKE} +} + +do_install() { + install -d ${D}${libdir} + install -m 0755 ${S}/lib/libQtSolutions_ThumbWheel-${PV}.so.1.0.0 ${D}${libdir} + ln -sf libQtSolutions_ThumbWheel-${PV}.so.1.0.0 ${D}${libdir}/libQtSolutions_ThumbWheel-${PV}.so.1.0 + ln -sf libQtSolutions_ThumbWheel-${PV}.so.1.0.0 ${D}${libdir}/libQtSolutions_ThumbWheel-${PV}.so.1 + ln -sf libQtSolutions_ThumbWheel-${PV}.so.1.0.0 ${D}${libdir}/libQtSolutions_ThumbWheel-${PV}.so +} + +#ALLOW_EMPTY = "" +RDEPENDS_${PN} = "libqt-embeddedgui4" +FILES_${PN} = "${libdir}/lib*.so*" + +SRC_URI[md5sum] = 48765bb0e09c0d2e686eca59cb233df9 +SRC_URI[sha256sum] = "fa3208deef718ef76a93a8d421880e89c9a86f1003ac28ed6e34e393f0544be7" -- 1.6.3.3 2010/6/7 Paul Menzel <[email protected]>: > Dear majo, > > > Am Montag, den 07.06.2010, 16:56 +0200 schrieb majo huber: > >> we have made a new recipie for building the qt thumbwheel (a >> touchscreen encoder wheel for the qt library). > > thanks a lot. > >> I'd kindly request if anybody could push that to the dev branch. >> I'd also suggest to put it in a separate directory e.g. called qt_addons. > > Could you please resend this properly formatted [1] so that the > developers can commit this easily? That’d be great. > > Especially tag the subject with [PATCH], create your proposed directory > and provide a commit message. `git format-patch` and `git send-email` > help you doing this. > > > Thanks, > > Paul > > > [1] http://wiki.openembedded.org/index.php/Commit_Policy > > _______________________________________________ > Openembedded-devel mailing list > [email protected] > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel > > _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
