wok view seamonkey/receipt @ rev 17501

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