summaryrefslogtreecommitdiff
path: root/devel/at-spi/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2006-03-30Update to 1.7.4:jmmv1-4/+3
What's new in at-spi-1.7.4: * Fixed dist to include Accessibility_Selector.idl (missing from dist though in cvs since 1.7.3). * Bugfixes to EventDetails event support, and fixed event emission for implementors of SPI_REMOTE_OBJECT. What's new in at-spi-1.7.0 through 1.7.3: * Added idl/Accessibility_Selector.idl to the repository (missing in 1.7.0 through 1.7.2, added in 1.7.3) * DOCS: All the IDL is now documented with doxygen-compatible docs. Just run 'doxygen oxyfile' in the IDL directory. (This will be automated in a future version). * NEW API: idl: Accessibility::Accessible:getAttributes (name/value pair annotation for all objects) Accessibility::Accessible:getApplication (retrieves ref to host app) Accessibility::Component:getAlpha (get transparency/opacity value of component) Accessibility::Image:getLocale (get POSIX locale for image and imagedesc) Accessibility::Text:getAttributeValue (retrieve a single named attribute value) Accessibility::Relation:RELATION_PARENT_WINDOW_OF Accessibility::Role:ROLE_ENTRY, ROLE_CHART, ROLE_CAPTION, ROLE_DOCUMENT_FRAME, ROLE_HEADING, ROLE_PAGE, ROLE_SECTION (New roles for complex docs and forms.) Accessibility::State:STATE_REQUIRED, STATE_TRUNCATED, STATE_ANIMATED, STATE_INVALID_ENTRY, STATE_SUPPORTS_AUTOCOMPLETION, STATE_SELECTABLE_TEXT, STATE_IS_DEFAULT (New states, for complex forms) Accessibility::EventDetails (new, more detailed info marshalled with events) cspi: (AccessibleEvent_getSourceName): (AccessibleEvent_getSourceRole): (AccessibleEvent_getSourceApplication): (AccessibleEvent_getSourceDetails): New methods for interrogating/demarshalling event details i.e. source's accessible name, role, and host app. (Accessible_getAttributes): New, retrieve annotations/attributes on objects. (Accessible_getHostApplication): New, retrieve enclosing Application instance for an object. (AccessibleImage_getImageLocale): New, retrieve Locale info for an image. (AccessibleComponent_getAlpha): New, retrieve alpha value for an AccessibleComponent (see discussion in idl section above). * BUGFIXES: Some compiler fixes from Kjartan Marass. Some thread-related fixes from Michael Meeks. Don't allow non-preemptive listeners to pre-empt events! (Bill Haneman).
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz1-1/+2
of the shlib major bump. PKGREVISION++ for the dependencies.
2005-10-14Update to 1.6.6:jmmv1-2/+2
* Fixed some discrepancies in event listener deregistration, improves on-the-fly deregistration of event listeners. Fixed some tests. * Added cspi docs back into dist. * Fixed brokenness in 'make check.'
2005-08-21Update to 1.6.3:jmmv1-2/+2
* bugfix for #165129 * Added locale 'xh' (Adi Attar)
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam1-3/+2
file's sole purpose was to provide a dependency on pkg-config and set some environment variables. Instead, turn pkg-config into a "tool" in the tools framework, where the pkg-config wrapper automatically adds PKG_CONFIG_LIBDIR to the environment before invoking the real pkg-config. For all package Makefiles that included pkg-config/buildlink3.mk, remove that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz1-2/+2
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-22Update to 1.6.3:jmmv1-2/+3
* bugfix for #165129 * Added locale 'xh' (Adi Attar)
2005-02-26Update to 1.6.2:jmmv1-2/+2
* fixes for problems at logout time (hangs, crashes) * bugfixes for #160862, #152147. * minor enhancements to test login-helper-server-test.
2004-12-28Update to 1.6.1:jmmv1-3/+2
* LoginHelper API docs improved. * fixed bug which caused problems if an app which loaded atk-bridge forks, and one fork exits. (Padraig O'Briain). * New language: Galician (gl), Jesus Bravo Alvarez. * Ansi build fixes (Kjartan Maraas).
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-21Update to 1.6.0. This version corresponds to GNOME 2.8.0.jmmv1-3/+3
What's new in at-spi-1.6.0: Nothing. What's new in at-spi-1.5.4: * Registration failure at SPI_init is now detected and an error code is returned to the caller (bug #147648). * We now use polling as our default for detecting mouse button changes (this was formerly our fallback method); this prevents conflict with Xstroke. [a better long-term fix requires the Xevie extension] * We now register on a per-DISPLAY, but not per-SCREEN, basis. This fixes several issues, see bugs #149962, #136986, #144086. * New languages in configure.in: bs (Christian Rose) nb (Kjartan Maraas) ============ What's new in at-spi-1.5.3: * New role EMBEDDED (bug #144415). * Added object:bounds-changed event, for detecting when the component bounds of an object have changed onscreen. ============== What's new in at-spi-1.5.2: * Added Accessibility_LoginHelper interface, and LoginHelper GType. Also added client and server tests for this interface. The purpose is to identify services (typically, assistive technologies) which need access to system or device services (keyboard, audio, serial ports, posting windows, etc.) during login or re-login/authentication. * fixed make distcheck. * Added a check in cspi_object_unref, which should help in detecting refcount bugs in clients (Padraig O'Briain). * New languages: Walloon (Pablo Saratxaga) Bulgarian (Alexander Shopov) What's new in at-spi-1.5.1: * Allow synthesis of keysyms that aren't in the current X keymap. * languages: Gujarati (Guntupalli Karunakar), Canadian English (Alexander Winston) * Added omitted declarations for already-existing methods AccessibleTable_addRowSelection(), AccessibleTable_addColumnSelection(), AccessibleTable_removeRowSelection(), AccessibleTable_removeColumnSelection(). * bug fixes: 136660, 120659 (partial), 132237, 134332.
2004-05-15Update to 1.4.2:jmmv1-3/+3
* languages: Gujarati (Guntupalli Karunakar), Canadian English (Alexander Winston) * Added omitted declarations for already-existing methods AccessibleTable_addRowSelection(), AccessibleTable_addColumnSelection(), AccessibleTable_removeRowSelection(), AccessibleTable_removeColumnSelection(). * bug fixes: 136660, 120659 (partial), 132237, 134332.
2004-05-07Drop maintainership; I don't have the enough free time to maintainxtraeme1-2/+2
all these packages.
2004-04-01Update to 1.4.0:jmmv1-5/+3
What's new in at-spi-1.4.0: [GNOME 2.6.0 release] * build improvements from Laszlo Peter. * en_GB added to ALL_LINGUAS. What's new in at-spi-1.3.16: [GNOME 2.6 RC1 release] * Fix for bug #134036, which could steal keystrokes from applications if at-spi registry failed. * Build fixes, added .pc.in files (from Laszlo Peter). This is the gnome-2.6 beta release of at-spi. What's new in at-spi-1.3.15: * translations: Amanpreet Singh Alam (pa) Bojan Suzic (sr@ije)
2004-03-09Update to 1.3.15. This release includes translation updates and pregeneratedjmmv1-2/+3
API documentation.
2004-02-26Update to 1.3.13:jmmv1-2/+2
* Build improvements: Requires automake-1.7, and calls GTK_DOC_CHECK. (Padraig O'Briain, Matthias Clasen, some from Tomas Kloczko) * bugfixes (bad g_free, and a null string issue that caused SEGV on Solaris when running sample programs).
2004-02-15Update to 1.3.12:jmmv1-2/+2
* Fix for docs bug #129728 (Sebastien Bacher). * Fix for bug #129479, allows distinction between multiple DISPLAY instances of at-spi registry. * Fix for #124837, which could cause 'hang' interactions between desktop and clients such as gnopernicus. * Fixes for NUMLOCK mask behavior, bug #129103. * Greatly improved key synthesis for non-Latin characters. We can now synthesize any KeySym which is defined in the current X keymap. (bug #128824). Thanks to Marcus G Kuhn for the public-domain code borrowed here. * Fixes for: 128912. * new languages: fa, ar, id.
2004-02-14PKGCONFIG_OVERRIDE is relative to WRKSRC.jmmv1-3/+3
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-13bl3ify.jmmv1-9/+9
2004-02-13Update to 1.3.9. Changes in the package:jmmv1-4/+7
- Fill missing dependancies. - Use pkgsrc intltool. What's new in at-spi-1.3.9: * New api: AccessibleApplication_getLocale (app, type), returns a POSIX locale string for a locale category, for instance Accessibility_LOCALE_TYPE_MESSAGES. * New SPI_ROLE_EDITBAR. * New Accessible_getLocalizedRoleName. * New AccessibleText_getDefaultAttributes. * fixes to AccessibleStreamableContent, including a 'seek' implementation for cspi. Thanks to Michael Meeks for some related bugfixes in StreamableContent. * now we emit key-released events to appropriate keylisteners. * new LINGUAS in configure.in: nn (Asmund Sjeveland), lt (Gediminas Paulauskas), no (Kjartan Masass), eu (Christian Rose). * bugfixes for: #120991, #120473, #118581, #127463, #116009, #114926, #125834, #111429, #121974.
2004-01-23Bump PKGREVISION due to xmlcatmgr update to 2.0beta1. I know; this is a PITA.jmmv1-2/+2
This shouldn't be needed if we had non-recursive dependancies *sigh*.
2004-01-22replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-03Bump package revisions for tiff update.reed1-1/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-12-30Whitespace fixescjep1-2/+2
2003-12-29Initial import of at-spi-1.3.8xtraeme1-0/+31
This is the Early Access Release of the Gnome Accessibility Project's Assistive Technology Service Provider Interface.