[arch-commits] Commit in ekiga/repos (4 files)

2019-03-15 Thread Jan Steffens via arch-commits
Date: Friday, March 15, 2019 @ 17:19:19
  Author: heftig
Revision: 348203

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  ekiga/repos/gnome-unstable-x86_64/
  ekiga/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 348201, ekiga/trunk/PKGBUILD)
  ekiga/repos/gnome-unstable-x86_64/ekiga-4.0.1-boost-signals2.patch
(from rev 348201, ekiga/trunk/ekiga-4.0.1-boost-signals2.patch)
  ekiga/repos/gnome-unstable-x86_64/ekiga-4.0.1-libresolv.patch
(from rev 348201, ekiga/trunk/ekiga-4.0.1-libresolv.patch)

--+
 PKGBUILD |   45 
 ekiga-4.0.1-boost-signals2.patch | 2738 +
 ekiga-4.0.1-libresolv.patch  |   13 
 3 files changed, 2796 insertions(+)

Copied: ekiga/repos/gnome-unstable-x86_64/PKGBUILD (from rev 348201, 
ekiga/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2019-03-15 17:19:19 UTC (rev 348203)
@@ -0,0 +1,45 @@
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=33
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf' 
'gnome-icon-theme')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'python')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ekiga-4.0.1-boost-signals2.patch
+ekiga-4.0.1-libresolv.patch)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b'
+'940da15bd16f2ca32637033e91138048b3d1bb4e02a0033a9096f93d0f3b6d7a'
+'5b0e4a8fd7d575f620ff1cbaaf126fcb5d9a48da948b032526084911ed41b63f')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../ekiga-4.0.1-boost-signals2.patch
+  patch -Np1 -i ../ekiga-4.0.1-libresolv.patch
+  autoreconf -fi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/gnome-unstable-x86_64/ekiga-4.0.1-boost-signals2.patch 
(from rev 348201, ekiga/trunk/ekiga-4.0.1-boost-signals2.patch)
===
--- gnome-unstable-x86_64/ekiga-4.0.1-boost-signals2.patch  
(rev 0)
+++ gnome-unstable-x86_64/ekiga-4.0.1-boost-signals2.patch  2019-03-15 
17:19:19 UTC (rev 348203)
@@ -0,0 +1,2738 @@
+From caecbf81d7c5c9464882d9b730b44497e83f06b9 Mon Sep 17 00:00:00 2001
+From: Julien Puydt 
+Date: Sat, 14 Sep 2013 16:59:46 +0200
+Subject: [PATCH 1/2] Made the autotools files use BOOST signals2
+
+---
+ configure.ac  | 15 ---
+ lib/Makefile.am   | 16 +++-
+ plugins/avahi/Makefile.am |  7 +++
+ plugins/evolution/Makefile.am |  7 +++
+ plugins/gstreamer/Makefile.am |  7 +++
+ plugins/kab/Makefile.am   |  7 +++
+ plugins/kde/Makefile.am   |  7 +++
+ plugins/ldap/Makefile.am  |  8 
+ plugins/libnotify/Makefile.am |  7 +++
+ plugins/loudmouth/Makefile.am |  7 +++
+ plugins/resource-list/Makefile.am |  9 -
+ plugins/xcap/Makefile.am  |  7 +++
+ src/Makefile.am   | 10 +-
+ 13 files changed, 52 insertions(+), 62 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 45b7ea454..e0de8fc4c 100644
+--- a/configure.ac
 b/configure.ac
+@@ -173,15 +173,16 @@ AC_SUBST(GLIB_LIBS)
+ dnl ###
+ dnl   Mandatory BOOST support
+ dnl ###
+-AX_BOOST_BASE([1.34])
+-AX_BOOST_SIGNALS
++AX_BOOST_BASE([1.53])
+ 
+-if test "x${ax_cv_boost_signals}" == "xno"; then
+-   AC_MSG_ERROR([You need the boost signals library to compile Ekiga])
+-fi
++CPPFLAGS_save="$CPPFLAGS"
++CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
++AC_CHECK_HEADER(boost/signals2.hpp,, found_signals2=no)
++CPPFLAGS="$CPPFLAGS_save"
+ 
+-BOOST_LIBS="${BOOST_SIGNALS_LIB}"
+-AC_SUBST(BOOST_LIBS)
++if test "x$found_signals2" = "xno"; then
++   AC_MSG_ERROR([Could not find BOOST signals2 headers])
++fi
+ 
+ 
+ dnl ###
+diff --git 

[arch-commits] Commit in ekiga/repos (4 files)

2019-01-15 Thread Felix Yan via arch-commits
Date: Tuesday, January 15, 2019 @ 19:12:18
  Author: felixonmars
Revision: 344159

archrelease: copy trunk to staging-x86_64

Added:
  ekiga/repos/staging-x86_64/
  ekiga/repos/staging-x86_64/PKGBUILD
(from rev 344158, ekiga/trunk/PKGBUILD)
  ekiga/repos/staging-x86_64/ekiga-4.0.1-boost-signals2.patch
(from rev 344158, ekiga/trunk/ekiga-4.0.1-boost-signals2.patch)
  ekiga/repos/staging-x86_64/ekiga-4.0.1-libresolv.patch
(from rev 344158, ekiga/trunk/ekiga-4.0.1-libresolv.patch)

--+
 PKGBUILD |   45 
 ekiga-4.0.1-boost-signals2.patch | 2738 +
 ekiga-4.0.1-libresolv.patch  |   13 
 3 files changed, 2796 insertions(+)

Copied: ekiga/repos/staging-x86_64/PKGBUILD (from rev 344158, 
ekiga/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-01-15 19:12:18 UTC (rev 344159)
@@ -0,0 +1,45 @@
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=32
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf' 
'gnome-icon-theme')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'python')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ekiga-4.0.1-boost-signals2.patch
+ekiga-4.0.1-libresolv.patch)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b'
+'940da15bd16f2ca32637033e91138048b3d1bb4e02a0033a9096f93d0f3b6d7a'
+'5b0e4a8fd7d575f620ff1cbaaf126fcb5d9a48da948b032526084911ed41b63f')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../ekiga-4.0.1-boost-signals2.patch
+  patch -Np1 -i ../ekiga-4.0.1-libresolv.patch
+  autoreconf -fi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/staging-x86_64/ekiga-4.0.1-boost-signals2.patch (from rev 
344158, ekiga/trunk/ekiga-4.0.1-boost-signals2.patch)
===
--- staging-x86_64/ekiga-4.0.1-boost-signals2.patch 
(rev 0)
+++ staging-x86_64/ekiga-4.0.1-boost-signals2.patch 2019-01-15 19:12:18 UTC 
(rev 344159)
@@ -0,0 +1,2738 @@
+From caecbf81d7c5c9464882d9b730b44497e83f06b9 Mon Sep 17 00:00:00 2001
+From: Julien Puydt 
+Date: Sat, 14 Sep 2013 16:59:46 +0200
+Subject: [PATCH 1/2] Made the autotools files use BOOST signals2
+
+---
+ configure.ac  | 15 ---
+ lib/Makefile.am   | 16 +++-
+ plugins/avahi/Makefile.am |  7 +++
+ plugins/evolution/Makefile.am |  7 +++
+ plugins/gstreamer/Makefile.am |  7 +++
+ plugins/kab/Makefile.am   |  7 +++
+ plugins/kde/Makefile.am   |  7 +++
+ plugins/ldap/Makefile.am  |  8 
+ plugins/libnotify/Makefile.am |  7 +++
+ plugins/loudmouth/Makefile.am |  7 +++
+ plugins/resource-list/Makefile.am |  9 -
+ plugins/xcap/Makefile.am  |  7 +++
+ src/Makefile.am   | 10 +-
+ 13 files changed, 52 insertions(+), 62 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 45b7ea454..e0de8fc4c 100644
+--- a/configure.ac
 b/configure.ac
+@@ -173,15 +173,16 @@ AC_SUBST(GLIB_LIBS)
+ dnl ###
+ dnl   Mandatory BOOST support
+ dnl ###
+-AX_BOOST_BASE([1.34])
+-AX_BOOST_SIGNALS
++AX_BOOST_BASE([1.53])
+ 
+-if test "x${ax_cv_boost_signals}" == "xno"; then
+-   AC_MSG_ERROR([You need the boost signals library to compile Ekiga])
+-fi
++CPPFLAGS_save="$CPPFLAGS"
++CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
++AC_CHECK_HEADER(boost/signals2.hpp,, found_signals2=no)
++CPPFLAGS="$CPPFLAGS_save"
+ 
+-BOOST_LIBS="${BOOST_SIGNALS_LIB}"
+-AC_SUBST(BOOST_LIBS)
++if test "x$found_signals2" = "xno"; then
++   AC_MSG_ERROR([Could not find BOOST signals2 headers])
++fi
+ 
+ 
+ dnl ###
+diff --git a/lib/Makefile.am b/lib/Makefile.am
+index 43324c92c..21e538b43 100644
+--- 

[arch-commits] Commit in ekiga/repos (4 files)

2017-02-13 Thread Jan de Groot
Date: Monday, February 13, 2017 @ 10:41:19
  Author: jgc
Revision: 288868

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

Added:
  ekiga/repos/extra-i686/PKGBUILD
(from rev 288867, ekiga/trunk/PKGBUILD)
  ekiga/repos/extra-x86_64/PKGBUILD
(from rev 288867, ekiga/trunk/PKGBUILD)
Deleted:
  ekiga/repos/extra-i686/PKGBUILD
  ekiga/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   70 
 extra-i686/PKGBUILD   |   35 
 extra-x86_64/PKGBUILD |   35 
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-02-13 10:41:12 UTC (rev 288867)
+++ extra-i686/PKGBUILD 2017-02-13 10:41:19 UTC (rev 288868)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tom K 
-
-pkgname=ekiga
-pkgver=4.0.1
-pkgrel=23
-pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
-url="http://www.ekiga.org;
-license=(GPL)
-arch=(i686 x86_64)
-depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
-makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
-optdepends=('evolution-data-server: Evolution integration')
-options=(!emptydirs)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-install \
-  --disable-scrollkeeper --enable-dbus --enable-avahi
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
-
-  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
-  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
-  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
-}

Copied: ekiga/repos/extra-i686/PKGBUILD (from rev 288867, ekiga/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-02-13 10:41:19 UTC (rev 288868)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=24
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf' 
'gnome-icon-theme')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-02-13 10:41:12 UTC (rev 288867)
+++ extra-x86_64/PKGBUILD   2017-02-13 10:41:19 UTC (rev 288868)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tom K 
-
-pkgname=ekiga
-pkgver=4.0.1
-pkgrel=23
-pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
-url="http://www.ekiga.org;
-license=(GPL)
-arch=(i686 x86_64)
-depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
-makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
-optdepends=('evolution-data-server: Evolution integration')
-options=(!emptydirs)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var 

[arch-commits] Commit in ekiga/repos (4 files)

2017-01-01 Thread Bartłomiej Piotrowski
Date: Monday, January 2, 2017 @ 06:38:23
  Author: bpiotrowski
Revision: 285193

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

Added:
  ekiga/repos/staging-i686/PKGBUILD
(from rev 285192, ekiga/trunk/PKGBUILD)
  ekiga/repos/staging-x86_64/PKGBUILD
(from rev 285192, ekiga/trunk/PKGBUILD)
Deleted:
  ekiga/repos/staging-i686/PKGBUILD
  ekiga/repos/staging-x86_64/PKGBUILD

-+
 /PKGBUILD   |   70 ++
 staging-i686/PKGBUILD   |   35 ---
 staging-x86_64/PKGBUILD |   35 ---
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2017-01-02 06:38:12 UTC (rev 285192)
+++ staging-i686/PKGBUILD   2017-01-02 06:38:23 UTC (rev 285193)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tom K 
-
-pkgname=ekiga
-pkgver=4.0.1
-pkgrel=22
-pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
-url="http://www.ekiga.org;
-license=(GPL)
-arch=(i686 x86_64)
-depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
-makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
-optdepends=('evolution-data-server: Evolution integration')
-options=(!emptydirs)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-install \
-  --disable-scrollkeeper --enable-dbus --enable-avahi
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
-
-  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
-  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
-  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
-}

Copied: ekiga/repos/staging-i686/PKGBUILD (from rev 285192, 
ekiga/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-02 06:38:23 UTC (rev 285193)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=23
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Deleted: staging-x86_64/PKGBUILD
===
--- staging-x86_64/PKGBUILD 2017-01-02 06:38:12 UTC (rev 285192)
+++ staging-x86_64/PKGBUILD 2017-01-02 06:38:23 UTC (rev 285193)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tom K 
-
-pkgname=ekiga
-pkgver=4.0.1
-pkgrel=22
-pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
-url="http://www.ekiga.org;
-license=(GPL)
-arch=(i686 x86_64)
-depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
-makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
-optdepends=('evolution-data-server: Evolution integration')
-options=(!emptydirs)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr 

[arch-commits] Commit in ekiga/repos (4 files)

2017-01-01 Thread Bartłomiej Piotrowski
Date: Monday, January 2, 2017 @ 06:34:37
  Author: bpiotrowski
Revision: 285191

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

Added:
  ekiga/repos/staging-i686/
  ekiga/repos/staging-i686/PKGBUILD
(from rev 285190, ekiga/trunk/PKGBUILD)
  ekiga/repos/staging-x86_64/
  ekiga/repos/staging-x86_64/PKGBUILD
(from rev 285190, ekiga/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: ekiga/repos/staging-i686/PKGBUILD (from rev 285190, 
ekiga/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-02 06:34:37 UTC (rev 285191)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=22
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/staging-x86_64/PKGBUILD (from rev 285190, 
ekiga/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-01-02 06:34:37 UTC (rev 285191)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=22
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}


[arch-commits] Commit in ekiga/repos (4 files)

2016-10-07 Thread Bartłomiej Piotrowski
Date: Friday, October 7, 2016 @ 19:11:55
  Author: bpiotrowski
Revision: 277893

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

Added:
  ekiga/repos/staging-i686/
  ekiga/repos/staging-i686/PKGBUILD
(from rev 277892, ekiga/trunk/PKGBUILD)
  ekiga/repos/staging-x86_64/
  ekiga/repos/staging-x86_64/PKGBUILD
(from rev 277892, ekiga/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: ekiga/repos/staging-i686/PKGBUILD (from rev 277892, 
ekiga/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-10-07 19:11:55 UTC (rev 277893)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=22
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/staging-x86_64/PKGBUILD (from rev 277892, 
ekiga/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-10-07 19:11:55 UTC (rev 277893)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=22
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}


[arch-commits] Commit in ekiga/repos (4 files)

2016-09-28 Thread Jan de Groot
Date: Wednesday, September 28, 2016 @ 10:53:43
  Author: jgc
Revision: 277241

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  ekiga/repos/gnome-unstable-i686/
  ekiga/repos/gnome-unstable-i686/PKGBUILD
(from rev 277240, ekiga/trunk/PKGBUILD)
  ekiga/repos/gnome-unstable-x86_64/
  ekiga/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 277240, ekiga/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   35 +++
 gnome-unstable-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: ekiga/repos/gnome-unstable-i686/PKGBUILD (from rev 277240, 
ekiga/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2016-09-28 10:53:43 UTC (rev 277241)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=21
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/gnome-unstable-x86_64/PKGBUILD (from rev 277240, 
ekiga/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2016-09-28 10:53:43 UTC (rev 277241)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=21
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}


[arch-commits] Commit in ekiga/repos (4 files)

2016-08-19 Thread Jan de Groot
Date: Friday, August 19, 2016 @ 10:02:53
  Author: jgc
Revision: 273940

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

Added:
  ekiga/repos/staging-i686/
  ekiga/repos/staging-i686/PKGBUILD
(from rev 273939, ekiga/trunk/PKGBUILD)
  ekiga/repos/staging-x86_64/
  ekiga/repos/staging-x86_64/PKGBUILD
(from rev 273939, ekiga/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: ekiga/repos/staging-i686/PKGBUILD (from rev 273939, 
ekiga/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-08-19 10:02:53 UTC (rev 273940)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=20
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/staging-x86_64/PKGBUILD (from rev 273939, 
ekiga/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-08-19 10:02:53 UTC (rev 273940)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom K 
+
+pkgname=ekiga
+pkgver=4.0.1
+pkgrel=20
+pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)"
+url="http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'avahi' 'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-icon-theme')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5f4f491c9496cf65ba057a9345d6bb0278f4eca07bcda5baeecf50bfcd9a4a3b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus --enable-avahi
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain ekiga "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}


[arch-commits] Commit in ekiga/repos (4 files)

2012-03-03 Thread Ionut Biru
Date: Saturday, March 3, 2012 @ 03:08:45
  Author: ibiru
Revision: 151806

db-move: moved ekiga from [staging] to [testing] (i686)

Added:
  ekiga/repos/testing-i686/
  ekiga/repos/testing-i686/PKGBUILD
(from rev 151799, ekiga/repos/staging-i686/PKGBUILD)
  ekiga/repos/testing-i686/ekiga.install
(from rev 151799, ekiga/repos/staging-i686/ekiga.install)
Deleted:
  ekiga/repos/staging-i686/

---+
 PKGBUILD  |   36 
 ekiga.install |   22 ++
 2 files changed, 58 insertions(+)

Copied: ekiga/repos/testing-i686/PKGBUILD (from rev 151799, 
ekiga/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-03 08:08:45 UTC (rev 151806)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=ekiga
+pkgver=3.3.2
+pkgrel=3
+pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
+url=http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+groups=('gnome-extra')
+install=ekiga.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d ${pkgdir}/usr/share/gconf/schemas
+  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas
+  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/testing-i686/ekiga.install (from rev 151799, 
ekiga/repos/staging-i686/ekiga.install)
===
--- testing-i686/ekiga.install  (rev 0)
+++ testing-i686/ekiga.install  2012-03-03 08:08:45 UTC (rev 151806)
@@ -0,0 +1,22 @@
+pkgname=ekiga
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



[arch-commits] Commit in ekiga/repos (4 files)

2012-03-03 Thread Ionut Biru
Date: Saturday, March 3, 2012 @ 03:08:47
  Author: ibiru
Revision: 151807

db-move: moved ekiga from [staging] to [testing] (x86_64)

Added:
  ekiga/repos/testing-x86_64/
  ekiga/repos/testing-x86_64/PKGBUILD
(from rev 151799, ekiga/repos/staging-x86_64/PKGBUILD)
  ekiga/repos/testing-x86_64/ekiga.install
(from rev 151799, ekiga/repos/staging-x86_64/ekiga.install)
Deleted:
  ekiga/repos/staging-x86_64/

---+
 PKGBUILD  |   36 
 ekiga.install |   22 ++
 2 files changed, 58 insertions(+)

Copied: ekiga/repos/testing-x86_64/PKGBUILD (from rev 151799, 
ekiga/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-03-03 08:08:47 UTC (rev 151807)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=ekiga
+pkgver=3.3.2
+pkgrel=3
+pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
+url=http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+groups=('gnome-extra')
+install=ekiga.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d ${pkgdir}/usr/share/gconf/schemas
+  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas
+  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/testing-x86_64/ekiga.install (from rev 151799, 
ekiga/repos/staging-x86_64/ekiga.install)
===
--- testing-x86_64/ekiga.install(rev 0)
+++ testing-x86_64/ekiga.install2012-03-03 08:08:47 UTC (rev 151807)
@@ -0,0 +1,22 @@
+pkgname=ekiga
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



[arch-commits] Commit in ekiga/repos (4 files)

2011-11-29 Thread Ionut Biru
Date: Wednesday, November 30, 2011 @ 01:29:03
  Author: ibiru
Revision: 143856

db-move: moved ekiga from [staging] to [testing] (i686)

Added:
  ekiga/repos/testing-i686/
  ekiga/repos/testing-i686/PKGBUILD
(from rev 143849, ekiga/repos/staging-i686/PKGBUILD)
  ekiga/repos/testing-i686/ekiga.install
(from rev 143849, ekiga/repos/staging-i686/ekiga.install)
Deleted:
  ekiga/repos/staging-i686/

---+
 PKGBUILD  |   36 
 ekiga.install |   22 ++
 2 files changed, 58 insertions(+)

Copied: ekiga/repos/testing-i686/PKGBUILD (from rev 143849, 
ekiga/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-30 06:29:03 UTC (rev 143856)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=ekiga
+pkgver=3.3.2
+pkgrel=2
+pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
+url=http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-common')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+groups=('gnome-extra')
+install=ekiga.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d ${pkgdir}/usr/share/gconf/schemas
+  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas
+  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/testing-i686/ekiga.install (from rev 143849, 
ekiga/repos/staging-i686/ekiga.install)
===
--- testing-i686/ekiga.install  (rev 0)
+++ testing-i686/ekiga.install  2011-11-30 06:29:03 UTC (rev 143856)
@@ -0,0 +1,22 @@
+pkgname=ekiga
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



[arch-commits] Commit in ekiga/repos (4 files)

2011-11-29 Thread Ionut Biru
Date: Wednesday, November 30, 2011 @ 01:29:05
  Author: ibiru
Revision: 143857

db-move: moved ekiga from [staging] to [testing] (x86_64)

Added:
  ekiga/repos/testing-x86_64/
  ekiga/repos/testing-x86_64/PKGBUILD
(from rev 143849, ekiga/repos/staging-x86_64/PKGBUILD)
  ekiga/repos/testing-x86_64/ekiga.install
(from rev 143849, ekiga/repos/staging-x86_64/ekiga.install)
Deleted:
  ekiga/repos/staging-x86_64/

---+
 PKGBUILD  |   36 
 ekiga.install |   22 ++
 2 files changed, 58 insertions(+)

Copied: ekiga/repos/testing-x86_64/PKGBUILD (from rev 143849, 
ekiga/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-30 06:29:05 UTC (rev 143857)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=ekiga
+pkgver=3.3.2
+pkgrel=2
+pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
+url=http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-common')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+groups=('gnome-extra')
+install=ekiga.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d ${pkgdir}/usr/share/gconf/schemas
+  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas
+  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+}

Copied: ekiga/repos/testing-x86_64/ekiga.install (from rev 143849, 
ekiga/repos/staging-x86_64/ekiga.install)
===
--- testing-x86_64/ekiga.install(rev 0)
+++ testing-x86_64/ekiga.install2011-11-30 06:29:05 UTC (rev 143857)
@@ -0,0 +1,22 @@
+pkgname=ekiga
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



[arch-commits] Commit in ekiga/repos (4 files)

2011-03-06 Thread Ionut Biru
Date: Sunday, March 6, 2011 @ 11:43:00
  Author: ibiru
Revision: 112772

libnotify 0.7 rebuild

Added:
  ekiga/repos/extra-i686/ekiga-3.2.7-libnotify-0.7.patch
  ekiga/repos/extra-x86_64/ekiga-3.2.7-libnotify-0.7.patch
Modified:
  ekiga/repos/extra-i686/PKGBUILD
  ekiga/repos/extra-x86_64/PKGBUILD

--+
 extra-i686/PKGBUILD  |9 ++-
 extra-i686/ekiga-3.2.7-libnotify-0.7.patch   |   62 +
 extra-x86_64/PKGBUILD|9 ++-
 extra-x86_64/ekiga-3.2.7-libnotify-0.7.patch |   62 +
 4 files changed, 136 insertions(+), 6 deletions(-)

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-03-06 16:25:40 UTC (rev 112771)
+++ extra-i686/PKGBUILD 2011-03-06 16:43:00 UTC (rev 112772)
@@ -4,7 +4,7 @@
 
 pkgname=ekiga
 pkgver=3.2.7
-pkgrel=3
+pkgrel=4
 pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
 url=http://www.ekiga.org;
 license=(GPL)
@@ -16,11 +16,14 @@
 options=(!emptydirs)
 groups=('gnome-extra')
 install=ekiga.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/3.2/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('f25a1309b68eafe69f0d7aed461bc9a8196939060543d09bd2f19e0bb1e3fd8f')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/3.2/${pkgname}-${pkgver}.tar.bz2
+ekiga-3.2.7-libnotify-0.7.patch)
+sha256sums=('f25a1309b68eafe69f0d7aed461bc9a8196939060543d09bd2f19e0bb1e3fd8f'
+'ad850d4e81a958081220f450a49ba9c10209d03f066f6afee99477c815c23daf')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np0 -i ${srcdir}/ekiga-3.2.7-libnotify-0.7.patch
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-schemas-install \
   --disable-scrollkeeper --enable-dbus

Added: extra-i686/ekiga-3.2.7-libnotify-0.7.patch
===
--- extra-i686/ekiga-3.2.7-libnotify-0.7.patch  (rev 0)
+++ extra-i686/ekiga-3.2.7-libnotify-0.7.patch  2011-03-06 16:43:00 UTC (rev 
112772)
@@ -0,0 +1,62 @@
+--- lib/engine/components/libnotify/libnotify-main.cpp
 lib/engine/components/libnotify/libnotify-main.cpp
+@@ -40,6 +40,10 @@
+ 
+ #include libnotify/notify.h
+ 
++#ifndef NOTIFY_CHECK_VERSION
++#define NOTIFY_CHECK_VERSION(x,y,z) 0
++#endif
++
+ #include services.h
+ #include notification-core.h
+ 
+@@ -158,7 +162,12 @@
+ 
+   notif = notify_notification_new (notification-get_title ().c_str (),
+  notification-get_body ().c_str (),
+- urgency, NULL);
++ urgency
++#if NOTIFY_CHECK_VERSION (0, 7, 0)
++ );
++#else
++ , NULL);
++#endif
+ 
+   g_signal_connect (notif, closed,
+   G_CALLBACK (on_notif_closed), notification.get ());
+--- src/gui/main.cpp
 src/gui/main.cpp
+@@ -84,6 +84,9 @@
+ 
+ #ifdef HAVE_NOTIFY
+ #include libnotify/notify.h
++#ifndef NOTIFY_CHECK_VERSION
++#define NOTIFY_CHECK_VERSION(x,y,z) 0
++#endif
+ #endif
+ 
+ #if defined(P_FREEBSD) || defined (P_MACOSX)
+@@ -2820,12 +2823,21 @@
+ 
+   body = g_strdup_printf (%s\n%s\n%s, uri, app, account);
+   
+-  notify = notify_notification_new (title, body, GM_ICON_LOGO, NULL);
++  notify = notify_notification_new (title, body, GM_ICON_LOGO
++#if NOTIFY_CHECK_VERSION (0, 7, 0)
++  );
++#else
++  , NULL);
++#endif
+   notify_notification_add_action (notify, accept, _(Accept), 
notify_action_cb, mw, NULL);
+   notify_notification_add_action (notify, reject, _(Reject), 
notify_action_cb, mw, NULL);
+   notify_notification_set_timeout (notify, NOTIFY_EXPIRES_NEVER);
+   notify_notification_set_urgency (notify, NOTIFY_URGENCY_CRITICAL);
++#if NOTIFY_CHECK_VERSION (0, 7, 0)
++  // notify_notification_attach_to_status_icon was removed
++#else
+   notify_notification_attach_to_status_icon (notify, statusicon);
++#endif
+   if (!notify_notification_show (notify, NULL)) {
+ ekiga_main_window_incoming_call_dialog_show (mw, call);
+   }

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-03-06 16:25:40 UTC (rev 112771)
+++ extra-x86_64/PKGBUILD   2011-03-06 16:43:00 UTC (rev 112772)
@@ -4,7 +4,7 @@
 
 pkgname=ekiga
 pkgver=3.2.7
-pkgrel=3
+pkgrel=4
 pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
 url=http://www.ekiga.org;
 license=(GPL)
@@ -16,11 +16,14 @@
 options=(!emptydirs)
 groups=('gnome-extra')
 install=ekiga.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/3.2/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('f25a1309b68eafe69f0d7aed461bc9a8196939060543d09bd2f19e0bb1e3fd8f')

[arch-commits] Commit in ekiga/repos (4 files)

2011-03-06 Thread Ionut Biru
Date: Sunday, March 6, 2011 @ 11:49:19
  Author: ibiru
Revision: 112774

libnotify 0.7 shouldn't be in extra

Modified:
  ekiga/repos/extra-i686/PKGBUILD
  ekiga/repos/extra-x86_64/PKGBUILD
Deleted:
  ekiga/repos/extra-i686/ekiga-3.2.7-libnotify-0.7.patch
  ekiga/repos/extra-x86_64/ekiga-3.2.7-libnotify-0.7.patch

--+
 extra-i686/PKGBUILD  |   19 +++
 extra-i686/ekiga-3.2.7-libnotify-0.7.patch   |   62 -
 extra-x86_64/PKGBUILD|   19 +++
 extra-x86_64/ekiga-3.2.7-libnotify-0.7.patch |   62 -
 4 files changed, 16 insertions(+), 146 deletions(-)

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-03-06 16:47:48 UTC (rev 112773)
+++ extra-i686/PKGBUILD 2011-03-06 16:49:19 UTC (rev 112774)
@@ -4,33 +4,30 @@
 
 pkgname=ekiga
 pkgver=3.2.7
-pkgrel=4
+pkgrel=2
 pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
 url=http://www.ekiga.org;
 license=(GPL)
 arch=(i686 x86_64)
-depends=('opal=3.6.8' 'evolution-data-server=2.32.0' 'libsigc++=2.2.8' 
'libxv' 'libnotify=0.4.5' 'hicolor-icon-theme' 'avahi=0.6.27')
+depends=('opal=3.6.8' 'evolution-data-server=2.30.2.1' 'libsigc++=2.2.8' 
'libxv' 'libnotify=0.4.5' 'hicolor-icon-theme' 'avahi=0.6.25')
 makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils=0.20.0')
 provides=('gnomemeeting')
 replaces=('gnomemeeting')
 options=(!emptydirs)
 groups=('gnome-extra')
 install=ekiga.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/3.2/${pkgname}-${pkgver}.tar.bz2
-ekiga-3.2.7-libnotify-0.7.patch)
-sha256sums=('f25a1309b68eafe69f0d7aed461bc9a8196939060543d09bd2f19e0bb1e3fd8f'
-'ad850d4e81a958081220f450a49ba9c10209d03f066f6afee99477c815c23daf')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/3.2/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('f25a1309b68eafe69f0d7aed461bc9a8196939060543d09bd2f19e0bb1e3fd8f')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np0 -i ${srcdir}/ekiga-3.2.7-libnotify-0.7.patch
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-schemas-install \
-  --disable-scrollkeeper --enable-dbus
-  make
-  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+  --disable-scrollkeeper --enable-dbus || return 1
+  make || return 1
+  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install || 
return 1
 
   install -m755 -d ${pkgdir}/usr/share/gconf/schemas
-  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas
+  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas || return 1
   rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
 }

Deleted: extra-i686/ekiga-3.2.7-libnotify-0.7.patch
===
--- extra-i686/ekiga-3.2.7-libnotify-0.7.patch  2011-03-06 16:47:48 UTC (rev 
112773)
+++ extra-i686/ekiga-3.2.7-libnotify-0.7.patch  2011-03-06 16:49:19 UTC (rev 
112774)
@@ -1,62 +0,0 @@
 lib/engine/components/libnotify/libnotify-main.cpp
-+++ lib/engine/components/libnotify/libnotify-main.cpp
-@@ -40,6 +40,10 @@
- 
- #include libnotify/notify.h
- 
-+#ifndef NOTIFY_CHECK_VERSION
-+#define NOTIFY_CHECK_VERSION(x,y,z) 0
-+#endif
-+
- #include services.h
- #include notification-core.h
- 
-@@ -158,7 +162,12 @@
- 
-   notif = notify_notification_new (notification-get_title ().c_str (),
-  notification-get_body ().c_str (),
-- urgency, NULL);
-+ urgency
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+ );
-+#else
-+ , NULL);
-+#endif
- 
-   g_signal_connect (notif, closed,
-   G_CALLBACK (on_notif_closed), notification.get ());
 src/gui/main.cpp
-+++ src/gui/main.cpp
-@@ -84,6 +84,9 @@
- 
- #ifdef HAVE_NOTIFY
- #include libnotify/notify.h
-+#ifndef NOTIFY_CHECK_VERSION
-+#define NOTIFY_CHECK_VERSION(x,y,z) 0
-+#endif
- #endif
- 
- #if defined(P_FREEBSD) || defined (P_MACOSX)
-@@ -2820,12 +2823,21 @@
- 
-   body = g_strdup_printf (%s\n%s\n%s, uri, app, account);
-   
--  notify = notify_notification_new (title, body, GM_ICON_LOGO, NULL);
-+  notify = notify_notification_new (title, body, GM_ICON_LOGO
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+  );
-+#else
-+  , NULL);
-+#endif
-   notify_notification_add_action (notify, accept, _(Accept), 
notify_action_cb, mw, NULL);
-   notify_notification_add_action (notify, reject, _(Reject), 
notify_action_cb, mw, NULL);
-   notify_notification_set_timeout (notify, NOTIFY_EXPIRES_NEVER);
-   notify_notification_set_urgency (notify, NOTIFY_URGENCY_CRITICAL);
-+#if