wok view firefox/receipt @ rev 9539

Add setuptools to python-webob build depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Apr 08 13:48:25 2011 +0000 (2011-04-08)
parents 62e25e868000
children 2e0f0123456b
line source
1 # SliTaz package receipt.
3 PACKAGE="firefox"
4 VERSION="4.0"
5 CATEGORY="network"
6 SHORT_DESC="User friendly, secure and fast web browser."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ sqlite dbus dbus-glib glib jpeg xorg-libX11 xorg-libXdamage alsa-lib xorg-libXt libfirefox libnotify"
9 BUILD_DEPENDS="gtk+-dev zip libIDL coreutils findutils xorg-libXft-dev \
10 dbus-dev dbus-glib-dev alsa-lib alsa-lib-dev libnotify-dev wireless_tools-dev perl \
11 python yasm mesa-dev"
12 TARBALL="$PACKAGE-$VERSION.source.tar.bz2"
13 WEB_SITE="http://www.mozilla.org/"
14 WGET_URL="http://releases.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/source/$TARBALL"
15 CONFIG_FILES="/etc/firefox"
16 TAGS="browser"
18 # Rules to configure and make the package.
19 #
20 # A long compile time... dont forget to build libidl before and check the
21 # .mozconfig file from the stuff and the stuff/README document.
22 #
23 compile_rules()
24 {
25 cp -a $stuff/firefox.mozconfig $src/.mozconfig
26 cd $src
27 sed -i 's/xtype/type/' toolkit/mozapps/installer/packager.mk
28 ./configure $CONFIGURE_ARGS &&
29 make -j 4 &&
30 make DESTDIR=$PWD/_pkg install &&
31 cp -a xpcom/typelib $PWD/_pkg
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 i=$src
38 mkdir -p $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile/chrome $fs/usr/share $fs/etc
39 cp -a $_pkg/usr/bin $fs/usr
40 cp -a $_pkg/usr/lib/$PACKAGE-$VERSION $fs/usr/lib
42 # Home page, bookmarks file and branding.
43 cp -a $stuff/browserconfig.properties $fs/usr/lib/$PACKAGE-$VERSION
44 cp -a $stuff/bookmarks.html \
45 $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
46 cp -a $stuff/firefox-branding.js \
47 $fs/usr/lib/$PACKAGE-$VERSION/defaults/pref/firefox.js
49 # User preference.
50 cp -a $stuff/prefs.js $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile
51 cp -a $stuff/userChrome.css \
52 $fs/usr/lib/$PACKAGE-$VERSION/defaults/profile/chrome
54 # Move default config to /etc/firefox (/usr maybe read-only)
55 for i in defaults browserconfig.properties ; do
56 mv -f $fs/usr/lib/$PACKAGE-$VERSION/$i $fs/etc/$PACKAGE
57 done
60 ln -s /etc/$PACKAGE/browserconfig.properties $fs/usr/lib/$PACKAGE-$VERSION
61 ln -s /etc/$PACKAGE $fs/usr/lib/$PACKAGE-$VERSION/defaults
63 # EULA is accepted by SliTaz project.
64 sed -i s:'pref("browser.EULA.3.accepted", false);':'pref("browser.EULA.3.accepted", true);': \
65 $fs/etc/firefox/pref/firefox.js
67 # Locale fr
68 # tar xjf stuff/langpack-fr@firefox.mozilla.org.tar.bz2 \
69 # -C $fs/usr/lib/$PACKAGE-$VERSION/extensions
70 #sed -i "s/maxVersion>3.0../maxVersion>$VERSION/" \
71 # $fs/usr/lib/$PACKAGE-$VERSION/extensions/langpack*/install.rdf
73 # Search Plugin (by: oddball)
74 cp -a $stuff/searchplugins $fs/usr/lib/firefox-$VERSION/
75 chown -R root.root $fs
77 # Remove unnecessary files.
78 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/dictionaries/*
79 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/icons
80 # split firefox libs
81 rm -rf $fs/usr/lib/$PACKAGE-$VERSION/*.so
82 #retain big firefox libs
83 cp $_pkg/usr/lib/$PACKAGE-$VERSION/libxul.so \
84 $fs/usr/lib/$PACKAGE-$VERSION
86 }
88 # Pre - Post install command to set default locale.
89 pre_install()
90 {
91 local root
92 root=$1
93 # Get old plugins
94 mkdir /tmp/firefox-plugins-$$
95 cp -a $root/usr/lib/firefox-*/plugins/* /tmp/firefox-plugins-$$ 2> /dev/null
96 # Remove old libs and configs
97 rm -rf $root/usr/lib/firefox-*/plugins
98 rm -rf $root/usr/lib/firefox-*/dictionaries
99 rm -rf $root/etc/firefox
100 }
101 post_install()
102 {
103 local root
104 root=$1
105 if grep -q "fr_*" $root/etc/locale.conf 2>/dev/null; then
106 sed -i 's/en-US/fr/' \
107 $root/etc/firefox/pref/firefox-l10n.js
108 fi
109 for i in /tmp/firefox-plugins-$$/* ; do
110 [ -e $i ] || continue
111 [ -e /usr/lib/firefox-*/plugins/$(basename $i) ] && continue
112 cp -a $i /usr/lib/firefox-*/plugins/
113 done
114 rm -rf /tmp/firefox-plugins-$$
115 }