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