mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
- 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]
This commit is contained in:
parent
20cc9f899a
commit
249b044e4f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=390157
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user