diff options
author | gahr <gahr@FreeBSD.org> | 2015-06-20 17:51:32 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2015-06-20 17:51:32 +0800 |
commit | b3c730632dedbec35c3deab5fdd7876672104a77 (patch) | |
tree | ff1dfb9c8a25703722a0a9dc5bf4d4529824ce89 /devel | |
parent | db5cae9b4f5b2f6d8eca765cb3e4b659afa7249d (diff) | |
download | freebsd-ports-gnome-b3c730632dedbec35c3deab5fdd7876672104a77.tar.gz freebsd-ports-gnome-b3c730632dedbec35c3deab5fdd7876672104a77.tar.zst freebsd-ports-gnome-b3c730632dedbec35c3deab5fdd7876672104a77.zip |
- Update to 2.1
Changes:
* Add support for passing file handles over the dbus.
* Add a new dbus info subcommand to check if a dbus connection supports file
descriptor passing.
* Allow method scripts to decide at runtime if the response will be given
asynchronous or not.
* Do monitoring via a filter, rather than a fallback handler. That way also
method_return- and error messages can be seen.
* Accept server addresses as dbus identifiers for all commands.
* Allow specifying an empty string for the dbus call -handler option, which
will be handled the same as not having the option at all, i.e.:
synchronous operation.
* Properly handle 32- and 64-bit unsigned arguments
* The unknown subcommand should also understand the -details option
* Make sure type signatures and object paths are valid before passing them to
dbus functions, because the library will panic on invalid values.
* Implement "integer constant is too large" patch provided by Stuart.
* Fix wrong return code from [dbus info capabilities]
Diffstat (limited to 'devel')
-rw-r--r-- | devel/dbus-tcl/Makefile | 8 | ||||
-rw-r--r-- | devel/dbus-tcl/distinfo | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/devel/dbus-tcl/Makefile b/devel/dbus-tcl/Makefile index 773dd4401584..234ae46dc447 100644 --- a/devel/dbus-tcl/Makefile +++ b/devel/dbus-tcl/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dbus-tcl -PORTVERSION= 2.0 +PORTVERSION= 2.1 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/dbus/${PORTVERSION}/ DISTNAME= dbus-${PORTVERSION} @@ -23,7 +23,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} \ --exec-prefix=${PREFIX} -PLIST_FILES= lib/dbus/libdbus20.so.1 \ +PLIST_FILES= lib/dbus/libdbus21.so.1 \ lib/dbus/pkgIndex.tcl \ man/mann/dbus.n.gz @@ -33,6 +33,10 @@ PLIST_FILES= lib/dbus/libdbus20.so.1 \ BUILD_DEPENDS= dtplite:${PORTSDIR}/devel/tcllib .endif +post-patch: + ${REINPLACE_CMD} -e '/^INSTALL_PROGRAM/s|$$| -s|' \ + ${WRKSRC}/Makefile.in + regression-test: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} test diff --git a/devel/dbus-tcl/distinfo b/devel/dbus-tcl/distinfo index 60ed7d7b46f7..b4252a620d17 100644 --- a/devel/dbus-tcl/distinfo +++ b/devel/dbus-tcl/distinfo @@ -1,2 +1,2 @@ -SHA256 (dbus-2.0.tar.gz) = 428b4045d395b0d26255730ce7c0d14850e45abb3c7cc6d9d48c1d2b723bb16a -SIZE (dbus-2.0.tar.gz) = 170733 +SHA256 (dbus-2.1.tar.gz) = 82c116cb7b70cdd7183e1054f2c52363aab7c608b5fb375dbb129f080734e2d0 +SIZE (dbus-2.1.tar.gz) = 173734 |