wok view firefox/receipt @ rev 771

Up: sliaz-tools (2.3), slitaz-configs (2.1) and use desktopbox to logout from lxpanel
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 12 02:16:34 2008 +0200 (2008-05-12)
parents 6a766fc831e1
children a7c958bdba6f
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox"
4 VERSION="2.0.0.14"
5 CATEGORY="network"
6 SHORT_DESC="User friendly, secure and fast web browser."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="xorg-dev gtk+-dev zip libIDL coreutils"
10 TARBALL="$PACKAGE-$VERSION-source.tar.bz2"
11 WEB_SITE="http://www.mozilla.org/"
12 WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/source/$TARBALL"
14 # Rules to configure and make the package.
15 #
16 # A long compile time... dont forget to build libidl before and check the
17 # .mozconfig file from the stuff and the stuff/README document.
18 #
19 compile_rules()
20 {
21 # Move the mozilla source tree to $PACKAGE-$VERSION to keep variables
22 # and to have a nice clean.
23 #
24 mv mozilla $PACKAGE-$VERSION
25 cp -a stuff/firefox.mozconfig $src/.mozconfig
26 cd $src
27 ./configure $CONFIGURE_ARGS
28 make
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib $fs/usr/share $fs/etc
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib/$PACKAGE-$VERSION $fs/usr/lib
39 # SliTaz Web site for the home page, bookmarks file and branding.
40 cp -a stuff/browserconfig.properties $fs/usr/lib/$PACKAGE-$VERSION
41 cp -a stuff/bookmarks.html $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
42 cp -a stuff/firefox-branding.js \
43 $fs/usr/lib/$PACKAGE-$VERSION/defaults/pref/
45 # User preference.
46 cp -a stuff/prefs.js $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
47 cp -a stuff/userChrome.css \
48 $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile/chrome
50 # Remove Mozilla default icons.
51 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/icons
53 # Move default config to /etc/firefox (/usr maybe read-only)
54 mv -f $fs/usr/lib/$PACKAGE-$VERSION/defaults $fs/etc/$PACKAGE
55 ln -s /etc/$PACKAGE $fs/usr/lib/$PACKAGE-$VERSION/defaults
57 # Locale fr
58 tar xjf stuff/langpack-fr@firefox.mozilla.org.tar.bz2 \
59 -C $fs/usr/lib/$PACKAGE-$VERSION/extensions
61 # Search Plugin (by: oddball)
62 cp -a stuff/searchplugins $fs/usr/lib/firefox-$VERSION/
64 # Home page
65 cp -a stuff/webhome $fs/usr/share
66 chown -R root.root $fs
68 # Remove unnecessary files.
69 rm -f $fs/usr/lib/$PACKAGE-$VERSION/TestGtkEmbed
70 }
72 # Pre - Post install command to set default locale.
73 pre_install()
74 {
75 local root
76 root=$1
77 # Remove old libs
78 rm -rf $root/usr/lib/firefox-*
79 }
80 post_install()
81 {
82 local root
83 root=$1
84 if grep -q "fr_*" $root/etc/locale.conf; then
85 sed -i 's/en-US/fr/' \
86 $root/usr/lib/$PACKAGE-$VERSION/defaults/pref/firefox-l10n.js
87 fi
88 }