[oe-commits] Koen Kooi : firefox: add 3.5.5

git version control git at git.openembedded.org
Tue Dec 22 09:48:06 UTC 2009


Module: openembedded.git
Branch: martin_jansa/srcpv
Commit: fa65636441dbe16b0d0cccdcb26f1670bf154b58
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=fa65636441dbe16b0d0cccdcb26f1670bf154b58

Author: Koen Kooi <koen at openembedded.org>
Date:   Mon Dec 21 10:12:09 2009 +0100

firefox: add 3.5.5

---

 recipes/mozilla/firefox_3.5.5.bb |   76 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 76 insertions(+), 0 deletions(-)

diff --git a/recipes/mozilla/firefox_3.5.5.bb b/recipes/mozilla/firefox_3.5.5.bb
new file mode 100644
index 0000000..0292592
--- /dev/null
+++ b/recipes/mozilla/firefox_3.5.5.bb
@@ -0,0 +1,76 @@
+DEPENDS += "cairo"
+
+SRC_URI = "http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${PV}/source/firefox-${PV}.source.tar.bz2 \
+	file://jsautocfg.h \
+	file://security-cross.patch;patch=1 \
+	file://jsautocfg-dontoverwrite.patch;patch=1 \
+	file://Bug339782.additional.fix.diff;patch=1 \
+	file://Bug385583.nspr.jmp_buf.eabi.diff;patch=1 \
+	file://Bug405992.atomic.nspr.diff;patch=1 \
+	file://jemalloc-tls.patch;patch=1 \
+	file://0001-Remove-Werror-from-build.patch;patch=1 \
+	file://0002-Fix-security-cross-compile-cpu-detection-error.patch;patch=1 \
+	file://plugins-dir.patch;patch=1 \
+	file://firefox-plugin.pc \
+	file://firefox-xpcom.pc \
+	file://nspr.pc \
+"
+
+S = "${WORKDIR}/mozilla-1.9.1"
+
+inherit mozilla
+require firefox.inc
+
+EXTRA_OECONF += " --enable-official-branding "
+
+
+export HOST_LIBIDL_CONFIG = "${STAGING_BINDIR_NATIVE}/libIDL-config-2"
+FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -O2"
+
+do_compile_prepend() {
+	cp ${WORKDIR}/jsautocfg.h ${S}/js/src/
+	sed -i "s|CPU_ARCH =|CPU_ARCH = ${TARGET_ARCH}|" security/coreconf/Linux.mk
+}
+
+do_stage() {
+        install -d ${STAGING_INCDIR}/firefox-${PV}
+        cd ${S}/dist/sdk/include
+        cp -a obsolete ${STAGING_INCDIR}/firefox-${PV}/
+        rm -rf obsolete
+        headers=`find . -name "*.h"`
+        for f in $headers
+        do
+                install -D -m 0644 $f ${STAGING_INCDIR}/firefox-${PV}/
+        done
+        cd ${S}/dist/include/plugin
+        headers=`find . -name "*.h"`
+        for f in $headers
+        do
+                install -D -m 0644 $f ${STAGING_INCDIR}/firefox-${PV}/
+        done
+        cd ${S}/nsprpub/pr/include
+        headers=`find . -name "*.h"`
+        for f in $headers
+        do
+                install -D -m 0644 $f ${STAGING_INCDIR}/firefox-${PV}/
+        done
+        cd ${S}/xpcom/base
+        headers=`find . -name "*.idl"`
+        for f in $headers
+        do
+                install -D -m 0644 $f ${STAGING_INCDIR}/firefox-${PV}/
+        done
+
+        for pc in ${WORKDIR}/*.pc ; do
+            sed -i s:3.5.2:${PV}:g $pc
+        done
+        
+        install -d ${PKG_CONFIG_DIR}
+        install -m 0644 ${WORKDIR}/firefox-plugin.pc ${PKG_CONFIG_DIR}
+        install -m 0644 ${WORKDIR}/firefox-xpcom.pc ${PKG_CONFIG_DIR}
+        install -m 0644 ${WORKDIR}/nspr.pc ${PKG_CONFIG_DIR}
+        install -m 0755 ${S}/xpcom/typelib/xpidl/host_xpidl ${STAGING_BINDIR_NATIVE}/xpidl
+
+        # removes 2 lines that call absent headers
+        sed -e '178,179d' ${STAGING_INCDIR}/firefox-${PV}/nsIServiceManager.h
+}





More information about the Openembedded-commits mailing list