wok view firefox/receipt @ rev 1709

firefox: hack langpack-fr
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 15 21:37:01 2008 +0000 (2008-11-15)
parents 200cf2d8f392
children b8b025e1fc84
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox"
4 VERSION="3.0.4"
5 CATEGORY="network"
6 SHORT_DESC="User friendly, secure and fast web browser."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ sqlite"
9 BUILD_DEPENDS="xorg-dev gtk+-dev zip libIDL coreutils findutils xorg-libXft-dev dbus-glib-dev"
10 TARBALL="$PACKAGE-$VERSION-source.tar.bz2"
11 WEB_SITE="http://www.mozilla.org/"
12 WGET_URL="http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/source/$TARBALL"
13 CONFIG_FILES="/etc/firefox"
15 # Rules to configure and make the package.
16 #
17 # A long compile time... dont forget to build libidl before and check the
18 # .mozconfig file from the stuff and the stuff/README document.
19 #
20 compile_rules()
21 {
22 # Move the mozilla source tree to $PACKAGE-$VERSION to keep variables
23 # and to have a nice clean.
24 #
25 mv mozilla $PACKAGE-$VERSION
26 cp -a stuff/firefox.mozconfig $src/.mozconfig
27 cd $src
28 ./configure $CONFIGURE_ARGS
29 make
30 make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib $fs/usr/share $fs/etc
37 cp -a $_pkg/usr/bin $fs/usr
38 cp -a $_pkg/usr/lib/$PACKAGE-$VERSION $fs/usr/lib
40 # SliTaz Web site for the home page, bookmarks file and branding.
41 cp -a stuff/browserconfig.properties $fs/usr/lib/$PACKAGE-$VERSION
42 cp -a stuff/bookmarks.html $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
43 cp -a stuff/firefox-branding.js \
44 $fs/usr/lib/$PACKAGE-$VERSION/defaults/pref/
46 # User preference.
47 cp -a stuff/prefs.js $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
48 cp -a stuff/userChrome.css \
49 $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile/chrome
51 # Move default config to /etc/firefox (/usr maybe read-only)
52 for i in defaults browserconfig.properties ; do
53 mv -f $fs/usr/lib/$PACKAGE-$VERSION/$i $fs/etc/$PACKAGE
54 ln -s /etc/$PACKAGE $fs/usr/lib/$PACKAGE-$VERSION/$i
55 done
56 # EULA is accepted by SliTaz project.
57 sed -i s:'pref("browser.EULA.3.accepted", false);':'pref("browser.EULA.3.accepted", true);': \
58 $fs/etc/firefox/pref/firefox.js
60 # Locale fr
61 tar xjf stuff/langpack-fr@firefox.mozilla.org.tar.bz2 \
62 -C $fs/usr/lib/$PACKAGE-$VERSION/extensions
63 sed -i "s/maxVersion>3.0../maxVersion>$VERSION/" \
64 $fs/usr/lib/$PACKAGE-$VERSION/extensions/langpack*/install.rdf
67 # Search Plugin (by: oddball)
68 cp -a stuff/searchplugins $fs/usr/lib/firefox-$VERSION/
69 chown -R root.root $fs
71 # Remove unnecessary files.
72 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/dictionaries/*
73 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/icons
74 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/libsqlite3.so
75 }
77 # Pre - Post install command to set default locale.
78 pre_install()
79 {
80 local root
81 root=$1
82 # Get old plugins
83 mkdir /tmp/firefox-plugins-$$
84 cp -a $root/usr/lib/firefox-*/plugins/* /tmp/firefox-plugins-$$ 2> /dev/null
85 # Remove old libs
86 rm -rf $root/usr/lib/firefox-*
87 }
88 post_install()
89 {
90 local root
91 root=$1
92 if grep -q "fr_*" $root/etc/locale.conf 2>/dev/null; then
93 sed -i 's/en-US/fr/' \
94 $root/etc/firefox/pref/firefox-l10n.js
95 fi
96 for i in /tmp/firefox-plugins-$$/* ; do
97 [ -e $i ] || continue
98 [ -e /usr/lib/firefox-*/plugins/$(basename $i) ] && continue
99 cp -a $i /usr/lib/firefox-*/plugins/
100 done
101 rm -rf /tmp/firefox-plugins-$$
102 }