wok-undigest rev 947

firefox: reducing log size
author Dominique Corbex <domcox@slitaz.org>
date Sun Mar 10 17:02:44 2013 +0100 (2013-03-10)
parents 712bdfdeea10
children ab8c3d68da92
files firefox/receipt firefox/stuff/mozconfig
line diff
     1.1 --- a/firefox/receipt	Sat Mar 09 18:18:19 2013 +0100
     1.2 +++ b/firefox/receipt	Sun Mar 10 17:02:44 2013 +0100
     1.3 @@ -6,9 +6,8 @@
     1.4  SHORT_DESC="User friendly, secure and fast web browser."
     1.5  MAINTAINER="pankso@slitaz.org"
     1.6  TARBALL="$PACKAGE-$VERSION.source.tar.bz2"
     1.7 -WEB_SITE="http://www.mozilla.org/"
     1.8 +WEB_SITE="http://www.mozilla.org/firefox"
     1.9  WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/source/$TARBALL"
    1.10 -CONFIG_FILES="/etc/firefox"
    1.11  TAGS="browser"
    1.12  
    1.13  DEPENDS="gtk+ sqlite dbus dbus-glib glib jpeg xorg-libX11 xorg-libXdamage \
    1.14 @@ -36,7 +35,7 @@
    1.15  	cp -a $stuff/mozconfig $src
    1.16  
    1.17  	# build firefox and create a firefox tarball
    1.18 -	make -f client.mk &&
    1.19 +	make -f client.mk | egrep -v "c++|nsinstall|python" &&
    1.20  	make -C obj-firefox/browser/installer
    1.21  
    1.22  	# install
     2.1 --- a/firefox/stuff/mozconfig	Sat Mar 09 18:18:19 2013 +0100
     2.2 +++ b/firefox/stuff/mozconfig	Sun Mar 10 17:02:44 2013 +0100
     2.3 @@ -22,12 +22,14 @@
     2.4  mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-firefox
     2.5  
     2.6  # Specify arch option and level of optimization:
     2.7 -ac_add_options --enable-optimize="$CFLAGS"
     2.8 +ac_add_options --enable-optimize="$CFLAGS -Wno-unused-function \
     2.9 +-Wno-unused-but-set-variable -Wno-unused-variable -Wno-variadic-macros"
    2.10  
    2.11  # If you have a multicore machine you can speed up the build by running
    2.12  # several jobs at once by uncommenting the following line and setting the
    2.13  # value to number of CPU cores:
    2.14 -mk_add_options MOZ_MAKE_FLAGS="-j$(grep processor /proc/cpuinfo | wc -l)"
    2.15 +mk_add_options MOZ_MAKE_FLAGS="$MAKEFLAGS"
    2.16 +
    2.17  
    2.18  # Reduce the log size:
    2.19  ac_add_options --silent