wok-6.x annotate seamonkey/receipt @ rev 19692
ntfs-3g: update genpkg-rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Feb 13 12:26:10 2017 +0100 (2017-02-13) |
parents | 17e313b5b9c1 |
children | c636d36601ac |
rev | line source |
---|---|
pankso@2747 | 1 # SliTaz package receipt. |
pankso@2747 | 2 |
pankso@2747 | 3 PACKAGE="seamonkey" |
slaxemulator@11819 | 4 VERSION="2.7.2" |
pankso@2747 | 5 CATEGORY="network" |
pankso@2747 | 6 SHORT_DESC="Seamonkey suite (browser, mail, news reader)." |
pankso@2747 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15593 | 8 LICENSE="GPL MPL" |
pankso@2747 | 9 TARBALL="$PACKAGE-$VERSION.source.tar.bz2" |
pankso@2747 | 10 WEB_SITE="http://www.seamonkey-project.org/" |
devl547@11335 | 11 WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases/$VERSION/source/$TARBALL" |
al@17501 | 12 TAGS="web-browser" |
pankso@2747 | 13 |
pascal@13796 | 14 DEPENDS="gtk+ glib jpeg xorg-libX11 libIDL alsa-lib xorg-libXt curl libnotify \ |
pascal@13796 | 15 libevent libvpx" |
pascal@13796 | 16 BUILD_DEPENDS="gtk+-dev zip libIDL coreutils xorg-libXft-dev libevent-dev \ |
pascal@13796 | 17 libvpx-dev perl alsa-lib alsa-lib-dev findutils python python-dev \ |
mojo@17985 | 18 wireless_tools-dev mesa-dev yasm libnotify-dev curl-dev hunspell-dev" |
pascal@13796 | 19 |
pankso@2747 | 20 # Rules to configure and make the package. |
pankso@2747 | 21 compile_rules() |
pankso@2747 | 22 { |
pascal@8974 | 23 cp -a $stuff/seamonkey.mozconfig $src/.mozconfig |
pankso@2747 | 24 cd $src |
pascal@13523 | 25 sed -i -e 's/USE_INPUT_PARTITION/USE_INPUT_FRAGMENTS/' \ |
pascal@13523 | 26 -e 's/0.9.7/1.0.0/' mozilla/configure.in mozilla/configure |
pascal@8974 | 27 #patch -p1 -i $stuff/google-breakpad.u || exit 1 |
slaxemulator@8729 | 28 cat >> mozilla/layout/build/Makefile.in << "EOF" |
pankso@2747 | 29 ifdef MOZ_ENABLE_CANVAS |
pankso@2747 | 30 EXTRA_DSO_LDOPTS += $(XLDFLAGS) -lX11 -lXrender |
pankso@2747 | 31 endif |
pankso@2747 | 32 EOF |
slaxemulator@8729 | 33 unset CFLAGS |
slaxemulator@8729 | 34 unset CXXFLAGS |
devl547@11335 | 35 patch -Np1 -i $stuff/seamonkey-2.0-lang.patch |
devl547@11335 | 36 patch -Np1 -i $stuff/seamonkey-install-dir.patch |
pascal@17670 | 37 export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey" |
pascal@15286 | 38 ./configure $CONFIGURE_ARGS 2>&1 | grep -v 'cthandlers/calendar/Makefile.in' && |
slaxemulator@11819 | 39 make && |
slaxemulator@11819 | 40 make DESTDIR=$DESTDIR install |
pankso@2747 | 41 } |
pankso@2747 | 42 |
pankso@2747 | 43 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@2747 | 44 genpkg_rules() |
pankso@2747 | 45 { |
pankso@2747 | 46 mkdir -p $fs/usr/bin $fs/usr/lib $fs/etc |
pascal@13796 | 47 cp -a $install/usr/bin/seamonkey $fs/usr/bin |
pascal@13796 | 48 cp -a $install/usr/lib/seamonkey $fs/usr/lib |
pankso@2747 | 49 # Home page, bookmarks file and branding. |
pascal@8974 | 50 cp -a $stuff/bookmarks.html \ |
devl547@11335 | 51 $fs/usr/lib/$PACKAGE/defaults/profile |
pankso@2747 | 52 # User preference. |
pascal@8974 | 53 cp -a $stuff/userChrome.css \ |
devl547@11335 | 54 $fs/usr/lib/$PACKAGE/defaults/profile/chrome |
pankso@2747 | 55 # Move default config to /etc/seamonkey (/usr maybe read-only) |
devl547@11335 | 56 mv -f $fs/usr/lib/$PACKAGE/defaults $fs/etc/$PACKAGE |
devl547@11335 | 57 ln -sf /etc/$PACKAGE $fs/usr/lib/$PACKAGE/defaults |
pankso@2747 | 58 # Remove unecessary file and set permissions. |
pankso@2747 | 59 rm -rf $fs/etc/seamonkey/profile/US |
pankso@2747 | 60 chown -R root.root $fs/etc |
erjo@4826 | 61 |
erjo@4826 | 62 # Create default user preference file |
pascal@8974 | 63 cp $stuff/prefs.js $fs/etc/seamonkey/profile/prefs.js |
pankso@2747 | 64 } |