wok view firefox/receipt @ rev 213

Refix in slitaz-hacker (when using tazlito gen-distro)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Feb 14 16:42:58 2008 +0100 (2008-02-14)
parents 4959e5789caa
children eb4e6a1af180
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox"
4 VERSION="2.0.0.12"
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"
13 JWM_MENU='Internet:<Program icon="mozicon.png" label="Mozilla Firefox">firefox</Program>'
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/pixmaps $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 # Mozilla default pixmaps and Firefox icon from the stuff.
52 cp -a stuff/mozicon.png $fs/usr/share/pixmaps
53 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/icons
55 # Move default config to /etc/firefox (/usr maybe read-only)
56 mv -f $fs/usr/lib/$PACKAGE-$VERSION/defaults $fs/etc/$PACKAGE
57 ln -s /etc/$PACKAGE $fs/usr/lib/$PACKAGE-$VERSION/defaults
59 # Strip
60 strip -s $fs/usr/lib/$PACKAGE-$VERSION/* 2>/dev/null
62 # Locale fr
63 tar xjf stuff/langpack-fr@firefox.mozilla.org.tar.bz2 \
64 -C $fs/usr/lib/$PACKAGE-$VERSION/extensions
66 # Remove unnecessary files.
67 rm -f $fs/usr/lib/$PACKAGE-$VERSION/TestGtkEmbed
68 }
70 # Pre - Post install command to set default locale.
71 pre_install()
72 {
73 local root
74 root=$1
75 # Remove old libs
76 rm -rf $root/usr/lib/firefox-*
77 }
78 post_install()
79 {
80 local root
81 root=$1
82 if grep -q "fr_*" $root/etc/locale.conf; then
83 sed -i 's/en-US/fr/' \
84 $root/usr/lib/$PACKAGE-$VERSION/defaults/pref/firefox-l10n.js
85 fi
86 }