Commit graph

34 commits

Author SHA1 Message Date
jmmv
1f8552aa22 Update to 1.0.5:
What's new in  GOK 1.0.5?

       * Respond to more children-changed:add events, specifically, rebuild
         the UI component list if children are added to ROLE_FRAME objects,
         ROLE_ROOT_PANE objects, or ROLE_PANEL objects (in addition to the
         roles already listened to, for instance ROLE_HTML_CONTAINER).

       * Handle the somewhat aberrant menus that some gtk+ apps exhibit if
         their UIs were created with glade - namely, menus may have
         ROLE_MENU_ITEM instead of ROLE_MENU.  If a ROLE_MENU_ITEM has
         children, then we now treat it as though it had ROLE_MENU.

What's new in  GOK 1.0.4?

       * Fix for #301377, we can now handle actionable table cells even if
         they don't have unique names.

       * We now grab focus if the actionable item is a button;
         this improves behavior with the gtk file selector.

       * New languages:  "eu" (Basque),  Iñaki Larrañaga.
                         "rw" (Rwandan), Steve Murphy.

       * Fix for #172111.
2005-08-21 11:32:46 +00:00
jlam
7820875fff Remove the abuse of buildlink that was pkg-config/buildlink3.mk. That
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-08-10 20:56:10 +00:00
wiz
d774725534 Change path from devel/pkgconfig to devel/pkg-config.
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-07-21 16:29:42 +00:00
jlam
95fd1f6ec9 Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.
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-06-01 18:02:37 +00:00
jlam
585534220c Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:
USE_GNU_TOOLS	-> USE_TOOLS
	awk		-> gawk
	m4		-> gm4
	make		-> gmake
	sed		-> gsed
	yacc		-> bison
2005-05-22 20:07:36 +00:00
jmmv
0e1e80a923 Update to 1.0.3:
* Updated translations:
		Adam Weinberger (en_CA)
		ahmad riza h nst (id)
		Alessio Dessì (it)
		Jordi Mallach (ca)
		Jyotsna Shrestha (ne)

	* Fix for bug #171231 GOK sometimes hung when UI grabbing Yelp.

	* Fix for bug #170347 User is stuck when using the repeat key on a drop-down menu

	* Fix for bug #169761 Tidying up some code.

	* Fix for bug #160726 to allow gok to pass make distcheck.

2005-03-07  Irene Ryan <irene.ryan@sun.com>

	* help/gok/C/gok.xml: updated date, manual version,
	and s/w version number

	* help/gok/C/gok-C.omf: updated version and date details
2005-05-19 21:09:25 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
jmmv
b0dd167479 Update to 1.0.2:
What's new in GOK 1.0.2?
* Updated Translations:
	ahmad riza h nst (id)
	Alessio Dessì (it)
	Burçin Dönmez (tr)
	GNOME PL Team (pl)
	Jordi Mallach (ca)
	Jyotsna Shrestha (ne)
	Paul-Dan Oprisa-Stanescu (ro)
	Simos Xenitellis (el)
	Szabolcs Varga (hu)
	¿¿¿¿¿¿ ¿¿¿¿¿ (sr)

What's new in GOK 1.0.1?

* Fix for #168093 GOK now implements some libwnck API locally to avoid
   build compatibility issues with newly changed libwnck API.

* Fix for #168281 Memory allocation issues fixed.

* Fix for #168405 Fixed unwanted activation in dwell mode when the core pointer
   happens to enter a GOK window without purposeful user action.

What's new in GOK 1.0.0?

* With version 1.0.0 GOK has reached production quality release. This version
   is very similar to 0.12.4.  We have updated the README file and made sure
   all the appropriate files have been marked for translation.

What's new in GOK 0.12.4?

* Fix for rfe #166552 - GOK now autodetects XInput events from unexpected
  devices, and allows user to select the new XInput device.  GOK also
  attempts to work around corepointer conflicts by swapping the corepointer
  while it's running and restoring it on exit.
  This gives a great deal more insurance against core-pointer conflicts,
  USB-mouse renumbering due to hot-swapping, and other HID configuration
  issues.

* Bugfix for #166779 - we've fixed the regression in 'Mouse' functions.

* Bugfix for #159163 (Harry Lu) - we now successfully find more table-cell
  children, because we search recursively for names.

What's new in GOK 0.12.3?

* Four new translatable strings, for warning dialogs and alerts.

* Fixes for bugs #151606, #149266, #165828, #134348.

* Branch immediately to a UI Grab keyboard when an ALERT dialog is posted.

What's new in GOK 0.12.1?

* Fix for bugs 155473 (Bill Haneman), 160233 (Danilo Segan),
  151831 (David Bolter), 159932, 160717, 154926, 160357.

* New help manual from Irene Ryan.

What's new in GOK 0.12.0?

* bug fixes and a sparse NEWS section.

* Changed some terminology in UI to be consistent, i.e.
  "Select" and "Activate" mean pretty much the same thing across
  access methods now, 'select' means highlight, 'activate' means
  "virtual-click the GOK button".
2005-03-22 16:31:53 +00:00
kei
f92736be7c s/is is/is/ 2005-03-19 12:14:32 +00:00
jmmv
8d21d74f39 Update to 0.11.17:
* backport of bugfix for 159932
2005-02-26 17:26:09 +00:00
agc
07b46baa43 Add RMD160 digests 2005-02-24 11:02:49 +00:00
jmmv
3d00f8b993 Update to 0.11.16:
* Emergency bugfix for #157420 in 0.11.15.
* Bug fixes including: 155556, 157138, 157221, 154961, 155805, 156802
  154918, 156802,
* Mostly fixes and improvements to the dynamic accessibility keyboards.
2004-12-28 21:54:10 +00:00
kristerw
23fda7bea9 Fix a C99-ism to make this pkg build with gcc 2.95. 2004-11-12 22:10:16 +00:00
jmmv
888ac18c47 Update to 0.11.15:
What's new in GOK 0.11.15 ?

* Bug fixes including: 155556, 157138, 157221, 154961, 155805, 156802
  154918, 156802.
* Mostly fixes and improvements to the dynamic accessibility keyboards.

What's new in GOK 0.11.14 ?

* Bug fixes including: 155182 (double actions), 154499, 154604, #156153,
  #156479, 155344, 155473, 155476, 155512.
* LoginHelper's setSafe implementation now prevents word completion, as
  it should.
* Distinguish between HTML content and browser controls.
* Hush compiler warnings (bug 154915).
2004-11-05 14:11:41 +00:00
jmmv
6263c9cb0b Remove some useless C99isms to fix the build under NetBSD 1.6.2.
Should fix bug PR/27188 and problem shown in kristerw@'s bulk build.
2004-11-02 22:51:33 +00:00
jmmv
3e3f718222 Update to 0.11.12:
What's new in GOK 0.11.12?
* Bug fixes including: 155182 (double actions)

What's new in GOK 0.11.10/0.11.11 ?
* Fix regression caused by bugfix 151417; this release
  should be used instead of 0.11.9.

What's new in GOK 0.11.9 ?
* Expose multiple actions for UI components which have more than one
  possible user action available.  Fixes bug #151417.
* Improved table and list behavior: Bugfixes for #153130, #152788,
  #153389.
* Rewrite of online help (thanks to Irene Ryan!)
2004-10-28 19:11:50 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
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-10-03 00:12:51 +00:00
jmmv
349a21b853 Update to 0.11.8. This version corresponds to GNOME 2.8.0.
* Fixed broken .m4 macro (bugzilla 152086)

* Fixes for bug #144435, #147633, #142831, and #150260.
  Non-XKB compose keyboards are working better now with
  word completion, and at login with a working 'Menus' key.
2004-09-21 17:11:42 +00:00
xtraeme
8d2bb7dcb6 Drop maintainership; I don't have the enough free time to maintain
all these packages.
2004-05-07 01:14:46 +00:00
jmmv
73825dce0e Update to 0.10.2: [This is the gnome-2.6.1 release of GOK]
* Much improved table handling: many table and list items
  that were previously 'inert' when activated from GOK now
  work correctly. (#117567, #129450)

* GOK now allows direct interaction with the gtk+-2.4 file selector.
  (#136065).

* Fixed a regression in the Settings dialog
  when used with HighContrastInverse themes. (#138683)

* Fixed modifier/shift behavior in "alphabetic" keyboards that
  aren't created from the XKB keyboard description.

* Improved support for Mozilla-1.6. (This will be visible to end-users
  when mozilla changes are pushed out to the main 1.6 tree)
  (#135314)

* build fixes: #136732 (parallel make), #139495 (improper use of FORCE
  in schemas).

* other bugfixes: #133545,

* languages: gu (Guntupalli Karunakar)
  bn (Sayamindu Dasgupta)
  hu (Andras Timar)
2004-04-19 18:50:22 +00:00
jmmv
bedae6c90c Make use of the new USE_DIRS variable, instead of directly depending on the
*-dirs packages.
2004-04-14 16:15:20 +00:00
jmmv
2941a81ef8 Update to 0.10.0:
[This is the gnome-2.6.0 release of GOK.]

What's new in GOK 0.10.0 ?

* Fix for #136756, which could interfere with dwell selection
  settings.

* languages:
  Punjabi (Guntupalli Karunakar)
  en_GB (Gareth Owen)

[This is the gnome-2.6 RC1 release of GOK.]

What's new in GOK 0.9.11 ?

* Fix for double-unref bug (#136764) that could cause crashes if
  an accessible selection or action failed.

* Fix for bug #136509, which restores visual
  indication of shift state to
  hand-crafted alphanumeric keyboards.

* Much improved support for panel applets. [bug #129609]

* Fixed support for 'Text Manipulation' keyboard [bug #136326]

* Update UI-Grab when hypertext or scrollbar content changes. [bug
  #135635]

* Build fixes for source and docs.

* Build updated to use automake-1.7 [bug #134954]

* Fixes for improper memory references detected with valgrind.

* Updated translations:
	  MÉtin Æmirov (az)
	  Christian Neumair (de)
	  Nikos Charonitakis (el)

* translations 100% complete:
  az, cs, da, de, en_CA, es, ja, ko, nl, no, pl, pt, sq, sr,
  sr@Latn, sv.

* translations 90 - 99% complete:
  el, hr, lt, mn.

* translations 80 - 90% complete:
  ar, be, ca, cy, fr, ms, pt_BR, sl, vi, zh_CN.

* Thanks to all translators in the gok-0.9 series:

  Arafat Medini (ar)
  MÉtin Æmirov (az)
  Miloslav Trmac (cs)
  Ole Laursen (da)
  Christian Neumair (de)
  Nikos Charonitakis (el)
  Adam Weinberger (en_CA)
  Francisco Javier F. Serrador (es)
  Christophe Merlet (RedFox) (fr)
  Alastair McKinstry (ga)
  G Karunakar (hi)
  "Last-Translator: auto\n" (hr)
  Takeshi AIHANA (ja)
  Changwoo Ryu (ko)
  Tomas Kuliavas (lt)
  Sanlig Badral (mn)
  Hasbullah Bin Pit (ms)
  Tino Meinen (nl)
  Sigurd Gartmann (no)
  GNOME PL Team (pl)
  Duarte Loret (pt)
  Marcel Telka (sk)
  Laurent Dhima (sq)
  Ðанило Шеган (sr) [sorry Danilo Segan ;-)]
  Christian Rose (sv)
  Burçin Dönmez (tr)


What's new in GOK 0.9.9 ?

* Fixed regression in toolbar items; they should be actionable now.

* Restart on SEGV

* Fixed 'Full Credits' link in Gok-About

* Improve treatment of combo-boxes (aka GtkOptionMenus), to
  expose the editable text entry if available.

* Fixed word-completion when shift modifiers are used.
  (bug #13439).

* Fixed intermittent "double key activation" problem when using
  corepointer with Direct Selection (bug #134218).

* Worked around an infinite-loop problem when using nautilus with gok.
  (bug #134631)

* Fix for bug #135833.

What's new in GOK 0.9.8 ?

* Fixed bug #133999 - DOCK mode now fills the screen width correctly.

* fix for bug #134726, which could cause a SEGV with
  OpenOffice and some other apps.

* fix for bug #133504, which restores proper functioning of
  gok's DOCK mode when using FILL/expand.

* en_CA added to ALL_LINGUAS (Christian Rose)

* two new strings marked for
  translation (Kjartan Marass)

What's new in GOK 0.9.7 ?

* redist to fix missing GNOME_Gok.server.in.in (somehow lost
  in previous dist).

* better word completion support for non-latin languages

* word-completion support for deadkeys.

* removed C99-isms, build cleanly with -ansi and -Werror.

* bugfixes for: #133999, 133992, #134040, #109403, #134103,
  #134147, #126437.

* translations 99 - 100% complete:
  az, cs, de, el, es, ko, nl, no, pl, sq, sr, sr@Latn.

* translations 90 - 98% complete:
  hr, lt, mn, sv.

What's new in GOK 0.9.6/0.9.5 ?

* Keep GOK onscreen even when 'show desktop' button is activated.
* Substantial preformance re-work of GOK's 'UI Grab' and advanced
  UI query features.  Produces 10x speedup with some apps.
* Better support for comboboxes and list boxes; also better support for
  interacting with the desktop and context menus.
  Some support for valuators (user can focus them via gok).
* More consistent tracking of focus and active application window.
* Better support for UI Grab on GOK's own Settings dialog.
* Marked settings UI elements for translation.
* Support for multi-group keyboards; GOK now works
  with the gkb/gswitchit and the GNOME Keyboard Indicator.
* Deadkey labels are much improved.
* (temporary?) workaround for bug #109403; GOK can be used
  better with pixmap themes, but no longer tracks changes to
  the user theme in its own settings dialog.

* Lots of bugfixes: 125931, 131426, 117072, 123479, 132094,
  132104, 132292, 132775, 133296, 133484, 126437, 121907, more.

new languages:

* ga (Irish): Aliastair McKinstry

substantially complete translations:

* az, cs, de, el, es, hr, ko, lt, mn, nl, no, pl, sq, sr, sr@Latn, sv.

What's new in GOK 0.9.5?

* Mostly bug fixes.
* Added UI for specification of an extra word list
* Note dependancy updated: gtk+ 2.3.1
* Sticky keys are now set more consistently (Thanks Muktha
<muktha.narayan@wipro.com>)

Bugfixes: #126727, #127296, #127397, #128934, #126298, #127966,
#128438, #127053, #128692, #129972, #129629, #130807, #106978

New Translations:
* ar (Arafat Medini), hr (Robert Sedak), lt (Tomas Kuliavas)


What's new in GOK 0.9.4

* Improved display for non-US compose keyboards.
* Improved gok_keyboard_about
* Deals better with UI components having the same/similar names
* New access method: single-key sequential scanning.
* Automatically searches for dynamic GOK keyboards matching the current
  locale, and uses localized GOK keyboards if available.
* Bugfixes: #128966, #126298, #126299, #128117, #128185,
  #127398, #126722, #127053, #126814, #126815 (partial).

What's new in GOK 0.9.3

* Lots of Internationalization improvements:
-> Merged the gok_i18n branch into HEAD.
-> GOK Keyboards are now marked for translation.
-> Improved support for compose-key sequences.
-> Can support matching more than one modifier at once,
   useful for international keyboards with multiple glyphs per
   keycap.
-> More strings marked for translation.

* Efficiency improvements.

* Fix for building without XInput.

* Prevent GOK from occluding itself with its dialogs.

* GOK can now present buttons for 'nameless' UI elements e.g. those
  with only icons and not text labels.

* GOK now reacts to state-changes in UI elements which it is presenting
  in a UI-Grab keyboard.

* We now require intltool 0.27.3 to build GOK.

* Fixes for 125156, 121445, 107211, 108137, 107857, 122109, 117049,
  125319, and more.

What's new in GOK 0.9.1

* New strings marked for translation

* Improvements to internationalization:
-> GOK word completion is now UTF-capable
-> GOK can use a system or user word-list, in UTF8 or ISO-latin.
-> More than one modifier can be matched

* User can specify an additional dictionary/wordlist file, for instance
  a wordlist from ispell, via gconf.  (There's no UI for this in GOK yet).
2004-04-01 19:04:43 +00:00
wiz
a661ce60c0 PKGREVISION bump after openssl-security-fix-update to 0.9.6m.
Buildlink files: RECOMMENDED version changed to current version.
2004-03-26 02:27:34 +00:00
jmmv
ae5a97419f Handle some shared directories by depending on (or updating dependancies to
the latest versions) xdg-dirs, xdg-x11-dirs or gnome*-dirs.
Bump PKGREVISION.
2004-03-08 19:40:36 +00:00
jmmv
d44aa584ab Bump PKGREVISION due to a fix in scrollkeeper's handling of its documentation
database.
2004-03-07 12:09:20 +00:00
jmmv
c319713c18 bl3ify, add explicit dependancies on everything used by this package and
use pkgsrc intltool.
2004-02-19 23:30:45 +00:00
jmmv
ab17dd00b3 PKGCONFIG_OVERRIDE is relative to WRKSRC. 2004-02-14 18:26:26 +00:00
jlam
ec993afa1a LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globs
relative to ${WRKSRC}.  Remove redundant LIBTOOL_OVERRIDE settings that
are automatically handled by the default setting in bsd.pkg.mk.
2004-02-14 17:21:32 +00:00
jmmv
bad3afef71 Bump PKGREVISION due to gnome-vfs2 update (fam readded as a dependancy). 2004-02-09 18:47:36 +00:00
grant
57891cda0a replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 14:11:09 +00:00
jmmv
a58dd81611 Bump PKGREVISION due to xmlcatmgr update to 2.0beta1. I know; this is a PITA.
This shouldn't be needed if we had non-recursive dependancies *sigh*.
2004-01-23 21:50:42 +00:00
reed
6d9af8d68d Bump package revisions for tiff update.
Tiff is backward compatible, but was broken on amd64 platform
so this makes sure new tiff is used.
2004-01-03 18:49:33 +00:00
kristerw
706376666c Correct path to devel/at-spi/buildlink2.mk. 2003-12-29 23:49:11 +00:00
xtraeme
9a5295552e Initial import of gok-0.8.4
The GNOME On-Screen Keyboard (GOK) is an accessability interface
that gives you control of your system without needing a keyboard.
The GOK makes available a hierarchical button system that enables
keyboardless entry of common accelerators, and contains a
clickable keyboard that sports suggested autocompletion of many
common words, and even some commands. The GOK will provide an
alternative interface to common commands and functions within
applications that utilize the AT SPI.

The GOK is is designed to be usable by many alternative input
methods, i.e. not a common keyboard and mouse combination.
2003-12-29 17:49:22 +00:00