[arch-commits] Commit in seamonkey/repos (14 files)

Ionut Biru ibiru at archlinux.org
Sun Feb 5 21:36:29 UTC 2012


    Date: Sunday, February 5, 2012 @ 16:36:28
  Author: ibiru
Revision: 149140

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  seamonkey/repos/testing-i686/
  seamonkey/repos/testing-i686/PKGBUILD
    (from rev 149139, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/testing-i686/libvpx.patch
    (from rev 149139, seamonkey/trunk/libvpx.patch)
  seamonkey/repos/testing-i686/mozconfig
    (from rev 149139, seamonkey/trunk/mozconfig)
  seamonkey/repos/testing-i686/seamonkey-2.0-lang.patch
    (from rev 149139, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/testing-i686/seamonkey.desktop
    (from rev 149139, seamonkey/trunk/seamonkey.desktop)
  seamonkey/repos/testing-i686/seamonkey.install
    (from rev 149139, seamonkey/trunk/seamonkey.install)
  seamonkey/repos/testing-x86_64/
  seamonkey/repos/testing-x86_64/PKGBUILD
    (from rev 149139, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/testing-x86_64/libvpx.patch
    (from rev 149139, seamonkey/trunk/libvpx.patch)
  seamonkey/repos/testing-x86_64/mozconfig
    (from rev 149139, seamonkey/trunk/mozconfig)
  seamonkey/repos/testing-x86_64/seamonkey-2.0-lang.patch
    (from rev 149139, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/testing-x86_64/seamonkey.desktop
    (from rev 149139, seamonkey/trunk/seamonkey.desktop)
  seamonkey/repos/testing-x86_64/seamonkey.install
    (from rev 149139, seamonkey/trunk/seamonkey.install)

-----------------------------------------+
 testing-i686/PKGBUILD                   |   51 ++++++++++++++++++++++++++++++
 testing-i686/libvpx.patch               |   12 +++++++
 testing-i686/mozconfig                  |   35 ++++++++++++++++++++
 testing-i686/seamonkey-2.0-lang.patch   |   11 ++++++
 testing-i686/seamonkey.desktop          |   11 ++++++
 testing-i686/seamonkey.install          |   12 +++++++
 testing-x86_64/PKGBUILD                 |   51 ++++++++++++++++++++++++++++++
 testing-x86_64/libvpx.patch             |   12 +++++++
 testing-x86_64/mozconfig                |   35 ++++++++++++++++++++
 testing-x86_64/seamonkey-2.0-lang.patch |   11 ++++++
 testing-x86_64/seamonkey.desktop        |   11 ++++++
 testing-x86_64/seamonkey.install        |   12 +++++++
 12 files changed, 264 insertions(+)

Copied: seamonkey/repos/testing-i686/PKGBUILD (from rev 149139, seamonkey/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+pkgname=seamonkey
+pkgver=2.7
+pkgrel=2
+pkgdesc="SeaMonkey internet suite"
+arch=('i686' 'x86_64')
+license=('MPL')
+depends=('alsa-lib'  'dbus-glib'  'desktop-file-utils'  'gtk2' 'hunspell'  'libevent'  'libnotify'  'libvpx'  'libxt' 'mime-types'  'mozilla-common'  'nss'  'sqlite3'  'startup-notification')
+makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'yasm' 'wireless_tools' 'mesa' 'autoconf2.13')
+install=$pkgname.install
+url="http://www.mozilla.org/projects/seamonkey"
+source=(ftp://releases.mozilla.org/pub/mozilla.org/$pkgname/releases/$pkgver/source/$pkgname-$pkgver.source.tar.bz2
+        mozconfig
+        seamonkey.desktop
+        seamonkey-2.0-lang.patch
+        libvpx.patch)
+md5sums=('a566e49ab96ba93ceea1a3c636757435'
+         'd02b5f002a7cdf8d15dccd2548d09256'
+         '6119a2254716752c9d08e366f8d4c048'
+         '25b6fe16ac24cd5c852213e5c1adb272'
+         '5b2aaff7dfe7f1f94ad965905b20e782')
+
+build() {
+  cd "$srcdir/comm-release"
+  patch -Np1 -i "$srcdir/seamonkey-2.0-lang.patch"
+  patch -Np1 -i "$srcdir/libvpx.patch"
+
+  cp "$srcdir/mozconfig" .mozconfig
+  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey-$pkgver"
+
+  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
+}
+
+package() {
+  cd "$srcdir/comm-release"
+
+  make -j1 -f client.mk DESTDIR="$pkgdir" install
+
+  rm -rf "$pkgdir"/usr/lib/seamonkey-$pkgver/{dictionaries,hyphenation}
+  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/seamonkey-$pkgver/dictionaries"
+  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/seamonkey-$pkgver/hyphenation"
+
+  install -m755 -d "$pkgdir/usr/share/applications"
+  install -m755 -d "$pkgdir/usr/share/pixmaps"
+  install -m644 suite/branding/nightly/icons/gtk/seamonkey.png \
+                "$pkgdir/usr/share/pixmaps/"
+  install -m644 "$srcdir/seamonkey.desktop" "$pkgdir/usr/share/applications/"
+
+  rm -f "$pkgdir/usr/lib/pkgconfig/"seamonkey-ns{s,pr}.pc
+}

Copied: seamonkey/repos/testing-i686/libvpx.patch (from rev 149139, seamonkey/trunk/libvpx.patch)
===================================================================
--- testing-i686/libvpx.patch	                        (rev 0)
+++ testing-i686/libvpx.patch	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,12 @@
+diff -Nur comm-release.orig/mozilla/configure.in comm-release/mozilla/configure.in
+--- comm-release.orig/mozilla/configure.in	2012-02-05 18:02:17.376830377 +0000
++++ comm-release/mozilla/configure.in	2012-02-05 18:03:25.246274275 +0000
+@@ -5629,7 +5629,7 @@
+             dnl v0.9.6 one to check for.
+             AC_TRY_COMPILE([
+                 #include <vpx/vpx_decoder.h>
+-                #if !defined(VPX_CODEC_USE_INPUT_PARTITION)
++                #if !defined(VPX_CODEC_USE_INPUT_FRAGMENTS)
+                     #error "test failed."
+                 #endif
+                 ],

Copied: seamonkey/repos/testing-i686/mozconfig (from rev 149139, seamonkey/trunk/mozconfig)
===================================================================
--- testing-i686/mozconfig	                        (rev 0)
+++ testing-i686/mozconfig	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,35 @@
+ac_add_options --enable-application=suite
+
+ac_add_options --prefix=/usr
+ac_add_options --libdir=/usr/lib
+
+ac_add_options --with-system-nspr
+ac_add_options --with-system-nss
+ac_add_options --with-system-jpeg
+ac_add_options --with-system-zlib
+ac_add_options --with-system-bz2
+ac_add_options --with-system-png
+ac_add_options --with-system-libevent
+ac_add_options --with-system-libvpx
+ac_add_options --enable-system-hunspell
+ac_add_options --enable-system-sqlite
+ac_add_options --enable-system-cairo
+ac_add_options --with-pthreads
+
+# Features
+ac_add_options --enable-startup-notification
+ac_add_options --enable-safe-browsing
+ac_add_options --enable-gio
+
+ac_add_options --disable-gnomevfs
+ac_add_options --disable-crashreporter
+ac_add_options --disable-updater
+ac_add_options --disable-tests
+ac_add_options --disable-mochitest
+ac_add_options --disable-installer
+
+# Optimization
+ac_add_options --enable-optimize
+
+export MOZILLA_OFFICIAL=1
+mk_add_options MOZILLA_OFFICIAL=1

Copied: seamonkey/repos/testing-i686/seamonkey-2.0-lang.patch (from rev 149139, seamonkey/trunk/seamonkey-2.0-lang.patch)
===================================================================
--- testing-i686/seamonkey-2.0-lang.patch	                        (rev 0)
+++ testing-i686/seamonkey-2.0-lang.patch	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,11 @@
+--- comm-1.9.1/mozilla/modules/libpref/src/init/all.js	2009-10-11 02:12:44.000000000 +0200
++++ comm-1.9.1/mozilla/modules/libpref/src/init/all.js	2009-09-16 02:56:45.000000000 +0200
+@@ -890,7 +890,7 @@
+ pref("intl.charset.detector",               "chrome://global/locale/intl.properties");
+ pref("intl.charset.default",                "chrome://global-platform/locale/intl.properties");
+ pref("intl.ellipsis",                       "chrome://global-platform/locale/intl.properties");
+-pref("intl.locale.matchOS",                 false);
++pref("intl.locale.matchOS",                 true);
+ // fallback charset list for Unicode conversion (converting from Unicode)
+ // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
+ // for ISO-8859-1

Copied: seamonkey/repos/testing-i686/seamonkey.desktop (from rev 149139, seamonkey/trunk/seamonkey.desktop)
===================================================================
--- testing-i686/seamonkey.desktop	                        (rev 0)
+++ testing-i686/seamonkey.desktop	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Exec=seamonkey %u
+Icon=seamonkey
+Type=Application
+Terminal=false
+MultipleArgs=false
+Name=SeaMonkey internet suite
+MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;message/rfc822;x-scheme-handler/mailto;
+StartupNotify=false
+Categories=Application;Network;

Copied: seamonkey/repos/testing-i686/seamonkey.install (from rev 149139, seamonkey/trunk/seamonkey.install)
===================================================================
--- testing-i686/seamonkey.install	                        (rev 0)
+++ testing-i686/seamonkey.install	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: seamonkey/repos/testing-x86_64/PKGBUILD (from rev 149139, seamonkey/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+pkgname=seamonkey
+pkgver=2.7
+pkgrel=2
+pkgdesc="SeaMonkey internet suite"
+arch=('i686' 'x86_64')
+license=('MPL')
+depends=('alsa-lib'  'dbus-glib'  'desktop-file-utils'  'gtk2' 'hunspell'  'libevent'  'libnotify'  'libvpx'  'libxt' 'mime-types'  'mozilla-common'  'nss'  'sqlite3'  'startup-notification')
+makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'yasm' 'wireless_tools' 'mesa' 'autoconf2.13')
+install=$pkgname.install
+url="http://www.mozilla.org/projects/seamonkey"
+source=(ftp://releases.mozilla.org/pub/mozilla.org/$pkgname/releases/$pkgver/source/$pkgname-$pkgver.source.tar.bz2
+        mozconfig
+        seamonkey.desktop
+        seamonkey-2.0-lang.patch
+        libvpx.patch)
+md5sums=('a566e49ab96ba93ceea1a3c636757435'
+         'd02b5f002a7cdf8d15dccd2548d09256'
+         '6119a2254716752c9d08e366f8d4c048'
+         '25b6fe16ac24cd5c852213e5c1adb272'
+         '5b2aaff7dfe7f1f94ad965905b20e782')
+
+build() {
+  cd "$srcdir/comm-release"
+  patch -Np1 -i "$srcdir/seamonkey-2.0-lang.patch"
+  patch -Np1 -i "$srcdir/libvpx.patch"
+
+  cp "$srcdir/mozconfig" .mozconfig
+  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey-$pkgver"
+
+  make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
+}
+
+package() {
+  cd "$srcdir/comm-release"
+
+  make -j1 -f client.mk DESTDIR="$pkgdir" install
+
+  rm -rf "$pkgdir"/usr/lib/seamonkey-$pkgver/{dictionaries,hyphenation}
+  ln -sf /usr/share/hunspell "$pkgdir/usr/lib/seamonkey-$pkgver/dictionaries"
+  ln -sf /usr/share/hyphen "$pkgdir/usr/lib/seamonkey-$pkgver/hyphenation"
+
+  install -m755 -d "$pkgdir/usr/share/applications"
+  install -m755 -d "$pkgdir/usr/share/pixmaps"
+  install -m644 suite/branding/nightly/icons/gtk/seamonkey.png \
+                "$pkgdir/usr/share/pixmaps/"
+  install -m644 "$srcdir/seamonkey.desktop" "$pkgdir/usr/share/applications/"
+
+  rm -f "$pkgdir/usr/lib/pkgconfig/"seamonkey-ns{s,pr}.pc
+}

Copied: seamonkey/repos/testing-x86_64/libvpx.patch (from rev 149139, seamonkey/trunk/libvpx.patch)
===================================================================
--- testing-x86_64/libvpx.patch	                        (rev 0)
+++ testing-x86_64/libvpx.patch	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,12 @@
+diff -Nur comm-release.orig/mozilla/configure.in comm-release/mozilla/configure.in
+--- comm-release.orig/mozilla/configure.in	2012-02-05 18:02:17.376830377 +0000
++++ comm-release/mozilla/configure.in	2012-02-05 18:03:25.246274275 +0000
+@@ -5629,7 +5629,7 @@
+             dnl v0.9.6 one to check for.
+             AC_TRY_COMPILE([
+                 #include <vpx/vpx_decoder.h>
+-                #if !defined(VPX_CODEC_USE_INPUT_PARTITION)
++                #if !defined(VPX_CODEC_USE_INPUT_FRAGMENTS)
+                     #error "test failed."
+                 #endif
+                 ],

Copied: seamonkey/repos/testing-x86_64/mozconfig (from rev 149139, seamonkey/trunk/mozconfig)
===================================================================
--- testing-x86_64/mozconfig	                        (rev 0)
+++ testing-x86_64/mozconfig	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,35 @@
+ac_add_options --enable-application=suite
+
+ac_add_options --prefix=/usr
+ac_add_options --libdir=/usr/lib
+
+ac_add_options --with-system-nspr
+ac_add_options --with-system-nss
+ac_add_options --with-system-jpeg
+ac_add_options --with-system-zlib
+ac_add_options --with-system-bz2
+ac_add_options --with-system-png
+ac_add_options --with-system-libevent
+ac_add_options --with-system-libvpx
+ac_add_options --enable-system-hunspell
+ac_add_options --enable-system-sqlite
+ac_add_options --enable-system-cairo
+ac_add_options --with-pthreads
+
+# Features
+ac_add_options --enable-startup-notification
+ac_add_options --enable-safe-browsing
+ac_add_options --enable-gio
+
+ac_add_options --disable-gnomevfs
+ac_add_options --disable-crashreporter
+ac_add_options --disable-updater
+ac_add_options --disable-tests
+ac_add_options --disable-mochitest
+ac_add_options --disable-installer
+
+# Optimization
+ac_add_options --enable-optimize
+
+export MOZILLA_OFFICIAL=1
+mk_add_options MOZILLA_OFFICIAL=1

Copied: seamonkey/repos/testing-x86_64/seamonkey-2.0-lang.patch (from rev 149139, seamonkey/trunk/seamonkey-2.0-lang.patch)
===================================================================
--- testing-x86_64/seamonkey-2.0-lang.patch	                        (rev 0)
+++ testing-x86_64/seamonkey-2.0-lang.patch	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,11 @@
+--- comm-1.9.1/mozilla/modules/libpref/src/init/all.js	2009-10-11 02:12:44.000000000 +0200
++++ comm-1.9.1/mozilla/modules/libpref/src/init/all.js	2009-09-16 02:56:45.000000000 +0200
+@@ -890,7 +890,7 @@
+ pref("intl.charset.detector",               "chrome://global/locale/intl.properties");
+ pref("intl.charset.default",                "chrome://global-platform/locale/intl.properties");
+ pref("intl.ellipsis",                       "chrome://global-platform/locale/intl.properties");
+-pref("intl.locale.matchOS",                 false);
++pref("intl.locale.matchOS",                 true);
+ // fallback charset list for Unicode conversion (converting from Unicode)
+ // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
+ // for ISO-8859-1

Copied: seamonkey/repos/testing-x86_64/seamonkey.desktop (from rev 149139, seamonkey/trunk/seamonkey.desktop)
===================================================================
--- testing-x86_64/seamonkey.desktop	                        (rev 0)
+++ testing-x86_64/seamonkey.desktop	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Exec=seamonkey %u
+Icon=seamonkey
+Type=Application
+Terminal=false
+MultipleArgs=false
+Name=SeaMonkey internet suite
+MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;message/rfc822;x-scheme-handler/mailto;
+StartupNotify=false
+Categories=Application;Network;

Copied: seamonkey/repos/testing-x86_64/seamonkey.install (from rev 149139, seamonkey/trunk/seamonkey.install)
===================================================================
--- testing-x86_64/seamonkey.install	                        (rev 0)
+++ testing-x86_64/seamonkey.install	2012-02-05 21:36:28 UTC (rev 149140)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}




More information about the arch-commits mailing list