wok view firefox/receipt @ rev 895

slitaz-boot-script: post installl comd to change hacker id/group to 1000
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jun 10 16:54:11 2008 +0200 (2008-06-10)
parents c2688245d108
children 005eaf005c74
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox"
4 VERSION="3.0-rc2"
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"
10 TARBALL="$PACKAGE-3.0rc2-source.tar.bz2"
11 WEB_SITE="http://www.mozilla.org/"
12 WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0rc2/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-3.0 $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-3.0
41 cp -a stuff/bookmarks.html $fs/usr/lib/$PACKAGE-3.0/defaults/profile
42 cp -a stuff/firefox-branding.js \
43 $fs/usr/lib/$PACKAGE-3.0/defaults/pref/
45 # User preference.
46 cp -a stuff/prefs.js $fs/usr/lib/$PACKAGE-3.0/defaults/profile
47 cp -a stuff/userChrome.css \
48 $fs/usr/lib/$PACKAGE-3.0/defaults/profile/chrome
50 # Move default config to /etc/firefox (/usr maybe read-only)
51 mv -f $fs/usr/lib/$PACKAGE-3.0/defaults $fs/etc/$PACKAGE
52 ln -s /etc/$PACKAGE $fs/usr/lib/$PACKAGE-3.0/defaults
54 # Locale fr
55 tar xjf stuff/langpack-fr@firefox.mozilla.org.tar.bz2 \
56 -C $fs/usr/lib/$PACKAGE-3.0/extensions
58 # Search Plugin (by: oddball)
59 cp -a stuff/searchplugins $fs/usr/lib/firefox-3.0/
61 # Home page
62 cp -a stuff/webhome $fs/usr/share
63 chown -R root.root $fs
65 # Remove unnecessary files.
66 #rm -f $fs/usr/lib/$PACKAGE-3.0/TestGtkEmbed
67 rm -rf $fs/usr/lib/$PACKAGE-3.0/dictionaries/*
68 rm -rf $fs/usr/lib/$PACKAGE-3.0/icons
69 rm -rf $fs/usr/lib/$PACKAGE-3.0/libsqlite3.so
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/etc/firefox/pref/firefox-l10n.js
87 fi
88 }