9fd6ffa82e
* Fix atspi_component_contains (BGO#710730). * Hopefully fix a crash when unable to register with the session manager (BGO#710689). * Fix a leak introduced in 2.9.92 that adversely affected performance (BGO#709625). * Fix multiple deadlocks with keystroke listeners (BGO#707218). * Fix a performance issue when running for a long time without a main loop, such as with a dogtail script (BGO#701145). * Remove an unneeded unref that was causing a warning (BGO#706893). * Skip some functions that were not introspectable (BGO#707010). * Separate out X-dependent functionality, allow building without X11 (albeit with various things not working), and don't query/use X if DISPLAY is not set (BGO#682199, BGO#701378). * Add atspi_text_get_string_at_offset, and deprecate atspi_text_get_text_at_offset. * Fix possible memory leak when D-Bus calls time out. * Fix a memory leak in atspi_accessible_get_role_name that was introduced earlier in the 2.9 cycle with the enum refactor. * A couple of functions not intended for introspection are now marked as skip. * Add atspi_set_main_context (mainly for use by at-spi2-atk). * Add atspi_is_initialized (BGO#681276). * Fix D-Bus introspection for GetActions. * Use glib-mkenums to generate enum types, and use these generated types for role and state names, rather than static tables. * Annotate filter in atspi_register_device_event_listener with allow-none (BGO#700237). * Rename various functions to avoid name collisions (BGO#700243). The old functions are deprecated in favor of the renamed functions and renamed for introspection.
44 lines
1.5 KiB
Makefile
44 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.14 2013/12/08 13:40:20 prlw1 Exp $
|
|
|
|
DISTNAME= at-spi2-core-2.10.2
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/at-spi2-core/${PKGVERSION_NOREV:R}/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= prlw1@cam.ac.uk
|
|
HOMEPAGE= http://www.linuxfoundation.org/collaborate/workgroups/accessibility/atk/at-spi/at-spi_on_d-bus
|
|
COMMENT= Assistive Technology Service Provider Interface Core
|
|
LICENSE= gnu-lgpl-v2
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake intltool msgfmt pkg-config
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASE}
|
|
|
|
PKGCONFIG_OVERRIDE+= atspi-2.pc.in
|
|
|
|
BUILD_DEFS+= VARBASE PKG_SYSCONFBASE
|
|
|
|
EGDIR= ${PREFIX}/share/examples/at-spi2-core
|
|
PKG_SYSCONFSUBDIR= at-spi2
|
|
busconfigdir= ${PKG_SYSCONFDIR}
|
|
eg_busconfigdir= ${EGDIR}/at-spi2
|
|
default_sessiondir= ${PKG_SYSCONFBASE}/xdg/autostart
|
|
eg_default_sessiondir= ${EGDIR}/xdg/autostart
|
|
|
|
INSTALL_MAKE_FLAGS+= sysconfdir=${EGDIR}
|
|
|
|
CONF_FILES= ${eg_busconfigdir}/accessibility.conf \
|
|
${busconfigdir}/accessibility.conf
|
|
CONF_FILES+= ${eg_default_sessiondir}/at-spi-dbus-bus.desktop \
|
|
${default_sessiondir}/at-spi-dbus-bus.desktop
|
|
MAKE_DIRS+= ${default_sessiondir}
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
.include "../../sysutils/dbus/buildlink3.mk"
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXtst/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|