wok view seamonkey/receipt @ rev 12367

Up: bind to 9.9.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Apr 19 21:41:08 2012 +0000 (2012-04-19)
parents 7bae315c3aac
children e96d7a70e1ed
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 TARBALL="$PACKAGE-$VERSION.source.tar.bz2"
9 DEPENDS="gtk+ glib jpeg xorg-libX11 libIDL alsa-lib xorg-libXt curl libnotify libevent libvpx"
10 BUILD_DEPENDS="gtk+-dev zip libIDL coreutils xorg-libXft-dev libevent-dev libvpx-dev \
11 perl alsa-lib alsa-lib-dev findutils python python-dev wireless_tools-dev mesa-dev \
12 yasm libnotify-dev curl-dev"
13 WEB_SITE="http://www.seamonkey-project.org/"
14 WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases/$VERSION/source/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cp -a $stuff/seamonkey.mozconfig $src/.mozconfig
20 cd $src
21 #patch -p1 -i $stuff/google-breakpad.u || exit 1
22 cat >> mozilla/layout/build/Makefile.in << "EOF"
23 ifdef MOZ_ENABLE_CANVAS
24 EXTRA_DSO_LDOPTS += $(XLDFLAGS) -lX11 -lXrender
25 endif
26 EOF
27 unset CFLAGS
28 unset CXXFLAGS
29 patch -Np1 -i $stuff/seamonkey-2.0-lang.patch
30 patch -Np1 -i $stuff/seamonkey-install-dir.patch
31 export LDFLAGS="-Wl,-rpath,/usr/lib/seamonkey"
32 ./configure $CONFIGURE_ARGS &&
33 make &&
34 make DESTDIR=$DESTDIR install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr/bin $fs/usr/lib $fs/etc
41 cp -a $_pkg/usr/bin/seamonkey $fs/usr/bin
42 cp -a $_pkg/usr/lib/seamonkey $fs/usr/lib
43 # Home page, bookmarks file and branding.
44 cp -a $stuff/bookmarks.html \
45 $fs/usr/lib/$PACKAGE/defaults/profile
46 # User preference.
47 cp -a $stuff/userChrome.css \
48 $fs/usr/lib/$PACKAGE/defaults/profile/chrome
49 # Move default config to /etc/seamonkey (/usr maybe read-only)
50 mv -f $fs/usr/lib/$PACKAGE/defaults $fs/etc/$PACKAGE
51 ln -sf /etc/$PACKAGE $fs/usr/lib/$PACKAGE/defaults
52 # Remove unecessary file and set permissions.
53 rm -rf $fs/etc/seamonkey/profile/US
54 chown -R root.root $fs/etc
56 # Create default user preference file
57 cp $stuff/prefs.js $fs/etc/seamonkey/profile/prefs.js
58 }