pkgsrc/sysutils/dbus-glib/Makefile
drochner edb70b7ae6 update to 0.74
changes:
Init threading first to stop a warning from new GLib.
Remove the XML documentation support in configure
Fix typo in _dbus_gvalue_signals_error (#10837) (Thanks to Peter Kjellerstedt)
Update GLib requirement (Closes #10889).
Document dbus-gtype-specialized
Add simple test suite for peer objects.
Support peer-to-peer proxies. (Closes #10233).
Add dbus_connection_get_g_connection.
Stop compiler warnings (Closes #10374).
Handle dbus errors which are not name has no owner
Update abstract socket test from DBus, which now cross-compiles
Rename the error quark to be unique
Update AUTHORS
2007-07-06 18:23:26 +00:00

47 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.13 2007/07/06 18:23:26 drochner Exp $
#
DISTNAME= dbus-glib-0.74
CATEGORIES= sysutils
MASTER_SITES= http://dbus.freedesktop.org/releases/dbus-glib/
MAINTAINER= jmmv@NetBSD.org
HOMEPAGE= http://www.freedesktop.org/Software/dbus
COMMENT= GLib bindings for the D-BUS message bus system
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
PKG_OPTIONS_VAR= PKG_OPTIONS.dbus-glib
PKG_SUPPORTED_OPTIONS+= debug
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-asserts
CONFIGURE_ARGS+= --enable-tests
CONFIGURE_ARGS+= --enable-verbose-mode
.endif
BUILDLINK_API_DEPENDS.dbus+= dbus>=0.94
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../sysutils/dbus/buildlink3.mk"
.include "../../textproc/expat/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"