aboutsummaryrefslogtreecommitdiffstats
path: root/devel/dbus-glib
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2008-06-18 07:27:09 +0800
committermarcus <marcus@FreeBSD.org>2008-06-18 07:27:09 +0800
commit5c97791abaa7d19a4d08abc8efbc2d4186504b1c (patch)
tree1e8dc6d653c79e6d7503003947e6e98ed8937773 /devel/dbus-glib
parentd045b638c929ea544d215c50763b54bb04bc26fa (diff)
downloadfreebsd-ports-gnome-5c97791abaa7d19a4d08abc8efbc2d4186504b1c.tar.gz
freebsd-ports-gnome-5c97791abaa7d19a4d08abc8efbc2d4186504b1c.tar.zst
freebsd-ports-gnome-5c97791abaa7d19a4d08abc8efbc2d4186504b1c.zip
Update to 0.76.
Diffstat (limited to 'devel/dbus-glib')
-rw-r--r--devel/dbus-glib/Makefile6
-rw-r--r--devel/dbus-glib/distinfo6
-rw-r--r--devel/dbus-glib/files/dbus-bus-introspect.xml77
-rw-r--r--devel/dbus-glib/files/patch-tools_run-with-tmp-session-bus.sh15
-rw-r--r--devel/dbus-glib/pkg-plist1
5 files changed, 4 insertions, 101 deletions
diff --git a/devel/dbus-glib/Makefile b/devel/dbus-glib/Makefile
index 8cc8c50cad84..2be0fd37d82e 100644
--- a/devel/dbus-glib/Makefile
+++ b/devel/dbus-glib/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= dbus
-PORTVERSION= 0.74
-PORTREVISION= 1
+PORTVERSION= 0.76
CATEGORIES= devel gnome
MASTER_SITES= http://dbus.freedesktop.org/releases/dbus-glib/
PKGNAMESUFFIX= -glib
@@ -34,7 +33,4 @@ PLIST_SUB= VERSION="1.0"
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
-pre-build:
- @${CP} ${FILESDIR}/dbus-bus-introspect.xml ${WRKSRC}/tools
-
.include <bsd.port.mk>
diff --git a/devel/dbus-glib/distinfo b/devel/dbus-glib/distinfo
index b324d60dc194..300048eb641b 100644
--- a/devel/dbus-glib/distinfo
+++ b/devel/dbus-glib/distinfo
@@ -1,3 +1,3 @@
-MD5 (dbus-glib-0.74.tar.gz) = 0923d825a0aff2e4eb23338b630286fb
-SHA256 (dbus-glib-0.74.tar.gz) = e870d8cd619834eda066e37fe69b441d629f9ad3a871ef2854fbbcd753b3abe2
-SIZE (dbus-glib-0.74.tar.gz) = 654853
+MD5 (dbus-glib-0.76.tar.gz) = d3b716a7e798faa1c6a867675f00306a
+SHA256 (dbus-glib-0.76.tar.gz) = 8bc083faaf3efdd444a8a44bbcbfea501a7b547736fda3c2d83bfdc9b5b672a3
+SIZE (dbus-glib-0.76.tar.gz) = 667547
diff --git a/devel/dbus-glib/files/dbus-bus-introspect.xml b/devel/dbus-glib/files/dbus-bus-introspect.xml
deleted file mode 100644
index 889d1cfafc04..000000000000
--- a/devel/dbus-glib/files/dbus-bus-introspect.xml
+++ /dev/null
@@ -1,77 +0,0 @@
- <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
-"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
-<node>
- <interface name="org.freedesktop.DBus.Introspectable">
- <method name="Introspect">
- <arg name="data" direction="out" type="s"/>
- </method>
- </interface>
- <interface name="org.freedesktop.DBus">
- <method name="RequestName">
- <arg direction="in" type="s"/>
- <arg direction="in" type="u"/>
- <arg direction="out" type="u"/>
- </method>
- <method name="ReleaseName">
- <arg direction="in" type="s"/>
- <arg direction="out" type="u"/>
- </method>
- <method name="StartServiceByName">
- <arg direction="in" type="s"/>
- <arg direction="in" type="u"/>
- <arg direction="out" type="u"/>
- </method>
- <method name="Hello">
- <arg direction="out" type="s"/>
- </method>
- <method name="NameHasOwner">
- <arg direction="in" type="s"/>
- <arg direction="out" type="b"/>
- </method>
- <method name="ListNames">
- <arg direction="out" type="as"/>
- </method>
- <method name="ListActivatableNames">
- <arg direction="out" type="as"/>
- </method>
- <method name="AddMatch">
- <arg direction="in" type="s"/>
- </method>
- <method name="RemoveMatch">
- <arg direction="in" type="s"/>
- </method>
- <method name="GetNameOwner">
- <arg direction="in" type="s"/>
- <arg direction="out" type="s"/>
- </method>
- <method name="ListQueuedOwners">
- <arg direction="in" type="s"/>
- <arg direction="out" type="as"/>
- </method>
- <method name="GetConnectionUnixUser">
- <arg direction="in" type="s"/>
- <arg direction="out" type="u"/>
- </method>
- <method name="GetConnectionUnixProcessID">
- <arg direction="in" type="s"/>
- <arg direction="out" type="u"/>
- </method>
- <method name="GetConnectionSELinuxSecurityContext">
- <arg direction="in" type="s"/>
- <arg direction="out" type="ay"/>
- </method>
- <method name="ReloadConfig">
- </method>
- <signal name="NameOwnerChanged">
- <arg type="s"/>
- <arg type="s"/>
- <arg type="s"/>
- </signal>
- <signal name="NameLost">
- <arg type="s"/>
- </signal>
- <signal name="NameAcquired">
- <arg type="s"/>
- </signal>
- </interface>
-</node>
diff --git a/devel/dbus-glib/files/patch-tools_run-with-tmp-session-bus.sh b/devel/dbus-glib/files/patch-tools_run-with-tmp-session-bus.sh
deleted file mode 100644
index 4aa4e5a1893a..000000000000
--- a/devel/dbus-glib/files/patch-tools_run-with-tmp-session-bus.sh
+++ /dev/null
@@ -1,15 +0,0 @@
---- tools/run-with-tmp-session-bus.sh.orig Sat Oct 7 16:18:50 2006
-+++ tools/run-with-tmp-session-bus.sh Sat Oct 7 16:19:24 2006
-@@ -1,10 +1,10 @@
--#! /bin/bash
-+#! /bin/sh
-
- SCRIPTNAME=$0
- WRAPPED_SCRIPT=$1
- shift
-
--function die()
-+die()
- {
- if ! test -z "$DBUS_SESSION_BUS_PID" ; then
- echo "killing message bus "$DBUS_SESSION_BUS_PID >&2
diff --git a/devel/dbus-glib/pkg-plist b/devel/dbus-glib/pkg-plist
index 6c0ddcbd41d8..ca73973caaa3 100644
--- a/devel/dbus-glib/pkg-plist
+++ b/devel/dbus-glib/pkg-plist
@@ -13,7 +13,6 @@ libdata/pkgconfig/dbus-glib-1.pc
%%DOCSDIR%%/ch02.html
%%DOCSDIR%%/ch03.html
%%DOCSDIR%%/dbus-binding-tool.html
-%%DOCSDIR%%/dbus-glib-DBus-GLib-low-level.html
%%DOCSDIR%%/dbus-glib-DBus-GObject-related-functions.html
%%DOCSDIR%%/dbus-glib-DBusGConnection.html
%%DOCSDIR%%/dbus-glib-DBusGError.html