[arch-commits] Commit in (5 files)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Mon Jun 12 18:52:55 UTC 2017


    Date: Monday, June 12, 2017 @ 18:52:55
  Author: bpiotrowski
Revision: 236555

extra2community: Moving dbus-c++ from extra to community

Added:
  dbus-c++/
  dbus-c++/repos/
  dbus-c++/trunk/
  dbus-c++/trunk/PKGBUILD
  dbus-c++/trunk/gcc47.patch

-------------+
 PKGBUILD    |   39 +++++++++++++++++++++++++++++++++++++++
 gcc47.patch |   10 ++++++++++
 2 files changed, 49 insertions(+)

Added: dbus-c++/trunk/PKGBUILD
===================================================================
--- dbus-c++/trunk/PKGBUILD	                        (rev 0)
+++ dbus-c++/trunk/PKGBUILD	2017-06-12 18:52:55 UTC (rev 236555)
@@ -0,0 +1,39 @@
+# Maintainer: Ray Rashif <schiv at archlinux.org>
+# Contributor: Xavier D. <magicrhesus at ouranos.be>
+# Contributor: Zarra <zarraxx at gmail.com>
+
+pkgname=dbus-c++
+_pkgname=lib$pkgname
+pkgver=0.9.0
+pkgrel=6
+pkgdesc="A C++ API for D-BUS"
+url="http://sourceforge.net/projects/dbus-cplusplus/"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus>=1.2.0' 'glib2')
+makedepends=('autoconf' 'automake' 'libtool')
+source=("http://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/$pkgver/libdbus-c%2B%2B-$pkgver.tar.gz"
+	      'gcc47.patch')
+md5sums=('e752116f523fa88ef041e63d3dee4de2'
+         '9319b402b15f37d881b51bc758368900')
+
+build() {
+    cd "$srcdir/$_pkgname-$pkgver"
+
+    patch -Np0 -i "$srcdir/gcc47.patch"
+    export LDFLAGS+=" -lexpat -lpthread" # -lpthread needed for i686
+
+    ./autogen.sh --prefix=/usr \
+                 --disable-static \
+                 --enable-glib \
+                 --disable-ecore
+    make
+}
+
+package() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: dbus-c++/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: dbus-c++/trunk/gcc47.patch
===================================================================
--- dbus-c++/trunk/gcc47.patch	                        (rev 0)
+++ dbus-c++/trunk/gcc47.patch	2017-06-12 18:52:55 UTC (rev 236555)
@@ -0,0 +1,10 @@
+--- src/eventloop-integration.cpp.orig	2012-05-09 11:22:09.683290763 +0200
++++ src/eventloop-integration.cpp	2012-05-09 11:22:44.313288912 +0200
+@@ -38,6 +38,7 @@
+ #include <cassert>
+ #include <sys/poll.h>
+ #include <fcntl.h>
++#include <unistd.h>
+ 
+ using namespace DBus;
+ using namespace std;



More information about the arch-commits mailing list