summaryrefslogtreecommitdiff
path: root/x11/gnopernicus
AgeCommit message (Collapse)AuthorFilesLines
2006-03-06Belatedly bump PKGREVISION for all libtasn1 dependencies, sincewiz1-2/+2
libtasn1 had a shlib major bump. Also update dependencies in bl3.mk files. Addresses PR 32998 by Robert Elz.
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-2/+2
of the shlib major bump. PKGREVISION++ for the dependencies.
2005-12-31Recursive PKGREVISION bump for gnutls shlib major bump.wiz1-1/+2
Bump BUILDLINK_RECOMMENDED.
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-18Added two patches for ISO C90 compatibility.rillig3-1/+38
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-10-16Update to 0.11.7:jmmv9-163/+15
================= Changes in 0.11.7 ================= Braille: * Update to use last brltty version 3.7. * Map more commands from brltty to gnopernicus commands. Translations: * Add Persion language. * Updated Kurdish, Vietnamese, Brazilian Portuguese, Basque translations. ================= Changes in 0.11.6 ================= Translations: * Updated Catalan, Portuguese, Polish, Czech, Romanian, German, Japanese, Hungarian, Bulgarian, Lithuanian, Norwegian, Albanian, Vietnamese, Canadian English, Spanish, Gujarati, Galician, Greek, Russian, Finnish, Turkish, Welsh, Traditional Chinese, Norwegian, Hungarian, French and Serbian translations. ================= Changes in 0.11.5 ================= Braille: * The user can now specify the connection port manually. * The BRLTTY device will be present in the device list only if brltty is present at compile time. Translations: * Updated Catalan, Spanish, Gujarati, Canadian English, Greek, Vietnamese, Russian, Albanian, Hungarian, Ukrainian, Finnish, Lithuanian, Portuguese, Norwegian, German, Traditional Chinese, Japanese and Polish translations. ================= Changes in 0.11.4 ================= Translations: * Updated Gujarati, Simplified Chinese, Polish, Norwegian, Vietnamese, Canadian English, and Finnish translations. ================= Changes in 0.11.3 ================= Braille: * Added support for BAUM PocketVario24 and BAUM SuperVario40. Translations: * Added translation for punctuation signs. * Updated German, Norwegian, Traditional Chinese, Canadian English, Spanish, Vietnamese and Finnish translations. ================= Changes in 0.11.2 ================= General: * Improved reporting of StarOfficeCalc cells when navigating trough the spreadsheet; Translations: * Updated Canadian English, Japanese, Greek, Welsh, Nepali, Czech, Simplified Chinese, Bulgarian, Danish, French and German translations. ================= Changes in 0.11.1 ================= Speech: * Report the active line in a table even if it is not selected. * Report the new state if a table line became selected or unselected. * Restart speech if it dies while initializing. ================= Changes in 0.11.0 ================= Speech: * Improved reporting for tables. * Improved speech interrupt when switching between objects. Magnifier: * Changed the presentation to magnifier: objects larger than or equal with desktop size are not presented to magnifier.
2005-08-21Update to 0.10.9:jmmv3-7/+10
Speech: * Restart speech in case of an error.
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-01Convert to options framework.wiz1-4/+5
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-23Removed trailing white-space.rillig1-1/+1
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-05-19Update to 0.10.6:jmmv5-31/+31
Changes in 0.10.6 ================= Translations: * Added Hungarian, Nepali, Kinyarwanda translations. Speech: * An improved reporting of tables. Changes in 0.10.5 ================= Translations: * Updated Canadian English, Dutch, Italiantranslations. Braille: * Change range from serial port (now 0-3) and add port "none". * set the default device to BRLTTY. Magnifier: * Do not report any event if mouse is moving. Speech: * Corrrect some bug present when a new voice is added, modified or deleted. Also check if the name contains invalid characters for gconf. * A better presentation for radio buttons.
2005-04-12Added a bunch of patches needed for gcc-2.95. Approved by jlam.rillig6-1/+154
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-22Update to 0.10.4:jmmv2-9/+10
================= Changes in 0.10.4 ================= Translations: * Updated French, Polish, Serbian, Romanian, Greek, Catalan, Turkish, and Bulgarian translations. ================= Changes in 0.10.3 ================= Braille: * Added support for Pronto and Eco braille devices. Presentation: * Improved presentation for watched objects. If speech is off, the events for watched objects are presented only to the magnifier. If speech and magnifier are off, the events are presented only to braille. * Added "Window" key to be presented as modifier and "Menu" key to be presented as cursor. * Improved presentation for magnifier when it's tracking the caret in focus tracking auto mode. ================= Changes in 0.10.2 ================= Speech: * Better reporting when switching desktops. ================= Changes in 0.10.1 ================= Speech: * Better reporting for navigation word-by-word. Presentation: * Improved presentation for tables. ================= Changes in 0.10.0 ================= Braille: * Gnopernicus now supports Eco braille devices thanks to Juan Ramon Jimenez Garcia <jjig@once.es>. Speech: * A better presentation for window rename events.
2005-02-26Update to 0.9.19:jmmv2-6/+6
Speech: * Improved presentation for character by character navigation. Braille: * Improved use of brltty. Presentation: * Better presentation for combo-boxes which don't implement AtkText. * The presentation for terminals is improved. Magnifier: * Improved the focus tracking auto by the magnifier when the caret is tracked. * Work with multiple displays is improved when changing the source and/or target screens. The changes to these values are only applied when the user presses the "Apply" or the "OK" buttons that were added to the "Magnifier Options" widget. Miscellaneous: * Gnopernicus's help is updated thank to Irene Ryan (irene.ryan@sun.com).
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+2
2004-12-28Update to 0.9.18:jmmv2-5/+5
Changes in 0.9.18 ================= Speech: * Improved reporting of statusbar objects. Changes in 0.9.17 ================= Speech: * Word by word navigation even in case of changing current line. Braille * Support for brltty version 3.6.
2004-10-28Update to 0.9.16:jmmv6-39/+39
Changes in 0.9.16 ================= Speech: * Modify to remove information from queue for an end of speech marker only if the marker is for text for which information is. Changes in 0.9.15 ================= Presentation: Gnopernicus now presents context information for when a toolbar item is focused. Translation: Added and updated Romanian translation. Updated Canadian English, Italian and Simplified Chinese translations. Changes in 0.9.14 ================= Miscelaneous: * Gnopernicus uses now version 1.7 of autotools. Translation: * Updated Danish, Korean, Spanish and British translations. Changes in 0.9.13 ================= Miscelaneous: * Gnopernicus uses now version 1.7 of autotools. Translation: * Updated Danish, Korean, Spanish and British translations. Changes in 0.9.12 ================= Translation: * Added Russian, Turkish, Traditional Chinese translations.
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-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-29/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-21Update to 0.9.12. This version corresponds to GNOME 2.8.0.jmmv6-60/+64
================= Changes in 0.9.12 ================= Translation: * Added Russian, Turkish, Traditional Chinese translations. ================= Changes in 0.9.10 ================= Miscelaneous: * Improved the reporting of a warning message when the cursor position on brlmon is greater then brlmon size. * Improved reportng for word-by-word navigation. Translation: * Added Norwegian Bokmal and Tamil translations . Speech: * Modify to report the correct range for speech parameters. Presentation: * Inform the user that there is a "empty line" in case of blank lines. ================ Changes in 0.9.9 ================ Miscelaneous: * Install brlmon in libexec, not in bin directory. Translation: * Add bengali translation. * Update Korean, Japanese, Portuguese, Serbian, Simplified Chinese, Polish, Canadian English, Danish, Spanish, Dutch. Presentation: * Inform user when the moves to another group (when context has been changed). ================ Changes in 0.9.8 ================ Bug Fixes: * Now handle the 'Separator' key (",") on some non-English numeric keypads the same as the "Decimal" key (".") - specifically, treat XK_KP_Separator as synonym for XK_KP_Decimal when handling layer commands. Braille: * Added support for scrolling the braille display one whole width (rather than just 20 cells) via layer 9 keypad 4 and 6. See bugzilla bug #148090. ================ Changes in 0.9.7 ================ Presentation: * Improve presentation for sliders. * Presentation for a watched object is not interrupted anymore by the presentation for focus tracking. Miscelaneous: * Generate a beep instead of exiting in case of failure to register a listener for an event. Speech: * Change values for rate and pitch for voice from percents to absolute values (including minimum and maximum in UI. Brlmon: * Make brlmon to act as a panel (do not let other window to overlap it). Magnifier: * Make zoom factor x and y floats from int. ================ Changes in 0.9.6 ================ Translation: * Added slovak language * Added bulgarian language. * Added improved spanish translation table for braille Magnifier: * Removed some warning messages for panning. Speech: * Better default values for speech. Presentation: * Improved a lot of presentations for diferent events and objects. Miscelaneous: * Do not generate mosue events if XEvIE is not present. * Improved work with GDM trogh --login option ================ Changes in 0.9.5 ================ Speech: * Added new text echo mode "none". * Report "first/last line" if user is on first/last line in flat review. * Do not report role for multi-line-text for speech default presentation mode. * Improved the response of read whole window command. * Report to user "Escape" key. Braille: * Report "first/last line" if user is on first/last line in flat review. Miscelaneous: * Added --login command line option. * Added -u command line parameter to start magnifier in upper half of screen ================ Changes in 0.9.4 ================ Miscelaneous: * Improved behaviour of gnopernicus with gdm. ================ Changes in 0.9.3 ================ Speech: * Changed to report Backspace and Delete keys with 'Say all modifiers' option enabled. Miscelaneous: * Added a presentation for "object:tab-added", "object:tab-removed" events for tabs. * Removed Ctrl+Shift+Alt+S key combination. "Describe my surroundings" command is no longer mapped to this key combination. Magnifier: * Allow magnifier to be large as the display size. Braille Monitor: * Braille monitor will not display text in "BRAILLE" or "DUAL" Mode Type anymore. * Removed all things related to braille font. GUI: * Changed a label text in the magnifier preferences from "Cursor magnification" to "Set cursor separate from magnification". * In the Braille Monitor preferences the "DUAL" and "BRAILLE" Mode Type options were grayed out. They wont be used for the moment. * In the speech preferences "Say all cursors" option was renamed as "Say all navigation keys". ================ Changes in 0.9.2 ================ Miscellanous: * Added a new configure option "--enable-magnifier" used for gnopernicus to be compiled with or without magnifier support. * Changed the reporting for events with the same timestamp value. ================ Changes in 0.9.1 ================ Miscellanous: * Do not report window events for popup menus. * Convert caret-moved events into focus events only if the object has a focused ancestor. GUI: * Real support for mouse and focus traking modes in other language, the change of the current option will take effect now). * Fix some broken help pages. Magnifier: * Allow magnifier to magnify a region of interest that intersect magnifier region if they belong to different screen (source and target differ). UI: * "describe my surroundings" will not present names of current window and application. * "window hierarchy flat" is now called "read whole window". * Object roles are now translated. Translation: * Update Canadian English, Czech, British English, Polish, Catalan, Dutch. ================ Changes in 0.9.0 ================ GUI: * Crosshair color inversion made clearer by graying the 'Cross-hair color' button when 'Cross-hair color inverted' checkbox is checked. * Changed some keyboard accelerators. UI: * A better presentation for tables : added two new presentation items. Braille: * Added suport for some more braille devices. Magnifier: * Changed required version of gnome-mag to 0.11.0. * Added support to specify target. Translation: * Add Gujarati language.
2004-05-07Drop maintainership; I don't have the enough free time to maintainxtraeme1-2/+2
all these packages.
2004-04-20Update to 0.8.4:jmmv3-20/+20
Magnifier: * Added support for target. Translation: * Added Gujarati language. Furthermore, this version is part of the GNOME 2.6 stable branch. The previous one, 0.8.3, was derived by mistake from CVS HEAD (what is 0.9.x actually).
2004-04-15Update to 0.8.3:jmmv4-36/+22
GUI: * Crosshair color inversion made clearer by graying the 'Cross-hair color' button when 'Cross-hair color inverted' checkbox is checked. * Changed some keyboard accelerators. UI: * A better presentation for tables : added two new presentation items. BRAILLE: * Added suport for some more braille devices. MAGNIFIER: * Changed required version of gnome-mag to 0.11.0.
2004-04-14Make use of the new USE_DIRS variable, instead of directly depending on thejmmv1-2/+2
*-dirs packages.
2004-04-01Update to 0.8.1:jmmv5-22/+45
Changes in 0.8.1 ================ Translation: Update Basque, Arabic, Greek, Welsh and British translations. Changes in 0.8.0 ================ Translation: Update translations for Ukrainian, German, Arabic, Italian, Mongolian, Greek, Canadian English. Changes in 0.7.6 ================ Miscellanous * Report caret-moved events for non-focused objects. UI: * Notify user when he moves to a new table. Changes in 0.7.5 ================ Miscellanous * Filter events for watched object. UI: * add a function to unwatch all watched objects. * better presentation for tables. Changes in 0.7.4 ================ Presentation * Store presentation items in XML files, not not in gconf keys. UI * Map shutup function on control-left key. Changes in 0.7.3 ================ Braille * Support for devices created by HandyTech. UI * Possibility to add a watch a specified object (to receive all event for that object). GUI * Add option to permite a crosswire on without a cursor when the magnifier is active. * Presentation is now a collection of predefined profiles. Miscellanous * Made non-case sensitive a braille device command line value. Changes in 0.7.2 ================ Magnifier: * Make sure that the coordinates are set ok in case of a change of resolution. * Zoomer's coordinates are from (0,0) to (x-display-size - 1,y-display-size - 1) (not from (1,1) to (x-display-size, y-display-size) as before)
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz1-2/+2
Buildlink files: RECOMMENDED version changed to current version.
2004-03-08Handle some shared directories by depending on (or updating dependancies tojmmv1-3/+3
the latest versions) xdg-dirs, xdg-x11-dirs or gnome*-dirs. Bump PKGREVISION.
2004-03-07Bump PKGREVISION due to a fix in scrollkeeper's handling of its documentationjmmv1-2/+2
database.
2004-02-17Honour PKG_SYSCONFDIR. Bump PKGREVISION to 4.jmmv6-4/+78
While here, note in the PLIST where shared directories are removed.
2004-02-17bl3ify.jmmv1-6/+12
2004-02-14PKGCONFIG_OVERRIDE is relative to WRKSRC.jmmv1-2/+2
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-09Bump PKGREVISION due to gnome-vfs2 update (fam readded as a dependancy).jmmv1-2/+2
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
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-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-30Initial import of gnopernicus-0.7.1xtraeme5-0/+210
Gnopernicus provides Assistive Technologies (AT) for blind and visually impaired persons through modules for text-to-speech, braille, etc.