* Add atspi_accessible_get_object_locale (BGO#694368). * Start the bus launcher in the initialization phase (BGO#694984). * Removed a debug print that was accidentally included in 2.7.5. * Add ATSPI_ROLE_LEVEL_BAR to correspond to the new atk role. * Fix various compiler warnings. * Fix some ref count leaks. * Some functions that return accessibles now propagate errors. * Atspi_accessible_get_index_in_parent no longer returns -1 if the object's parent is not cached (BGO#688057). * re-register keystroke listeners if the registry goes away and then returns. * Fix atspi_device_listener_new_simple. * Fix some compiler warnings. * Build: use gobject-introspection's Makefile instead of rolling our own. * Fix a crash when parsing events without detail when there is a listener for the event that names a specific detail value. * Fix crash when removing hung processes. * Fix deregistering of applications. * A few documentation fixes. * Only call an event listener once per event, even if the listener registered for both the event and a superset of the event. * Don't distribute dbind-config.h (BGO#688083). * Fix gtk-doc for Atspi-Registry (BGO#688224). * Some introspection fixes to make vapigen happy (BGO#688223). * [registry] Fixed a crash handling DeregisterKeystrokeListener. * Update the cache in response to role change notifications (BGO#685469). * Don't output a warning when a p2p connection isn't available.
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2013/05/18 21:51:59 prlw1 Exp $
|
|
|
|
DISTNAME= at-spi2-core-2.8.0
|
|
CATEGORIES= devel
|
|
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
|
|
|
|
.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"
|