From 6169bd3157d4a8b1afb0100c16037d993d451e3d Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Fri, 11 Aug 2006 13:54:51 +0000 Subject: firefox: upgrade 1.5.0.1 to 1.5.0.6 (builds, not tested on device) --- packages/mozilla/firefox-1.5.0.1/.mtn2git_empty | 0 packages/mozilla/firefox-1.5.0.1/jsautocfg.h | 52 ------------------------ packages/mozilla/firefox-1.5.0.1/mozconfig | 53 ------------------------- packages/mozilla/firefox-1.5.0.6/.mtn2git_empty | 0 packages/mozilla/firefox-1.5.0.6/jsautocfg.h | 52 ++++++++++++++++++++++++ packages/mozilla/firefox-1.5.0.6/mozconfig | 53 +++++++++++++++++++++++++ packages/mozilla/firefox_1.5.0.1.bb | 18 --------- packages/mozilla/firefox_1.5.0.6.bb | 18 +++++++++ 8 files changed, 123 insertions(+), 123 deletions(-) delete mode 100644 packages/mozilla/firefox-1.5.0.1/.mtn2git_empty delete mode 100644 packages/mozilla/firefox-1.5.0.1/jsautocfg.h delete mode 100644 packages/mozilla/firefox-1.5.0.1/mozconfig create mode 100644 packages/mozilla/firefox-1.5.0.6/.mtn2git_empty create mode 100644 packages/mozilla/firefox-1.5.0.6/jsautocfg.h create mode 100644 packages/mozilla/firefox-1.5.0.6/mozconfig delete mode 100644 packages/mozilla/firefox_1.5.0.1.bb create mode 100644 packages/mozilla/firefox_1.5.0.6.bb diff --git a/packages/mozilla/firefox-1.5.0.1/.mtn2git_empty b/packages/mozilla/firefox-1.5.0.1/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/packages/mozilla/firefox-1.5.0.1/jsautocfg.h b/packages/mozilla/firefox-1.5.0.1/jsautocfg.h deleted file mode 100644 index 05f3dad50a..0000000000 --- a/packages/mozilla/firefox-1.5.0.1/jsautocfg.h +++ /dev/null @@ -1,52 +0,0 @@ -#ifndef js_cpucfg___ -#define js_cpucfg___ - -/* Lovingly crafted by hand avoiding Mozilla stupidity */ - -#define IS_LITTLE_ENDIAN 1 -#undef IS_BIG_ENDIAN - -#define JS_BYTES_PER_BYTE 1L -#define JS_BYTES_PER_SHORT 2L -#define JS_BYTES_PER_INT 4L -#define JS_BYTES_PER_INT64 8L -#define JS_BYTES_PER_LONG 4L -#define JS_BYTES_PER_FLOAT 4L -#define JS_BYTES_PER_DOUBLE 8L -#define JS_BYTES_PER_WORD 4L -#define JS_BYTES_PER_DWORD 8L - -#define JS_BITS_PER_BYTE 8L -#define JS_BITS_PER_SHORT 16L -#define JS_BITS_PER_INT 32L -#define JS_BITS_PER_INT64 64L -#define JS_BITS_PER_LONG 32L -#define JS_BITS_PER_FLOAT 32L -#define JS_BITS_PER_DOUBLE 64L -#define JS_BITS_PER_WORD 32L - -#define JS_BITS_PER_BYTE_LOG2 3L -#define JS_BITS_PER_SHORT_LOG2 4L -#define JS_BITS_PER_INT_LOG2 5L -#define JS_BITS_PER_INT64_LOG2 6L -#define JS_BITS_PER_LONG_LOG2 5L -#define JS_BITS_PER_FLOAT_LOG2 5L -#define JS_BITS_PER_DOUBLE_LOG2 6L -#define JS_BITS_PER_WORD_LOG2 5L - -#define JS_ALIGN_OF_SHORT 2L -#define JS_ALIGN_OF_INT 4L -#define JS_ALIGN_OF_LONG 4L -#define JS_ALIGN_OF_INT64 4L -#define JS_ALIGN_OF_FLOAT 4L -#define JS_ALIGN_OF_DOUBLE 4L -#define JS_ALIGN_OF_POINTER 4L -#define JS_ALIGN_OF_WORD 4L - -#define JS_BYTES_PER_WORD_LOG2 2L -#define JS_BYTES_PER_DWORD_LOG2 3L -#define JS_WORDS_PER_DWORD_LOG2 2L - -#define JS_STACK_GROWTH_DIRECTION (-1) - -#endif /* js_cpucfg___ */ diff --git a/packages/mozilla/firefox-1.5.0.1/mozconfig b/packages/mozilla/firefox-1.5.0.1/mozconfig deleted file mode 100644 index 025b396ac7..0000000000 --- a/packages/mozilla/firefox-1.5.0.1/mozconfig +++ /dev/null @@ -1,53 +0,0 @@ -. $topsrcdir/browser/config/mozconfig - -# use GTK+-2 widget set with XFT font rendering -ac_add_options --enable-default-toolkit=gtk2 -ac_add_options --enable-xft -ac_add_options --disable-freetype2 - -# enable minimal profile support -ac_add_options --disable-profilesharing -ac_add_options --disable-profilelocking -ac_add_options --enable-single-profile - -ac_add_options --with-system-zlib -ac_add_options --with-system-jpeg -ac_add_options --with-system-png - -ac_add_options --disable-accessibility -ac_add_options --disable-composer -#ac_add_options --enable-plaintext-editor-only -ac_add_options --disable-mailnews -ac_add_options --disable-ldap -#ac_add_options --disable-postscript -ac_add_options --disable-mathml -ac_add_options --disable-jsd -ac_add_options --disable-installer -ac_add_options --disable-xprint -ac_add_options --disable-necko-disk-cache - -# configure necko to allocate smaller network buffers -ac_add_options --enable-necko-small-buffers - -# disable debug logging and tests -#ac_add_options --disable-dtd-debug -ac_add_options --disable-logging -ac_add_options --disable-debug -ac_add_options --disable-gtktest -ac_add_options --disable-tests - -# build crypto module (PSM + NSS) -ac_add_options --enable-crypto - -# build minimal set of protocol handlers -ac_add_options --enable-necko-protocols=http,file,res,jar,ftp,about,viewsource - -# build minimal set of image decoders -ac_add_options --enable-image-decoders=png,gif,jpeg - -#ac_add_options --enable-reorder -#ac_add_options --enable-elf-dynstr-gc - -# enable static build -#ac_add_options --disable-shared -#ac_add_options --enable-static diff --git a/packages/mozilla/firefox-1.5.0.6/.mtn2git_empty b/packages/mozilla/firefox-1.5.0.6/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/mozilla/firefox-1.5.0.6/jsautocfg.h b/packages/mozilla/firefox-1.5.0.6/jsautocfg.h new file mode 100644 index 0000000000..05f3dad50a --- /dev/null +++ b/packages/mozilla/firefox-1.5.0.6/jsautocfg.h @@ -0,0 +1,52 @@ +#ifndef js_cpucfg___ +#define js_cpucfg___ + +/* Lovingly crafted by hand avoiding Mozilla stupidity */ + +#define IS_LITTLE_ENDIAN 1 +#undef IS_BIG_ENDIAN + +#define JS_BYTES_PER_BYTE 1L +#define JS_BYTES_PER_SHORT 2L +#define JS_BYTES_PER_INT 4L +#define JS_BYTES_PER_INT64 8L +#define JS_BYTES_PER_LONG 4L +#define JS_BYTES_PER_FLOAT 4L +#define JS_BYTES_PER_DOUBLE 8L +#define JS_BYTES_PER_WORD 4L +#define JS_BYTES_PER_DWORD 8L + +#define JS_BITS_PER_BYTE 8L +#define JS_BITS_PER_SHORT 16L +#define JS_BITS_PER_INT 32L +#define JS_BITS_PER_INT64 64L +#define JS_BITS_PER_LONG 32L +#define JS_BITS_PER_FLOAT 32L +#define JS_BITS_PER_DOUBLE 64L +#define JS_BITS_PER_WORD 32L + +#define JS_BITS_PER_BYTE_LOG2 3L +#define JS_BITS_PER_SHORT_LOG2 4L +#define JS_BITS_PER_INT_LOG2 5L +#define JS_BITS_PER_INT64_LOG2 6L +#define JS_BITS_PER_LONG_LOG2 5L +#define JS_BITS_PER_FLOAT_LOG2 5L +#define JS_BITS_PER_DOUBLE_LOG2 6L +#define JS_BITS_PER_WORD_LOG2 5L + +#define JS_ALIGN_OF_SHORT 2L +#define JS_ALIGN_OF_INT 4L +#define JS_ALIGN_OF_LONG 4L +#define JS_ALIGN_OF_INT64 4L +#define JS_ALIGN_OF_FLOAT 4L +#define JS_ALIGN_OF_DOUBLE 4L +#define JS_ALIGN_OF_POINTER 4L +#define JS_ALIGN_OF_WORD 4L + +#define JS_BYTES_PER_WORD_LOG2 2L +#define JS_BYTES_PER_DWORD_LOG2 3L +#define JS_WORDS_PER_DWORD_LOG2 2L + +#define JS_STACK_GROWTH_DIRECTION (-1) + +#endif /* js_cpucfg___ */ diff --git a/packages/mozilla/firefox-1.5.0.6/mozconfig b/packages/mozilla/firefox-1.5.0.6/mozconfig new file mode 100644 index 0000000000..025b396ac7 --- /dev/null +++ b/packages/mozilla/firefox-1.5.0.6/mozconfig @@ -0,0 +1,53 @@ +. $topsrcdir/browser/config/mozconfig + +# use GTK+-2 widget set with XFT font rendering +ac_add_options --enable-default-toolkit=gtk2 +ac_add_options --enable-xft +ac_add_options --disable-freetype2 + +# enable minimal profile support +ac_add_options --disable-profilesharing +ac_add_options --disable-profilelocking +ac_add_options --enable-single-profile + +ac_add_options --with-system-zlib +ac_add_options --with-system-jpeg +ac_add_options --with-system-png + +ac_add_options --disable-accessibility +ac_add_options --disable-composer +#ac_add_options --enable-plaintext-editor-only +ac_add_options --disable-mailnews +ac_add_options --disable-ldap +#ac_add_options --disable-postscript +ac_add_options --disable-mathml +ac_add_options --disable-jsd +ac_add_options --disable-installer +ac_add_options --disable-xprint +ac_add_options --disable-necko-disk-cache + +# configure necko to allocate smaller network buffers +ac_add_options --enable-necko-small-buffers + +# disable debug logging and tests +#ac_add_options --disable-dtd-debug +ac_add_options --disable-logging +ac_add_options --disable-debug +ac_add_options --disable-gtktest +ac_add_options --disable-tests + +# build crypto module (PSM + NSS) +ac_add_options --enable-crypto + +# build minimal set of protocol handlers +ac_add_options --enable-necko-protocols=http,file,res,jar,ftp,about,viewsource + +# build minimal set of image decoders +ac_add_options --enable-image-decoders=png,gif,jpeg + +#ac_add_options --enable-reorder +#ac_add_options --enable-elf-dynstr-gc + +# enable static build +#ac_add_options --disable-shared +#ac_add_options --enable-static diff --git a/packages/mozilla/firefox_1.5.0.1.bb b/packages/mozilla/firefox_1.5.0.1.bb deleted file mode 100644 index 8f888db5ca..0000000000 --- a/packages/mozilla/firefox_1.5.0.1.bb +++ /dev/null @@ -1,18 +0,0 @@ -PR = "r0" -SRC_URI = "http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${PV}/source/firefox-${PV}-source.tar.bz2 \ - file://xptcstubs.patch;patch=1 \ - file://no-xmb.patch;patch=1 \ - file://jsautocfg.h \ - file://extensions-hack.patch;patch=1" - -S = "${WORKDIR}/mozilla" -DEFAULT_PREFERENCE = "-1" - -inherit mozilla - -require firefox.inc - -do_compile_prepend() { - cp ${WORKDIR}/jsautocfg.h ${S}/js/src/ -} - diff --git a/packages/mozilla/firefox_1.5.0.6.bb b/packages/mozilla/firefox_1.5.0.6.bb new file mode 100644 index 0000000000..8f888db5ca --- /dev/null +++ b/packages/mozilla/firefox_1.5.0.6.bb @@ -0,0 +1,18 @@ +PR = "r0" +SRC_URI = "http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${PV}/source/firefox-${PV}-source.tar.bz2 \ + file://xptcstubs.patch;patch=1 \ + file://no-xmb.patch;patch=1 \ + file://jsautocfg.h \ + file://extensions-hack.patch;patch=1" + +S = "${WORKDIR}/mozilla" +DEFAULT_PREFERENCE = "-1" + +inherit mozilla + +require firefox.inc + +do_compile_prepend() { + cp ${WORKDIR}/jsautocfg.h ${S}/js/src/ +} + -- cgit v1.2.3 From 744e42a07d1f37859e3ec3741a45f11ee55d9307 Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Fri, 11 Aug 2006 14:04:07 +0000 Subject: aspell-native_0.50.5.bb : add native that is required by aspell language packs --- packages/aspell/aspell-native_0.50.5.bb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 packages/aspell/aspell-native_0.50.5.bb diff --git a/packages/aspell/aspell-native_0.50.5.bb b/packages/aspell/aspell-native_0.50.5.bb new file mode 100644 index 0000000000..e87c6c6fd5 --- /dev/null +++ b/packages/aspell/aspell-native_0.50.5.bb @@ -0,0 +1,16 @@ +SRC_URI = "ftp://ftp.gnu.org/gnu/aspell/aspell-${PV}.tar.gz \ + file://mk-dirs_h.py \ + file://makefile.patch;patch=1" +DESCRIPTION = "GNU Aspell spell-checker" +SECTION = "console/utils" +LICENSE="LGPL" +FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/aspell-${PV}" + +inherit autotools native + +S = "${WORKDIR}/aspell-${PV}" + +do_compile_prepend() { + install ${WORKDIR}/mk-dirs_h.py ${S}/common/mk-dirs_h +} + -- cgit v1.2.3 From aec8ea24516b5eea58058f6c9363c3dadb03517a Mon Sep 17 00:00:00 2001 From: Kristoffer Ericson Date: Fri, 11 Aug 2006 16:12:35 +0000 Subject: conf/distro/jlime-donkey.conf : Updating glibc * Changing glibc, glibc-initial, glibc-intermediate to 2.4 * Removing PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}libc-for-gcc: glibc-intermediate and putting arch specific inside local.conf instead. This due to some bitbake bug. --- conf/distro/jlime-donkey.conf | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/conf/distro/jlime-donkey.conf b/conf/distro/jlime-donkey.conf index fc432afecb..de0cee56fa 100644 --- a/conf/distro/jlime-donkey.conf +++ b/conf/distro/jlime-donkey.conf @@ -14,10 +14,9 @@ PREFERRED_PROVIDER_task-bootstrap = "task-bootstrap" #<> #<> We will set CVS DATE when things are known to work. #<> -PREFERRED_PROVIDERS = "virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial" +PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial" PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}gcc:gcc-cross" PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}g++:gcc-cross" -PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}libc-for-gcc:glibc" #<> We want this so we can crosscompile the kernel using gcc 3.4.3 #<> Also, select version of modules (and kernel) @@ -43,8 +42,8 @@ PREFERRED_VERSION_gcc = "4.1.1" PREFERRED_VERSION_gcc-cross = "4.1.1" PREFERRED_VERSION_gcc-cross-initial = "4.1.1" PREFERRED_VERSION_linux-libc-headers = "2.6.15.99" -PREFERRED_VERSION_glibc = "2.3.5+cvs20050627" -PREFERRED_VERSION_glibc-initial = "2.3.2" +PREFERRED_VERSION_glibc = "2.4" +PREFERRED_VERSION_glibc-intermediate = "2.4" require conf/distro/include/preferred-xorg-versions-X11R7.1.inc -- cgit v1.2.3 From 9420a9848facf3f32f45610beed446d2426ae66d Mon Sep 17 00:00:00 2001 From: Graeme Gregory Date: Fri, 11 Aug 2006 15:32:42 +0000 Subject: aspell5-en_6.0-0.bb : properly obey the licensing and add LICENSE field --- packages/aspell/aspell5-en_6.0-0.bb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/aspell/aspell5-en_6.0-0.bb b/packages/aspell/aspell5-en_6.0-0.bb index 8364df06a9..568e692ab9 100644 --- a/packages/aspell/aspell5-en_6.0-0.bb +++ b/packages/aspell/aspell5-en_6.0-0.bb @@ -1,4 +1,14 @@ +LICENSE = "Copyright file" SRC_URI = "ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell5-en-${PV}.tar.bz2" +PR="r1" require aspell-lang.inc +FILES_${PN} += "${docdir}/Copyright" +FILES_${PN}-doc = "" + +do_install_append() { + install -d ${D}${docdir} + install ${S}/Copyright ${D}${docdir} +} + -- cgit v1.2.3