diff options
author | tmclaugh <tmclaugh@FreeBSD.org> | 2006-11-08 13:25:43 +0800 |
---|---|---|
committer | tmclaugh <tmclaugh@FreeBSD.org> | 2006-11-08 13:25:43 +0800 |
commit | 2a223ed523b308d48f9e1628c8243a5c7523ce18 (patch) | |
tree | be2d12fcd8ec1481f6f406f522b77710553902d1 | |
parent | eb1c8fe4ba5595ed709a982a8e33e9a2be8aed39 (diff) | |
download | freebsd-ports-gnome-2a223ed523b308d48f9e1628c8243a5c7523ce18.tar.gz freebsd-ports-gnome-2a223ed523b308d48f9e1628c8243a5c7523ce18.tar.zst freebsd-ports-gnome-2a223ed523b308d48f9e1628c8243a5c7523ce18.zip |
Change the name of the dbus system socket to system_bus_socket per the dbus
spec.
"The address of the system message bus is given in the
DBUS_SYSTEM_BUS_ADDRESS environment variable. If that variable is not set,
applications should try to connect to the well-known address
unix:path=/var/run/dbus/system_bus_socket."
Approved by: marcus
-rw-r--r-- | devel/dbus-sharp/Makefile | 6 | ||||
-rw-r--r-- | devel/dbus/Makefile | 4 | ||||
-rw-r--r-- | net/avahi/Makefile | 4 | ||||
-rw-r--r-- | net/py-avahi/Makefile | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/devel/dbus-sharp/Makefile b/devel/dbus-sharp/Makefile index 56d3d1e01b3f..1a45f9896a15 100644 --- a/devel/dbus-sharp/Makefile +++ b/devel/dbus-sharp/Makefile @@ -7,7 +7,7 @@ # PORTVERSION= 0.62 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= devel gnome PKGNAMESUFFIX= -sharp @@ -35,8 +35,8 @@ CONFIGURE_ARGS= --enable-mono \ --disable-gtk \ --disable-qt \ --with-test-socket-dir=${WRKDIR} \ - --with-system-pid-file=/var/run/dbus.pid \ - --with-system-socket=/var/run/dbus \ + --with-system-pid-file=/var/run/dbus/dbus.pid \ + --with-system-socket=/var/run/dbus/system_bus_socket \ --with-session-socket-dir=/var/tmp \ --disable-doxygen-docs \ --disable-xml-docs diff --git a/devel/dbus/Makefile b/devel/dbus/Makefile index c828eebba51a..f23dd3bc2cba 100644 --- a/devel/dbus/Makefile +++ b/devel/dbus/Makefile @@ -7,7 +7,7 @@ PORTNAME= dbus PORTVERSION?= 0.95 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= devel gnome MASTER_SITES= http://dbus.freedesktop.org/releases/dbus/ @@ -23,7 +23,7 @@ USE_LDCONFIG= yes CONFIGURE_ARGS=--localstatedir=/var \ --with-test-socket-dir=${WRKDIR} \ --with-system-pid-file=/var/run/dbus/dbus.pid \ - --with-system-socket=/var/run/dbus/dbus.pipe \ + --with-system-socket=/var/run/dbus/system_bus_socket \ --with-session-socket-dir=/var/tmp \ --disable-doxygen-docs \ --disable-xml-docs diff --git a/net/avahi/Makefile b/net/avahi/Makefile index 0424157fff79..e99b7f04006a 100644 --- a/net/avahi/Makefile +++ b/net/avahi/Makefile @@ -7,7 +7,7 @@ PORTNAME= avahi PORTVERSION= 0.6.14 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= net dns MASTER_SITES= http://www.avahi.org/download/ @@ -27,7 +27,7 @@ USE_AUTOTOOLS= libtool:15 USE_LDCONFIG= yes USE_GETOPT_LONG=yes CONFIGURE_ARGS?=--with-distro=freebsd \ - --with-dbus-system-address=unix:path=/var/run/dbus/dbus.pipe \ + --with-dbus-system-address=unix:path=/var/run/dbus/system_bus_socket \ --disable-qt3 \ --disable-qt4 \ --disable-python \ diff --git a/net/py-avahi/Makefile b/net/py-avahi/Makefile index 0d6480cfaf83..2ffedf35688c 100644 --- a/net/py-avahi/Makefile +++ b/net/py-avahi/Makefile @@ -5,7 +5,7 @@ # $FreeBSD$ # -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= net gnome python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -39,7 +39,7 @@ CONFIGURE_ARGS= --enable-python \ --disable-xml-docs \ --disable-doxygen-dot \ --localstatedir=/var \ - --with-dbus-system-address=unix:path=/var/run/dbus/dbus.pipe \ + --with-dbus-system-address=unix:path=/var/run/dbus/system_bus_socket \ --with-distro=freebsd MAN1= avahi-bookmarks.1 avahi-discover.1 |