diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/packages/mozilla | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/mozilla')
-rw-r--r-- | meta/packages/mozilla/files/minimo.desktop | 9 | ||||
-rw-r--r-- | meta/packages/mozilla/files/minimo.png | bin | 0 -> 4323 bytes | |||
-rw-r--r-- | meta/packages/mozilla/files/mozilla-firefox.desktop | 11 | ||||
-rw-r--r-- | meta/packages/mozilla/files/mozilla-firefox.png | bin | 0 -> 4323 bytes | |||
-rw-r--r-- | meta/packages/mozilla/files/mozilla-thunderbird.desktop | 11 | ||||
-rw-r--r-- | meta/packages/mozilla/files/mozilla-thunderbird.png | bin | 0 -> 6499 bytes | |||
-rw-r--r-- | meta/packages/mozilla/files/no-xmb.patch | 18 | ||||
-rw-r--r-- | meta/packages/mozilla/files/xptcstubs.patch | 19 | ||||
-rw-r--r-- | meta/packages/mozilla/minimo/host_ldflags_fix.patch | 62 | ||||
-rw-r--r-- | meta/packages/mozilla/minimo/mozconfig | 76 | ||||
-rw-r--r-- | meta/packages/mozilla/minimo_cvs.bb | 54 | ||||
-rw-r--r-- | meta/packages/mozilla/mozilla-cvs.inc | 12 |
12 files changed, 272 insertions, 0 deletions
diff --git a/meta/packages/mozilla/files/minimo.desktop b/meta/packages/mozilla/files/minimo.desktop new file mode 100644 index 0000000000..5ef0f2075a --- /dev/null +++ b/meta/packages/mozilla/files/minimo.desktop | |||
@@ -0,0 +1,9 @@ | |||
1 | [Desktop Entry] | ||
2 | Name=Minimo | ||
3 | Comment=Minimo web browser | ||
4 | Exec=minimo http://www.mozilla.org/projects/minimo/home.html | ||
5 | Terminal=0 | ||
6 | Type=Application | ||
7 | Icon=minimo.png | ||
8 | Categories=Application;Network; | ||
9 | StartupNotify=True | ||
diff --git a/meta/packages/mozilla/files/minimo.png b/meta/packages/mozilla/files/minimo.png new file mode 100644 index 0000000000..f8b2e2192b --- /dev/null +++ b/meta/packages/mozilla/files/minimo.png | |||
Binary files differ | |||
diff --git a/meta/packages/mozilla/files/mozilla-firefox.desktop b/meta/packages/mozilla/files/mozilla-firefox.desktop new file mode 100644 index 0000000000..00c0ea4fa3 --- /dev/null +++ b/meta/packages/mozilla/files/mozilla-firefox.desktop | |||
@@ -0,0 +1,11 @@ | |||
1 | [Desktop Entry] | ||
2 | Name=Firefox Browser | ||
3 | Comment=Firefox Web Browser | ||
4 | Exec=firefox | ||
5 | Terminal=false | ||
6 | MultipleArgs=false | ||
7 | Type=Application | ||
8 | Icon=mozilla-firefox.png | ||
9 | Categories=Application;Internet; | ||
10 | SingleInstance=true | ||
11 | |||
diff --git a/meta/packages/mozilla/files/mozilla-firefox.png b/meta/packages/mozilla/files/mozilla-firefox.png new file mode 100644 index 0000000000..f8b2e2192b --- /dev/null +++ b/meta/packages/mozilla/files/mozilla-firefox.png | |||
Binary files differ | |||
diff --git a/meta/packages/mozilla/files/mozilla-thunderbird.desktop b/meta/packages/mozilla/files/mozilla-thunderbird.desktop new file mode 100644 index 0000000000..61615d94c2 --- /dev/null +++ b/meta/packages/mozilla/files/mozilla-thunderbird.desktop | |||
@@ -0,0 +1,11 @@ | |||
1 | [Desktop Entry] | ||
2 | Name=Thunderbird Email Client | ||
3 | Comment=Thunderbird Email Client | ||
4 | Exec=thunderbird | ||
5 | Terminal=false | ||
6 | MultipleArgs=false | ||
7 | Type=Application | ||
8 | Icon=mozilla-thunderbird.png | ||
9 | Categories=Application;Internet; | ||
10 | SingleInstance=true | ||
11 | |||
diff --git a/meta/packages/mozilla/files/mozilla-thunderbird.png b/meta/packages/mozilla/files/mozilla-thunderbird.png new file mode 100644 index 0000000000..90ff395ff5 --- /dev/null +++ b/meta/packages/mozilla/files/mozilla-thunderbird.png | |||
Binary files differ | |||
diff --git a/meta/packages/mozilla/files/no-xmb.patch b/meta/packages/mozilla/files/no-xmb.patch new file mode 100644 index 0000000000..1b909a677c --- /dev/null +++ b/meta/packages/mozilla/files/no-xmb.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | --- mozilla/gfx/src/gtk/nsGdkUtils.cpp.old 2004-07-02 09:33:33.000000000 +0100 | ||
2 | +++ mozilla/gfx/src/gtk/nsGdkUtils.cpp 2004-07-02 09:33:34.000000000 +0100 | ||
3 | @@ -115,6 +115,7 @@ | ||
4 | #endif /* MOZ_WIDGET_GTK2 */ | ||
5 | } | ||
6 | } | ||
7 | +#if 0 | ||
8 | else if (font->type == GDK_FONT_FONTSET) | ||
9 | { | ||
10 | #ifdef MOZ_WIDGET_GTK | ||
11 | @@ -128,6 +129,7 @@ | ||
12 | fontset, GDK_GC_XGC(gc), x, y, text, text_length); | ||
13 | #endif /* MOZ_WIDGET_GTK2 */ | ||
14 | } | ||
15 | +#endif | ||
16 | else | ||
17 | g_error("undefined font type\n"); | ||
18 | } | ||
diff --git a/meta/packages/mozilla/files/xptcstubs.patch b/meta/packages/mozilla/files/xptcstubs.patch new file mode 100644 index 0000000000..7517acef27 --- /dev/null +++ b/meta/packages/mozilla/files/xptcstubs.patch | |||
@@ -0,0 +1,19 @@ | |||
1 | Index: xptcstubs_arm.cpp | ||
2 | =================================================================== | ||
3 | RCS file: /cvsroot/mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm.cpp,v | ||
4 | retrieving revision 1.7 | ||
5 | diff -u -r1.7 xptcstubs_arm.cpp | ||
6 | --- mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm.cpp 18 Apr 2004 14:18:18 -0000 1.7 | ||
7 | +++ mozilla/xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm.cpp 4 May 2004 18:36:44 -0000 | ||
8 | @@ -45,9 +45,9 @@ | ||
9 | #endif | ||
10 | |||
11 | /* Specify explicitly a symbol for this function, don't try to guess the c++ mangled symbol. */ | ||
12 | -static nsresult PrepareAndDispatch(nsXPTCStubBase* self, uint32 methodIndex, PRUint32* args) asm("_PrepareAndDispatch"); | ||
13 | +nsresult PrepareAndDispatch(nsXPTCStubBase* self, uint32 methodIndex, PRUint32* args) asm("_PrepareAndDispatch"); | ||
14 | |||
15 | -static nsresult | ||
16 | +nsresult | ||
17 | PrepareAndDispatch(nsXPTCStubBase* self, uint32 methodIndex, PRUint32* args) | ||
18 | { | ||
19 | #define PARAM_BUFFER_COUNT 16 | ||
diff --git a/meta/packages/mozilla/minimo/host_ldflags_fix.patch b/meta/packages/mozilla/minimo/host_ldflags_fix.patch new file mode 100644 index 0000000000..888f545e9d --- /dev/null +++ b/meta/packages/mozilla/minimo/host_ldflags_fix.patch | |||
@@ -0,0 +1,62 @@ | |||
1 | Index: mozilla/nsprpub/config/rules.mk | ||
2 | =================================================================== | ||
3 | --- mozilla.orig/nsprpub/config/rules.mk 2005-01-04 21:27:36.000000000 +0000 | ||
4 | +++ mozilla/nsprpub/config/rules.mk 2005-09-30 11:27:33.000000000 +0000 | ||
5 | @@ -87,6 +87,9 @@ | ||
6 | CCC=$(HOST_CXX) | ||
7 | CFLAGS=$(HOST_CFLAGS) | ||
8 | CXXFLAGS=$(HOST_CXXFLAGS) | ||
9 | +LDFLAGS=$(HOST_LDFLAGS) | ||
10 | +RANLIB=$(HOST_RANLIB) | ||
11 | +AR=$(HOST_AR) | ||
12 | endif | ||
13 | endif | ||
14 | endif | ||
15 | Index: mozilla/configure.in | ||
16 | =================================================================== | ||
17 | --- mozilla.orig/configure.in 2005-03-30 17:57:38.000000000 +0000 | ||
18 | +++ mozilla/configure.in 2005-09-30 11:36:44.000000000 +0000 | ||
19 | @@ -5612,13 +5612,18 @@ | ||
20 | fi | ||
21 | |||
22 | if test -n "$CROSS_COMPILE"; then | ||
23 | - if test -z "$HOST_LIBIDL_CONFIG"; then | ||
24 | + if test -z "$HOST_LIBIDL_CONFIG"; then | ||
25 | + AC_MSG_WARN([HOST_LIBIDL_CONFIG not defined]) | ||
26 | HOST_LIBIDL_CONFIG="$LIBIDL_CONFIG" | ||
27 | fi | ||
28 | if test -n "$HOST_LIBIDL_CONFIG"; then | ||
29 | + AC_MSG_WARN([using $HOST_LIBIDL_CONFIG as config for libIDL on host]) | ||
30 | HOST_LIBIDL_CFLAGS=`${HOST_LIBIDL_CONFIG} --cflags` | ||
31 | + AC_MSG_WARN([HOST_LIBIDL_CFLAGS=$HOST_LIBIDL_CFLAGS]) | ||
32 | HOST_LIBIDL_LIBS=`${HOST_LIBIDL_CONFIG} --libs` | ||
33 | + AC_MSG_WARN([HOST_LIBIDL_LIBS=$HOST_LIBIDL_LIBS]) | ||
34 | else | ||
35 | + AC_MSG_WARN([no config for libIDL found, using LIBIDL_CFLAGS and LIBIDL_LIBS]) | ||
36 | HOST_LIBIDL_CFLAGS="$LIBIDL_CFLAGS" | ||
37 | HOST_LIBIDL_LIBS="$LIBIDL_LIBS" | ||
38 | fi | ||
39 | Index: mozilla/configure | ||
40 | =================================================================== | ||
41 | --- mozilla.orig/configure 2005-03-30 17:58:47.000000000 +0000 | ||
42 | +++ mozilla/configure 2005-09-30 11:38:36.000000000 +0000 | ||
43 | @@ -16572,11 +16572,18 @@ | ||
44 | |||
45 | if test -n "$CROSS_COMPILE"; then | ||
46 | if test -z "$HOST_LIBIDL_CONFIG"; then | ||
47 | + echo "HOST_LIBIDL_CONFIG nto defined" | ||
48 | HOST_LIBIDL_CONFIG="$LIBIDL_CONFIG" | ||
49 | fi | ||
50 | - if test -n "$HOST_LIBIDL_CONFIG"; then | ||
51 | + if test -n "$HOST_LIBIDL_CONFIG" && test -n "$HOST_PKG_CONFIG_PATH"; then | ||
52 | + echo "using $HOST_LIBIDL_CONFIG as HOST_LIBIDL_CONFIG with HOST_PKG_CONFIG_PATH=$HOST_PKG_CONFIG_PATH" | ||
53 | + _SAVE_PKG_CONFIG_PATH=$PKG_CONFIG_PATH | ||
54 | + PKG_CONFIG_PATH=$HOST_PKG_CONFIG_PATH | ||
55 | HOST_LIBIDL_CFLAGS=`${HOST_LIBIDL_CONFIG} --cflags` | ||
56 | + echo "HOST_LIBIDL_CFLAGS = $HOST_LIBIDL_CFLAGS" | ||
57 | HOST_LIBIDL_LIBS=`${HOST_LIBIDL_CONFIG} --libs` | ||
58 | + echo "HOST_LIBIDL_LIBS = $HOST_LIBIDL_LIBS" | ||
59 | + PKG_CONFIG_PATH=$_SAVE_PKG_CONFIG_PATH | ||
60 | else | ||
61 | HOST_LIBIDL_CFLAGS="$LIBIDL_CFLAGS" | ||
62 | HOST_LIBIDL_LIBS="$LIBIDL_LIBS" | ||
diff --git a/meta/packages/mozilla/minimo/mozconfig b/meta/packages/mozilla/minimo/mozconfig new file mode 100644 index 0000000000..5a84bcf87e --- /dev/null +++ b/meta/packages/mozilla/minimo/mozconfig | |||
@@ -0,0 +1,76 @@ | |||
1 | # build minimo | ||
2 | MINIMO=1 | ||
3 | mk_add_options MINIMO=1 | ||
4 | |||
5 | # enable building the browser | ||
6 | ac_add_options --enable-application=browser | ||
7 | |||
8 | # use GTK+-2 widget set with XFT font rendering | ||
9 | |||
10 | MOZ_ENABLE_COREXFONTS=0 | ||
11 | mk_add_options MOZ_ENABLE_COREXFONTS=0 | ||
12 | ac_add_options --enable-default-toolkit=gtk2 | ||
13 | ac_add_options --enable-xft | ||
14 | ac_add_options --disable-freetype2 | ||
15 | |||
16 | # disable XUL support to reduce codesize | ||
17 | ac_add_options --disable-xul | ||
18 | |||
19 | # enable minimal profile support | ||
20 | ac_add_options --disable-profilesharing | ||
21 | ac_add_options --disable-profilelocking | ||
22 | ac_add_options --enable-single-profile | ||
23 | |||
24 | # disable features and skip various build steps | ||
25 | ac_add_options --disable-extensions | ||
26 | ac_add_options --disable-accessibility | ||
27 | ac_add_options --disable-composer | ||
28 | ac_add_options --disable-extensions | ||
29 | ac_add_options --disable-installer | ||
30 | ac_add_options --disable-jsd | ||
31 | ac_add_options --disable-jsloader | ||
32 | ac_add_options --disable-ldap | ||
33 | ac_add_options --disable-mailnews | ||
34 | ac_add_options --disable-mathml | ||
35 | ac_add_options --disable-necko-disk-cache | ||
36 | ac_add_options --disable-postscript | ||
37 | ac_add_options --disable-view-source | ||
38 | ac_add_options --disable-xpfe-components | ||
39 | ac_add_options --disable-xpinstall | ||
40 | ac_add_options --disable-xprint | ||
41 | ac_add_options --enable-native-uconv | ||
42 | ac_add_options --enable-plaintext-editor-only | ||
43 | ac_add_options --disable-v1-string-abi | ||
44 | ac_add_options --disable-plugins | ||
45 | |||
46 | # configure necko to allocate smaller network buffers | ||
47 | ac_add_options --enable-necko-small-buffers | ||
48 | |||
49 | # disable debug logging and tests | ||
50 | ac_add_options --disable-dtd-debug | ||
51 | ac_add_options --disable-logging | ||
52 | ac_add_options --disable-tests | ||
53 | |||
54 | # build crypto module (PSM + NSS) | ||
55 | ac_add_options --enable-crypto | ||
56 | |||
57 | # build minimal set of protocol handlers | ||
58 | ac_add_options --enable-necko-protocols=http,file,res,jar | ||
59 | |||
60 | # build minimal set of image decoders | ||
61 | ac_add_options --enable-image-decoders=png,gif,jpeg | ||
62 | |||
63 | # code generation options (optimize for size) | ||
64 | ac_add_options --enable-optimize=-Os | ||
65 | ac_add_options --enable-strip | ||
66 | ac_add_options --disable-debug | ||
67 | ac_add_options --enable-reorder | ||
68 | ac_add_options --enable-elf-dynstr-gc | ||
69 | |||
70 | # enable static build | ||
71 | ac_add_options --disable-shared | ||
72 | ac_add_options --enable-static | ||
73 | |||
74 | # remove link dependency on libstdc++.so | ||
75 | LIBS=-lsupc++ | ||
76 | |||
diff --git a/meta/packages/mozilla/minimo_cvs.bb b/meta/packages/mozilla/minimo_cvs.bb new file mode 100644 index 0000000000..7904951277 --- /dev/null +++ b/meta/packages/mozilla/minimo_cvs.bb | |||
@@ -0,0 +1,54 @@ | |||
1 | DESCRIPTION = "A minimal version of the Mozilla web browser" | ||
2 | HOMEPAGE="http://www.mozilla.org/projects/minimo/" | ||
3 | SRC_URI = "cvs://anonymous@cvs-mirror.mozilla.org/cvsroot;module=mozilla \ | ||
4 | file://xptcstubs.patch;patch=1 \ | ||
5 | file://no-xmb.patch;patch=1 \ | ||
6 | file://host_ldflags_fix.patch;patch=1 \ | ||
7 | file://minimo.png file://minimo.desktop" | ||
8 | S = "${WORKDIR}/mozilla" | ||
9 | MAINTAINER = "Phil Blundell <pb@handhelds.org>" | ||
10 | SECTION = "x11" | ||
11 | PRIORITY = "optional" | ||
12 | PV = "0.0+cvs${SRCDATE}" | ||
13 | FILES_${PN} += "${libdir}/mozilla-minimo" | ||
14 | PR = "r8" | ||
15 | LICENSE = "MPL/LGPL/GPL" | ||
16 | |||
17 | inherit mozilla | ||
18 | |||
19 | EXTRA_OECONF += "--enable-application=suite --disable-native-uconv" | ||
20 | export MOZ_CO_PROJECT="suite" | ||
21 | |||
22 | export MINIMO=1 | ||
23 | export MOZ_OBJDIR="${WORKDIR}/build-${TARGET_SYS}" | ||
24 | |||
25 | include mozilla-cvs.inc | ||
26 | |||
27 | do_compile () { | ||
28 | mozilla_do_compile | ||
29 | cd $MOZ_OBJDIR/embedding/minimo | ||
30 | oe_runmake | ||
31 | } | ||
32 | |||
33 | mozdir="${D}${libdir}/mozilla-minimo" | ||
34 | |||
35 | do_install () { | ||
36 | cd ${S}/embedding/minimo/ | ||
37 | sh ./package.sh | ||
38 | cd ${S} | ||
39 | mkdir -p ${mozdir} | ||
40 | cp -rL $MOZ_OBJDIR/dist/Embed/* ${mozdir}/ | ||
41 | rm -f ${mozdir}/TestGtkEmbed | ||
42 | mkdir -p ${D}${datadir}/applications | ||
43 | install -m 0644 ${WORKDIR}/minimo.desktop ${D}${datadir}/applications/minimo.desktop | ||
44 | mkdir -p ${D}${datadir}/pixmaps | ||
45 | install -m 0644 ${WORKDIR}/minimo.png ${D}${datadir}/pixmaps/minimo.png | ||
46 | mkdir -p ${D}${bindir} | ||
47 | echo "#!/bin/sh" > ${D}${bindir}/minimo | ||
48 | cat >>${D}${bindir}/minimo << EOF | ||
49 | cd ${libdir}/mozilla-minimo | ||
50 | export LD_LIBRARY_PATH=${libdir}/mozilla-minimo | ||
51 | exec ./Minimo http://www.mozilla.org/projects/minimo/home.html | ||
52 | EOF | ||
53 | chmod 755 ${D}${bindir}/minimo | ||
54 | } | ||
diff --git a/meta/packages/mozilla/mozilla-cvs.inc b/meta/packages/mozilla/mozilla-cvs.inc new file mode 100644 index 0000000000..6e278aaaf5 --- /dev/null +++ b/meta/packages/mozilla/mozilla-cvs.inc | |||
@@ -0,0 +1,12 @@ | |||
1 | do_fetch () { | ||
2 | export MOZ_CO_DATE="${SRCDATE}" | ||
3 | mkdir -p ${WORKDIR} | ||
4 | cd ${WORKDIR} | ||
5 | if [ ! -f ${DL_DIR}/mozilla_cvs-mirror.mozilla.org__${SRCDATE}.tar.gz ]; then | ||
6 | cvs $CVSCOOPTS -d :pserver:anonymous@cvs-mirror.mozilla.org/cvsroot co mozilla/client.mk | ||
7 | cd mozilla | ||
8 | oe_runmake -f client.mk checkout | ||
9 | cd .. | ||
10 | tar czf ${DL_DIR}/mozilla_cvs-mirror.mozilla.org__${SRCDATE}.tar.gz mozilla | ||
11 | fi | ||
12 | } | ||