[oe-commits] Koen Kooi : arora: factor common stuff into .inc and add qt4/ embedded version

git version control git at git.openembedded.org
Sat Nov 7 18:43:26 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 286db7631ff17f5a086c337914df97a3db65900e
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=286db7631ff17f5a086c337914df97a3db65900e

Author: Koen Kooi <koen at openembedded.org>
Date:   Sat Nov  7 19:36:57 2009 +0100

arora: factor common stuff into .inc and add qt4/embedded version

---

 recipes/webkit/arora-e_0.10.1.bb |    3 ++
 recipes/webkit/arora.inc         |   45 ++++++++++++++++++++++++++++++++++++++
 recipes/webkit/arora_0.10.1.bb   |   44 +------------------------------------
 3 files changed, 49 insertions(+), 43 deletions(-)

diff --git a/recipes/webkit/arora-e_0.10.1.bb b/recipes/webkit/arora-e_0.10.1.bb
new file mode 100644
index 0000000..a526fda
--- /dev/null
+++ b/recipes/webkit/arora-e_0.10.1.bb
@@ -0,0 +1,3 @@
+inherit qt4e
+
+require arora.inc
diff --git a/recipes/webkit/arora.inc b/recipes/webkit/arora.inc
new file mode 100644
index 0000000..bbd8bfb
--- /dev/null
+++ b/recipes/webkit/arora.inc
@@ -0,0 +1,45 @@
+DESCRIPTION = "Arora is a lightweight cross-platform web browser"
+LICENE = "GPLv2"
+HOMEPAGE = "http://code.google.com/p/arora/"
+
+PR = "r1"
+
+SRC_URI = "http://arora.googlecode.com/files/arora-${PV}.tar.gz"
+
+S = "${WORKDIR}/arora-${PV}"
+
+do_configure_prepend() {
+	sed -i -e s:lrelease-qt4:${OE_QMAKE_LRELEASE}:g ${S}/src/locale/locale.pri
+}
+
+# Huge hack ahead:
+# Something is putting '.libs' in the Makefiles, which we do now want. The problem is that qmake generates makefiles during 'make all' *sigh*
+do_compile_prepend() {
+	( oe_runmake src/Makefile tools/Makefile
+	  cd ${S}/tools ; oe_runmake cacheinfo/Makefile htmlToXBel/Makefile placesimport/Makefile
+	)
+
+	for i in $(find ${S} -name 'Makefile') ; do
+		sed -i -e 's:/.libs::g' $i
+		make || true
+	done
+
+}
+
+do_install() {
+	sed -i -e s:/usr/local:${D}${prefix}:g install.pri	
+	sed -i -e s:$(INSTALL_ROOT)/OE/angstrom-dev/work/armv7a-angstrom-linux-gnueabi/arora-0.10.1-r0/image/:$(INSTALL_ROOT)/:g src/Makefile
+
+	for i in $(find ${S} -name 'Makefile') ; do
+		sed -i -e s:/usr/local:${prefix}:g $i
+	done
+
+	oe_runmake -e INSTALL_ROOT=${D} install
+	cp -r ${D}/${D}/* ${D}/ || true
+	cp -r ${D}/usr/local/* ${D}${prefix} || true
+	rm -rf ${D}/usr/local ${D}/${D}
+}
+
+FILES_${PN} += "${datadir}/arora ${datadir}/gnome-control-center ${datadir}/icons"
+
+
diff --git a/recipes/webkit/arora_0.10.1.bb b/recipes/webkit/arora_0.10.1.bb
index 11da72e..ea90c45 100644
--- a/recipes/webkit/arora_0.10.1.bb
+++ b/recipes/webkit/arora_0.10.1.bb
@@ -1,45 +1,3 @@
-DESCRIPTION = "Arora is a lightweight cross-platform web browser"
-LICENE = "GPLv2"
-HOMEPAGE = "http://code.google.com/p/arora/"
-
 inherit qt4x11
 
-PR = "r1"
-
-SRC_URI = "http://arora.googlecode.com/files/arora-${PV}.tar.gz"
-
-do_configure_prepend() {
-	sed -i -e s:lrelease-qt4:${OE_QMAKE_LRELEASE}:g ${S}/src/locale/locale.pri
-}
-
-# Huge hack ahead:
-# Something is putting '.libs' in the Makefiles, which we do now want. The problem is that qmake generates makefiles during 'make all' *sigh*
-do_compile_prepend() {
-	( oe_runmake src/Makefile tools/Makefile
-	  cd ${S}/tools ; oe_runmake cacheinfo/Makefile htmlToXBel/Makefile placesimport/Makefile
-	)
-
-	for i in $(find ${S} -name 'Makefile') ; do
-		sed -i -e 's:/.libs::g' $i
-		make || true
-	done
-
-}
-
-do_install() {
-	sed -i -e s:/usr/local:${D}${prefix}:g install.pri	
-	sed -i -e s:$(INSTALL_ROOT)/OE/angstrom-dev/work/armv7a-angstrom-linux-gnueabi/arora-0.10.1-r0/image/:$(INSTALL_ROOT)/:g src/Makefile
-
-	for i in $(find ${S} -name 'Makefile') ; do
-		sed -i -e s:/usr/local:${prefix}:g $i
-	done
-
-	oe_runmake -e INSTALL_ROOT=${D} install
-	cp -r ${D}/${D}/* ${D}/ || true
-	cp -r ${D}/usr/local/* ${D}${prefix} || true
-	rm -rf ${D}/usr/local ${D}/${D}
-}
-
-FILES_${PN} += "${datadir}/gnome-control-center ${datadir}/icons"
-
-
+require arora.inc





More information about the Openembedded-commits mailing list