wok annotate firefox/receipt @ rev 341

lxpanel for a Freedesktop standar menu and useful applets
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 05 16:01:49 2008 +0100 (2008-03-05)
parents 4959e5789caa
children eb4e6a1af180
rev   line source
pankso@45 1 # SliTaz package receipt.
pankso@45 2
pankso@45 3 PACKAGE="firefox"
pankso@197 4 VERSION="2.0.0.12"
pankso@197 5 CATEGORY="network"
pankso@45 6 SHORT_DESC="User friendly, secure and fast web browser."
pankso@45 7 MAINTAINER="pankso@slitaz.org"
pankso@45 8 DEPENDS="gtk+"
pankso@122 9 BUILD_DEPENDS="xorg-dev gtk+-dev zip libIDL coreutils"
pankso@45 10 TARBALL="$PACKAGE-$VERSION-source.tar.bz2"
pankso@45 11 WEB_SITE="http://www.mozilla.org/"
pankso@45 12 WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/source/$TARBALL"
pascal@153 13 JWM_MENU='Internet:<Program icon="mozicon.png" label="Mozilla Firefox">firefox</Program>'
pankso@45 14
pankso@45 15 # Rules to configure and make the package.
pankso@45 16 #
pankso@45 17 # A long compile time... dont forget to build libidl before and check the
pankso@45 18 # .mozconfig file from the stuff and the stuff/README document.
pankso@45 19 #
pankso@45 20 compile_rules()
pankso@45 21 {
pankso@45 22 # Move the mozilla source tree to $PACKAGE-$VERSION to keep variables
pankso@45 23 # and to have a nice clean.
pankso@45 24 #
pankso@45 25 mv mozilla $PACKAGE-$VERSION
pankso@45 26 cp -a stuff/firefox.mozconfig $src/.mozconfig
pankso@45 27 cd $src
pankso@45 28 ./configure $CONFIGURE_ARGS
pankso@45 29 make
pankso@45 30 make DESTDIR=$PWD/_pkg install
pankso@45 31 }
pankso@45 32
pankso@45 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@45 34 genpkg_rules()
pankso@45 35 {
pankso@45 36 mkdir -p $fs/usr/lib $fs/usr/share/pixmaps $fs/etc
pankso@45 37 cp -a $_pkg/usr/bin $fs/usr
pankso@45 38 cp -a $_pkg/usr/lib/$PACKAGE-$VERSION $fs/usr/lib
pankso@45 39
pankso@197 40 # SliTaz Web site for the home page, bookmarks file and branding.
pankso@45 41 cp -a stuff/browserconfig.properties $fs/usr/lib/$PACKAGE-$VERSION
pankso@45 42 cp -a stuff/bookmarks.html $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
pankso@197 43 cp -a stuff/firefox-branding.js \
pankso@197 44 $fs/usr/lib/$PACKAGE-$VERSION/defaults/pref/
pankso@45 45
pankso@45 46 # User preference.
pankso@45 47 cp -a stuff/prefs.js $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
pankso@45 48 cp -a stuff/userChrome.css \
pankso@45 49 $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile/chrome
pankso@45 50
pankso@45 51 # Mozilla default pixmaps and Firefox icon from the stuff.
pankso@45 52 cp -a stuff/mozicon.png $fs/usr/share/pixmaps
pankso@45 53 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/icons
pankso@45 54
pankso@45 55 # Move default config to /etc/firefox (/usr maybe read-only)
pankso@45 56 mv -f $fs/usr/lib/$PACKAGE-$VERSION/defaults $fs/etc/$PACKAGE
pankso@45 57 ln -s /etc/$PACKAGE $fs/usr/lib/$PACKAGE-$VERSION/defaults
pankso@45 58
pankso@45 59 # Strip
pankso@45 60 strip -s $fs/usr/lib/$PACKAGE-$VERSION/* 2>/dev/null
pankso@45 61
pankso@45 62 # Locale fr
pankso@45 63 tar xjf stuff/langpack-fr@firefox.mozilla.org.tar.bz2 \
pankso@45 64 -C $fs/usr/lib/$PACKAGE-$VERSION/extensions
pankso@45 65
pankso@45 66 # Remove unnecessary files.
pankso@45 67 rm -f $fs/usr/lib/$PACKAGE-$VERSION/TestGtkEmbed
pankso@45 68 }
pankso@45 69
pankso@45 70 # Pre - Post install command to set default locale.
pankso@45 71 pre_install()
pankso@45 72 {
pankso@45 73 local root
pankso@45 74 root=$1
pankso@45 75 # Remove old libs
pankso@45 76 rm -rf $root/usr/lib/firefox-*
pankso@45 77 }
pankso@45 78 post_install()
pankso@45 79 {
pankso@45 80 local root
pankso@45 81 root=$1
pankso@45 82 if grep -q "fr_*" $root/etc/locale.conf; then
pankso@45 83 sed -i 's/en-US/fr/' \
pankso@45 84 $root/usr/lib/$PACKAGE-$VERSION/defaults/pref/firefox-l10n.js
pankso@45 85 fi
pankso@45 86 }