wok view firefox/receipt @ rev 9195

busybox: add conspy fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 09 22:01:54 2011 +0100 (2011-03-09)
parents 95b630dd602d
children 62e25e868000
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox"
4 VERSION="3.6.15"
5 CATEGORY="network"
6 SHORT_DESC="User friendly, secure and fast web browser."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ sqlite dbus dbus-glib glib jpeg xorg-libX11 xorg-libXdamage alsa-lib xorg-libXt libfirefox libnotify"
9 BUILD_DEPENDS="xorg-dev gtk+-dev zip libIDL coreutils findutils xorg-libXft-dev \
10 dbus-dev dbus-glib-dev alsa-lib alsa-lib-dev libnotify-dev wireless_tools-dev perl \
11 python"
12 TARBALL="$PACKAGE-$VERSION.source.tar.bz2"
13 WEB_SITE="http://www.mozilla.org/"
14 WGET_URL="http://releases.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/source/$TARBALL"
15 CONFIG_FILES="/etc/firefox"
16 TAGS="browser"
18 # Rules to configure and make the package.
19 #
20 # A long compile time... dont forget to build libidl before and check the
21 # .mozconfig file from the stuff and the stuff/README document.
22 #
23 compile_rules()
24 {
25 # Move the mozilla source tree to $PACKAGE-$VERSION to keep variables
26 # and to have a nice clean.
27 mv mozilla-* $PACKAGE-$VERSION 2>/dev/null
28 cp -a stuff/firefox.mozconfig $src/.mozconfig
29 cd $src
30 sed -i 's/xtype/type/' toolkit/mozapps/installer/packager.mk
31 ./configure $CONFIGURE_ARGS &&
32 make -j 4 &&
33 make DESTDIR=$PWD/_pkg install &&
34 cp -a xpcom/typelib $PWD/_pkg
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr/lib/$PACKAGE-$VERSION $fs/usr/share $fs/etc
41 cp -a $_pkg/usr/bin $fs/usr
42 cp -a $_pkg/usr/lib/$PACKAGE-$VERSION $fs/usr/lib
44 # Home page, bookmarks file and branding.
45 cp -a stuff/browserconfig.properties $fs/usr/lib/$PACKAGE-$VERSION
46 cp -a stuff/bookmarks.html \
47 $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
48 cp -a stuff/firefox-branding.js \
49 $fs/usr/lib/$PACKAGE-$VERSION/defaults/pref/
51 # User preference.
52 cp -a stuff/prefs.js $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
53 cp -a stuff/userChrome.css \
54 $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile/chrome
56 # Move default config to /etc/firefox (/usr maybe read-only)
57 for i in defaults browserconfig.properties ; do
58 mv -f $fs/usr/lib/$PACKAGE-$VERSION/$i $fs/etc/$PACKAGE
59 done
60 ln -s /etc/$PACKAGE/browserconfig.properties $fs/usr/lib/$PACKAGE-$VERSION
61 ln -s /etc/$PACKAGE $fs/usr/lib/$PACKAGE-$VERSION/defaults
63 # EULA is accepted by SliTaz project.
64 sed -i s:'pref("browser.EULA.3.accepted", false);':'pref("browser.EULA.3.accepted", true);': \
65 $fs/etc/firefox/pref/firefox.js
67 # Locale fr
68 # tar xjf stuff/langpack-fr@firefox.mozilla.org.tar.bz2 \
69 # -C $fs/usr/lib/$PACKAGE-$VERSION/extensions
70 #sed -i "s/maxVersion>3.0../maxVersion>$VERSION/" \
71 # $fs/usr/lib/$PACKAGE-$VERSION/extensions/langpack*/install.rdf
73 # Search Plugin (by: oddball)
74 cp -a stuff/searchplugins $fs/usr/lib/firefox-$VERSION/
75 chown -R root.root $fs
77 # Remove unnecessary files.
78 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/dictionaries/*
79 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/icons
80 # split firefox libs
81 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/*.so
82 #retain big firefox libs
83 cp $_pkg/usr/lib/$PACKAGE-$VERSION/libxul.so \
84 $_pkg/usr/lib/$PACKAGE-$VERSION/libmozjs.so \
85 $fs/usr/lib/$PACKAGE-$VERSION
87 }
89 # Pre - Post install command to set default locale.
90 pre_install()
91 {
92 local root
93 root=$1
94 # Get old plugins
95 mkdir /tmp/firefox-plugins-$$
96 cp -a $root/usr/lib/firefox-*/plugins/* /tmp/firefox-plugins-$$ 2> /dev/null
97 # Remove old libs and configs
98 rm -rf $root/usr/lib/firefox-*/plugins
99 rm -rf $root/usr/lib/firefox-*/dictionaries
100 rm -rf $root/etc/firefox
101 }
102 post_install()
103 {
104 local root
105 root=$1
106 if grep -q "fr_*" $root/etc/locale.conf 2>/dev/null; then
107 sed -i 's/en-US/fr/' \
108 $root/etc/firefox/pref/firefox-l10n.js
109 fi
110 for i in /tmp/firefox-plugins-$$/* ; do
111 [ -e $i ] || continue
112 [ -e /usr/lib/firefox-*/plugins/$(basename $i) ] && continue
113 cp -a $i /usr/lib/firefox-*/plugins/
114 done
115 rm -rf /tmp/firefox-plugins-$$
116 }