1b7860acfe
AT-SPI is the primary service interface by which assistive technologies query and receive notifications from running applications. This version of at-spi is a major break from previous versions. It has been completely rewritten to use D-Bus rather than ORBIT / CORBA for its transport protocol. This package includes a python client library for the AT-SPI D-Bus accessibility infrastructure. ok jasper@
33 lines
609 B
Makefile
33 lines
609 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/04/26 18:31:24 ajacoutot Exp $
|
|
|
|
COMMENT= python bindings for at-spi2
|
|
|
|
GNOME_PROJECT= pyatspi
|
|
GNOME_VERSION= 2.0.1
|
|
|
|
PKGNAME= py-atspi-${GNOME_VERSION}
|
|
|
|
HOMEPAGE= http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
|
|
|
|
# LGPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= x11/gnome \
|
|
lang/python
|
|
|
|
PKG_ARCH= *
|
|
|
|
BUILD_DEPENDS= devel/py-gobject
|
|
RUN_DEPENDS= devel/py-gobject \
|
|
x11/gnome/at-spi2-core
|
|
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
|
|
# connects to DBus
|
|
REGRESS_IS_INTERACTIVE= x11
|
|
|
|
.include <bsd.port.mk>
|