* [PATCH] qmake-native_1.07a.bb: Converted to new style staging
@ 2010-09-24 17:05 Fahad Usman
2010-09-27 9:28 ` Holger Freyther
0 siblings, 1 reply; 7+ messages in thread
From: Fahad Usman @ 2010-09-24 17:05 UTC (permalink / raw)
To: openembedded-devel
* Converted do_stage to do_install.
* Added NATIVE_INSTALL_WORKS = "1"
* replaced QMAKE_MKSPEC_PATH (which is defined in bitbake.conf) with ${D}${datadir}/qmake as discussed on irc
* Bumped PR
Signed-off-by: Fahad Usman <fahad_usman@mentor.com>
---
recipes/qmake/qmake-native_1.07a.bb | 15 +++++++--------
1 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/recipes/qmake/qmake-native_1.07a.bb b/recipes/qmake/qmake-native_1.07a.bb
index 36efe89..ac87b45 100644
--- a/recipes/qmake/qmake-native_1.07a.bb
+++ b/recipes/qmake/qmake-native_1.07a.bb
@@ -3,7 +3,7 @@ PRIORITY = "optional"
HOMEPAGE = "http://www.trolltech.com"
SECTION = "devel"
LICENSE = "GPL QPL"
-PR = "r5"
+PR = "r6"
QTEVER = "qt-embedded-free-3.3.5"
@@ -35,15 +35,14 @@ do_compile() {
:
}
-do_stage() {
- install -m 0755 bin/qmake ${STAGING_BINDIR}
- install -d ${QMAKE_MKSPEC_PATH}
- cp -fPR mkspecs/* ${QMAKE_MKSPEC_PATH}
-}
-
do_install() {
- :
+ install -d ${D}${bindir}
+ install -m 0755 bin/qmake ${D}${bindir}
+ install -d ${D}${datadir}/qmake
+ cp -fPR mkspecs/* ${D}${datadir}/qmake
}
SRC_URI[md5sum] = "022d7a3c572b554f3c47b12cae71a8a4"
SRC_URI[sha256sum] = "a97656796c0ef8e87dd83e6138bc406e31830d08f9b213e039d8be39ea65c8e4"
+
+NATIVE_INSTALL_WORKS = "1"
--
1.6.3.3
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] qmake-native_1.07a.bb: Converted to new style staging
2010-09-24 17:05 [PATCH] qmake-native_1.07a.bb: Converted to new style staging Fahad Usman
@ 2010-09-27 9:28 ` Holger Freyther
2010-09-27 9:45 ` Frans Meulenbroeks
0 siblings, 1 reply; 7+ messages in thread
From: Holger Freyther @ 2010-09-27 9:28 UTC (permalink / raw)
To: openembedded-devel
On 09/25/2010 01:05 AM, Fahad Usman wrote:
> * Converted do_stage to do_install.
> * Added NATIVE_INSTALL_WORKS = "1"
> * replaced QMAKE_MKSPEC_PATH (which is defined in bitbake.conf) with ${D}${datadir}/qmake as discussed on irc
> * Bumped PR
>
Hi,
is qmake-native still used by something?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] qmake-native_1.07a.bb: Converted to new style staging
2010-09-27 9:28 ` Holger Freyther
@ 2010-09-27 9:45 ` Frans Meulenbroeks
2010-09-27 10:16 ` Sylvain Paré
2010-09-27 10:20 ` Holger Freyther
0 siblings, 2 replies; 7+ messages in thread
From: Frans Meulenbroeks @ 2010-09-27 9:45 UTC (permalink / raw)
To: openembedded-devel
2010/9/27 Holger Freyther <holger+oe@freyther.de>:
> On 09/25/2010 01:05 AM, Fahad Usman wrote:
>> * Converted do_stage to do_install.
>> * Added NATIVE_INSTALL_WORKS = "1"
>> * replaced QMAKE_MKSPEC_PATH (which is defined in bitbake.conf) with ${D}${datadir}/qmake as discussed on irc
>> * Bumped PR
>>
>
> Hi,
> is qmake-native still used by something?
Apparently yes:
qt/qt-x11-free-native_3.3.5.bb:DEPENDS = "qmake-native x11-native"
uicmoc/uicmoc3-native_3.3.5.bb:DEPENDS = "qmake-native"
grep also gave me these:
dcop/dcopidl2cpp-native_3.5.8.bb:inherit native qmake qt3e
dcop/dcopidl-native_3.5.8.bb:inherit native qmake qt3e
opie-i18n/opie-lrelease-native.inc:inherit native qmake qt3e
opie-i18n/opie-lupdate-native.inc:inherit native qmake qt3e
sip/sip3-native_3.10.1:inherit qmake native
sip/sip3-native_4.0.1.bb:inherit qmake native
didn't peek into qmake.bbclass to see whether it drags in qmake-native
one way or another.
Frans
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] qmake-native_1.07a.bb: Converted to new style staging
2010-09-27 9:45 ` Frans Meulenbroeks
@ 2010-09-27 10:16 ` Sylvain Paré
2010-09-27 10:20 ` Holger Freyther
2010-09-27 10:20 ` Holger Freyther
1 sibling, 1 reply; 7+ messages in thread
From: Sylvain Paré @ 2010-09-27 10:16 UTC (permalink / raw)
To: openembedded-devel
Hi Holger ,
I just wanted to ask if with your Qt4.7 commits you could look at
automoc-nativ which did not build the last time I tried (i.e 3 weeks ago)
and if it could not be provided directly by Qt packages . (I don't know if
it is possible)
Thanks!
BR
Sylvain ( aka GarthPS)
2010/9/27 Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
> 2010/9/27 Holger Freyther <holger+oe@freyther.de <holger%2Boe@freyther.de>
> >:
> > On 09/25/2010 01:05 AM, Fahad Usman wrote:
> >> * Converted do_stage to do_install.
> >> * Added NATIVE_INSTALL_WORKS = "1"
> >> * replaced QMAKE_MKSPEC_PATH (which is defined in bitbake.conf) with
> ${D}${datadir}/qmake as discussed on irc
> >> * Bumped PR
> >>
> >
> > Hi,
> > is qmake-native still used by something?
>
> Apparently yes:
>
> qt/qt-x11-free-native_3.3.5.bb:DEPENDS = "qmake-native x11-native"
> uicmoc/uicmoc3-native_3.3.5.bb:DEPENDS = "qmake-native"
>
> grep also gave me these:
>
> dcop/dcopidl2cpp-native_3.5.8.bb:inherit native qmake qt3e
> dcop/dcopidl-native_3.5.8.bb:inherit native qmake qt3e
> opie-i18n/opie-lrelease-native.inc:inherit native qmake qt3e
> opie-i18n/opie-lupdate-native.inc:inherit native qmake qt3e
> sip/sip3-native_3.10.1:inherit qmake native
> sip/sip3-native_4.0.1.bb:inherit qmake native
>
> didn't peek into qmake.bbclass to see whether it drags in qmake-native
> one way or another.
>
> Frans
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] qmake-native_1.07a.bb: Converted to new style staging
2010-09-27 9:45 ` Frans Meulenbroeks
2010-09-27 10:16 ` Sylvain Paré
@ 2010-09-27 10:20 ` Holger Freyther
1 sibling, 0 replies; 7+ messages in thread
From: Holger Freyther @ 2010-09-27 10:20 UTC (permalink / raw)
To: openembedded-devel
On 09/27/2010 05:45 PM, Frans Meulenbroeks wrote:
>
> Apparently yes:
>
> qt/qt-x11-free-native_3.3.5.bb:DEPENDS = "qmake-native x11-native"
> uicmoc/uicmoc3-native_3.3.5.bb:DEPENDS = "qmake-native"
good, that is Qt3...
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] qmake-native_1.07a.bb: Converted to new style staging
2010-09-27 10:16 ` Sylvain Paré
@ 2010-09-27 10:20 ` Holger Freyther
2010-09-27 10:36 ` Sylvain Paré
0 siblings, 1 reply; 7+ messages in thread
From: Holger Freyther @ 2010-09-27 10:20 UTC (permalink / raw)
To: openembedded-devel
On 09/27/2010 06:16 PM, Sylvain Paré wrote:
> Hi Holger ,
>
> I just wanted to ask if with your Qt4.7 commits you could look at
> automoc-nativ which did not build the last time I tried (i.e 3 weeks ago)
> and if it could not be provided directly by Qt packages . (I don't know if
> it is possible)
> Thanks!
automoc-native should be deprecated... and is not used due qt4-tools-native.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] qmake-native_1.07a.bb: Converted to new style staging
2010-09-27 10:20 ` Holger Freyther
@ 2010-09-27 10:36 ` Sylvain Paré
0 siblings, 0 replies; 7+ messages in thread
From: Sylvain Paré @ 2010-09-27 10:36 UTC (permalink / raw)
To: openembedded-devel
ok thanks for the info!
I will try to build qt4-plugin-phonon-backend-vlc with qt4-tools-native so.
2010/9/27 Holger Freyther <holger+oe@freyther.de <holger%2Boe@freyther.de>>
> On 09/27/2010 06:16 PM, Sylvain Paré wrote:
> > Hi Holger ,
> >
> > I just wanted to ask if with your Qt4.7 commits you could look at
> > automoc-nativ which did not build the last time I tried (i.e 3 weeks ago)
> > and if it could not be provided directly by Qt packages . (I don't know
> if
> > it is possible)
> > Thanks!
>
> automoc-native should be deprecated... and is not used due
> qt4-tools-native.
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-09-27 10:37 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-24 17:05 [PATCH] qmake-native_1.07a.bb: Converted to new style staging Fahad Usman
2010-09-27 9:28 ` Holger Freyther
2010-09-27 9:45 ` Frans Meulenbroeks
2010-09-27 10:16 ` Sylvain Paré
2010-09-27 10:20 ` Holger Freyther
2010-09-27 10:36 ` Sylvain Paré
2010-09-27 10:20 ` Holger Freyther
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.