0.92: Senko Rašić found that this should have depended on GLib 2.26, but still only checked for 2.24. Sorry about that. So here's a new version, identical to 0.90 except with the GLib dependency fixed. 0.90: Christian Dywan (6): Remove unused method attribute variables in introspect_interfaces Dereference main loop once variant recursion test is done Plug leak of expected_str in threaded server test Free path string after emission in in statemachine server example Always free method_c_name in dbus binding tool Free looked up function name in dbus binding tool Mike Gorse (1): Fix switching a connection's GMainContext Simon McVittie (18): Add DBusGObjectPath, DBusGSignature typedefs Give specialized GArrays iteration/appending support Actually run test/core/test-gvariant Test dbus_g_value_build_g_variant for various fixed arrays Remove gcov decoder, which hasn't worked since dbus-glib left libdbus replace remnants of gcov support with lcov.am from telepathy-glib fd.o #30428: add dbus_g_value_parse_g_variant dbus_g_type_specialized_map_append: document that the value contents are stolen dbus_g_value_build_g_variant: cope with empty arrays, maps Test dbus_g_value_parse_g_variant dbus_g_value_basic_array_parse_variant: allow the fast path to be taken Adjust syntax to avoid relying on array/pointer duality dbus_g_value_parse_variant_by_type: talk about GVariant, not GDBus, in docs Add dbus_g_value_parse_g_variant to gtkdoc output unhandled GVariantClass as ASCII if possible copy arrays of 'o', 'g' from GVariant without constructing a format string programmatically Merge branch 'gvariant' Merge branch 'type-names' Will Thompson (5): Build test/ before its subdirs. Release version 0.90 Makefile.am: Remove ChangeLog's spurious FORCE dependency HACKING: Fix release URL; be honest about NEWS
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2010/12/12 13:17:45 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= dbus-glib-0.92
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://dbus.freedesktop.org/releases/dbus-glib/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.freedesktop.org/Software/dbus
|
|
COMMENT= GLib bindings for the D-BUS message bus system
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
MAKE_JOBS_SAFE= NO
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_TOOLS+= gmake msgfmt pkg-config
|
|
USE_LIBTOOL= YES
|
|
|
|
PKGCONFIG_OVERRIDE= dbus-glib-1.pc.in
|
|
|
|
CONFIGURE_ARGS+= --disable-ansi
|
|
CONFIGURE_ARGS+= --disable-asserts
|
|
CONFIGURE_ARGS+= --disable-doxygen-docs
|
|
CONFIGURE_ARGS+= --disable-gcov
|
|
CONFIGURE_ARGS+= --disable-tests
|
|
CONFIGURE_ARGS+= --disable-verbose-mode
|
|
CONFIGURE_ARGS+= --disable-xml-docs
|
|
CONFIGURE_ARGS+= --enable-checks
|
|
CONFIGURE_ARGS+= --with-xml=expat
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.26
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.dbus+= dbus>=1.1
|
|
.include "../../sysutils/dbus/buildlink3.mk"
|
|
.include "../../textproc/expat/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|