summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2005-10-20Include intltool bl3.mk, configure tests for it.wiz1-1/+2
2005-10-20Update to 5.5. Solaris PLIST should be checked for correctness.wiz7-41/+42
This release is designed to be upward compatible from ncurses 5.0 through 5.4; very few applications will require recompilation, depending on the platform. These are the highlights from the change-log since ncurses 5.4 release. Interface changes: * terminfo installs "xterm-new" as "xterm" entry rather than "xterm-old" (aka xterm-r6). * terminfo data is installed using the tic -x option (few systems still use ncurses 4.2). * modify C++ binding to work with newer C++ compilers by providing initializers and using modern casts. Old-style header names are still used in this release to allow compiling with not-so-old compilers. * modify parameter type in c++ binding for insch() and mvwinsch() to be consistent with underlying ncurses library (was char, is chtype). * change NCursesWindow::err_handler() to a virtual function. * form and menu libraries now work with wide-character data. Applications which bypassed the form library and manipulated the FIELD.buf data directly will not work properly with libformw, since that no longer points to an array of char. The set_field_buffer() and field_buffer() functions translate to/from the actual field data. * add symbol to curses.h which can be used to suppress include of stdbool.h, e.g., #define NCURSES_ENABLE_STDBOOL_H 0 #include <curses.h> * change SP->_current_attr to a pointer, adjust ifdef's to ensure that libtinfo.so and libtinfow.so have the same ABI. The reason for this is that the corresponding data which belongs to the upper-level ncurses library has a different size in each model. * winnstr() now returns multibyte character strings for the wide-character configuration. * assume_default_colors() no longer requires that use_default_colors() be called first. * data_ahead() now works with wide-characters. * slk_set() and slk_wset() now accept and store multibyte or multicolumn characters. * start_color() now returns OK if colors have already been started. start_color() also returns ERR if it cannot allocate memory. * pair_content() now returns -1 for consistency with init_pair() if it corresponds to the default-color. * unctrl() now returns null if its parameter does not correspond to an unsigned char. New features and improvements: * library + environment variable NCURSES_NO_UTF8_ACS supports miscellaneous terminal emulators which ignore alternate character set escape sequences when in UTF-8 mode. + modify initialization of key lookup table so that if an extended capability (tic -x) string is defined, and its name begins with 'k', ncurses will automatically treat it as a key. + change GPM initialization, using dl library to load it dynamically at runtime. + form, menu and panel libraries support debug-tracing. * add NCURSES-Programming-HOWTO.html by Pradeep Padala (see http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/). * programs: * infocmp: + The -i option now matches 8-bit controls against its table entries, e.g., so it can analyze the xterm-8bit entry. + add "-x" option to infocmp like tic's "-x", for use in "-F" comparisons. This modifies infocmp to only report extended capabilities if the -x option is given, making this more consistent with tic. Some scripts may break, since infocmp previous gave this information without an option. * tic: + modify termcap-parsing to retain 2-character aliases at the beginning of an entry if the "-x" option is used in tic. + filter out long extended names when translating to termcap format. Only two characters are permissible for termcap capability names. + correct translation of "%%" in terminfo format to termcap, e.g., using "tic -C". + modify the "-c -v" options to ignore delays when comparing strings. Also modify it to ignore a canceled sgr string, e.g., for terminals which cannot properly combine attributes in one control sequence. + add a check for improperly ended strings, i.e., where a following line begins in column 1. + add a check in tic for terminfo entries having an sgr0 but no sgr string. This confuses Tru64 and HPUX curses when combined with color, e.g., making them leave line-drawing characters in odd places. + add check (with debug configuration) that provides about the runtime changes that would be made to sgr0 for termcap applications. * tset: + add -c and -w options to allow user to suppress ncurses' resizing of the terminal emulator window in the special case where it is not able to detect the true size. Major bug fixes: * improve logic in tgetent() which adjusts the termcap "me" string to work with ISO-2022 string used in xterm-new. This is a feature that was incompletely implemented in ncurses 5.3. ncurses attempts to provide termcap clients with the portion of the sgr0 (termcap "me") string that does not reset line-drawing. * cells in the WINDOW which are continuations of a multicolumn character are encoded differently, making repainting more reliable. * amend change to setupterm() in ncurses 5.4 (20030405) which would reuse the value of cur_term if the same output was selected. This now reuses it only when setupterm() is called from tgetent(), which has no notion of separate SCREENs. Note that tgetent() must be called after initscr() or newterm() to use this feature. * make setcchar() now works when its wchar_t* parameter is pointing to a string which contains more data than can be converted. * win_wchnstr() now works for more than one cell. * resizeterm() now processes all levels of window hierarchy. * disable GPM mouse support when $TERM happens to be prefixed with "xterm". Gpm_Open() would otherwise assert that it can deal with mouse events in this case. * add SP->_screen_acs_map[], used to ensure that mapping of missing line-drawing characters is handled properly. For example, ACS_DARROW is absent from xterm-new, and it was coincidentally displayed the same as ACS_BTEE. Portability: * configure script: + new options: --enable-largefile set compiler and linker flags to use largefile support. --enable-ext-colors Allow encoding of 256 foreground and background colors, e.g., with the xterm-256color or xterm-88color terminfo entries. This requires ABI 6 because it changes the size of cchar_t. --enable-ext-mouse This defines NCURSES_MOUSE_VERSION 2, and modifies the encoding of mouse events to support wheel mice, which may transmit buttons 4 and 5. This works with xterm and similar terminal emulators. This requires ABI 6 because it changes the encoding of mouse events. --with-chtype overriding of the non-LP64 model's use of chtype --with-mmask-t overriding of the non-LP64 model's use of mmask_t --without-xterm-new Installs "xterm-old" as the "xterm" entry of the terminfo database. + The --with-termlib option now accepts a value which sets the name of the terminfo library. This would allow a packager to build libtinfow.so renamed to coincide with libtinfo.so + fixes/improvements for cross-compiling: o suppress $suffix in misc/run_tic.sh when cross-compiling. This allows cross-compiles to use the host's tic program to handle the "make install.data" step. o correct BUILD_CPPFLAGS substitution in ncurses/Makefile.in, to allow cross-compiling from a separate directory tree. * library: + add ifdef's for _LP64 in curses.h to avoid using wasteful 64-bits for chtype and mmask_t, but add configure option --disable-lp64 in case anyone used that configuration. + modify C++ binding to use some C internal functions to make it compile properly on Solaris (and other platforms). + remove check in newwin() that prevents allocating windows that extend beyond the screen (Solaris does this). + check for nl_langinfo(CODESET), use it if available. This replaces ad hoc tests of environment variables to check if the terminal is setup for UTF-8 encoding. Applications which do not call setlocale() should be corrected, to make them work properly with UTF-8 encoding. In particular, applications which assume (and do not call setlocale()) that Latin-1 codes are printable will no longer work in a UTF-8 locale since the ad hoc check of environment variables to see if the locale was UTF-8 is not used when nl_langinfo(CODESET) is available. + use setlocale() to query the program's current locale rather than using getenv(). This supports applications which rely upon legacy treatment of 8-bit characters when the locale is not initialized.
2005-10-19Changes 3.1.2:adam3-11/+14
* Minor improvements
2005-10-18USE_RUBY_DIST_SUBDIR=no is now the way to specify to lang/ruby/rubyversion.mkseb1-2/+2
to not set a Ruby specific DIST_SUBDIR.
2005-10-18Update OOTools to version 2.21. This closes PR 31678 from Zafer Aydogan.hiramatsu2-7/+6
Changes from 1.75(doesn't include minor fixes): Version 2.21 - Little documentation improvement Version 2.2 - Added Package::props and Package::groups pragmas - Added improved tests Version 2.12 - Fixed the Class::Util::import function Version 2.11 - Changed the Class::Util::classes function Version 2.1 - Added the Class::Util::gather function plus tests - Added the Class::Util::classes function plus tests - Added the Class::Util::blessed function plus tests Version 2.0 - Added the Class::Error module and tests - Added the Class::Util module and tests - Added the 'skip_autoload' option to Class::constr pragma - You can also pass an HASH reference to the constr method Version 1.79 - A test addition Version 1.78 - The properties defined with a group get initialized just once - Some testing addition and rewrite Version 1.77 - Added 'default' option to the Class::constr pragma plus tests - Added possibility to get a slice of values from groups accessors - Added $_ aliasing for the post_process option Version 1.76 - Added add_to() method to add props and groups accessors in other packages - Added post_process() option to props accessors
2005-10-18Update HOMEPAGE and MASTER_SITES, noted by tron@.wiz1-5/+4
2005-10-17Add missing dependency on p5-Algorithm-Diff. Bump PKGREVISION.wiz1-2/+4
2005-10-17Update "apr" package to version 0.9.7. Changes since version 0.9.6:tron3-10/+9
- Fix crash in apr_dir_make_recursive() for relative path when the working directory has been deleted. [Joe Orton] - Win32: fix apr_proc_mutex_trylock() to handle WAIT_TIMEOUT, returning APR_EBUSY. [Ronen Mizrahi <ronen@tversity.com>] - Fix apr_file_read() to catch write failures when flushing pending writes for a buffered file. [Joe Orton] - Fix apr_file_write() infinite loop on write failure for buffered files. [Erik Huelsmann <ehuels gmail.com>] - Fix error handling where apr_uid_* and apr_gid_* could segfault or return APR_SUCCESS in failure cases. PR 34053. [Joe Orton, Paul Querna] - Refactor Win32 condition variables code to address bugs 27654, 34336. [Henry Jen <henryjen ztune.net>, E Holyat <eholyat yahoo.com>] - Support APR_SO_SNDBUF and APR_SO_RCVBUF on Windows. PR 32177. [Sim <sgobbi datamanagement.it>, Jeff Trawick] - Fix detection of rwlocks on Mac OS X. [Aaron Bannert] - Fix issue with poll() followed by net I/O yielding EAGAIN on Mac OS 10.4 (Darwin 8). [Wilfredo Sanchez] Update based on patches supplied by Ben Collver. Addresses first part of PR pkg/31817 by Zafer Aydogan.
2005-10-17Update to 0.5:wiz3-50/+18
0.5: 2005-Oct-13 * Generating shared library using libtool. Based on a patch by Thomas Klausner
2005-10-17Update to 2.13, maintained by ttn at glug.org. This is fairly clearlygdt3-18/+27
the logical continuation of the code on the FSF site, which has not been changed since April 2002. Many changes since last FSF version: - 2.13 | 2005-08-17 - for speed, use `read-string!/partial' in (www cgi) and (www http) - 2.12 | 2005-06-09 - new proc in (www cgi): cgi:nv-pairs - contrib/*-check files mentioned in ChangeLog - 2.11 | 2005-05-09 - big-dishing-loop macros moved to (module) top-level - FSF street address updated in copyright notices - 2.10 | 2005-04-17 - changes to (www cgi) - cgi:values now maintains same order as in submitted form - cgi:init now resets all internal state (suitable for fastcgi) - new configure option: --disable-shsub - new module: (www server-utils cgi-prep) - 2.9 | 2005-01-25 - www:http-head-get can discard all but the alist portion of the msg obj - 2.8 | 2004-11-20 - new proc in (www main): www:http-head-get - 2.7 | 2004-10-21 - new proc in (www http): http:head - 2.6 | 2004-07-15 - cgi:make-cookie now accepts keywords for `name' and `value' args - bugfix: http:request handles missing response status-line TEXT as "" - 2.5 | 2004-03-11 - new proc in (www server-utils parse-request): skip-headers - new `(www server-utils answer) mouthpiece' command: #:add-formatted - new module: (www server-utils big-dishing-loop) - 2.4 | 2004-03-01 - changes to (www server-utils answer) proc `mouthpiece' - bugfix in #:rechunk-content (fencepost error) - #:send-reply sets 2nd position in status-box to content-length - new module: (www server-utils log) - 2.3 | 2004-02-29 - new module: (www server-utils parse-request) - new module: (www server-utils filesystem) - new module: (www server-utils answer) - new module: (www data http-status) - new module: (www data content-type) - 2.2 | 2004-01-24 - bug fix: `cgi:uploads' now handles "multipart/mixed" content properly - bug fix: `cgi:uploads' now deletes cell as documented - doc fix: `cgi:getenv' w/ key `http-accept-types' => list of strings - new feature: proc `http:post-form' now also handles "file uploads" - installation change: .scm files are punified (whitespace/comments removed) - 2.1 | 2004-01-15 - doc fix: `cgi:getenv' doc was missing - new module: (www url-coding) - proc `cgi:init' performance improvement (env var lazy init) - 2.0 | 2004-01-13 - incompatible API changes - cgi:make-cookie no longer accepts #&-style keywords (#:-style ok) - non-procedures no longer exported - for cgi-FOO (22 vars), read access now through proc `cgi:getenv' - no longer provided: http:version, http:user-agent - installation dir change - configure script determines $(GUILE_SITE) - modules installed as $(GUILE_SITE)/www/*.scm - module catalog updated on "make install" (if supported by system) - doc methodology/content improvements - 1.1.1ttn5 | 2003-02-15 - bug fix: http:request now extracts content-length info properly - 1.1.1ttn4 | 2003-02-12 - bug fix: http:get now uses `Host' header in the http request - bug fix: examples/wwwcat handles non-#f `program-arguments' values - 1.1.1ttn3 | 2002-12-03 - new proc in (www http): http:post-form - 1.1.1ttn2 | 2002-10-20 - for CGI scripts, handle SERVER_SOFTWARE that omits "/version" info - 1.1.1ttn1 | 2002-10-05 - for CGI scripts, HTTP_ACCEPT parsing now also handles ", "
2005-10-16take maintainershipgdt1-2/+2
2005-10-16clarify DESCR and COMMENT that this is for guile 1.4, and that 1.6gdt2-4/+7
already has goops. Take maintainership from tech-pkg.
2005-10-16Update to 1.1.1, latest release on fsf site.gdt3-11/+13
Take maintainership from tech-pkg. - version 1.1.1 released 2002-04-26 - new CGI cookies support by Aaron VanDevender - miscellaneous distribution news - new subdir examples/ - example program "wwwcat" no longer installed on "make install" - INSTALL now explains which files are copied where on "make install"
2005-10-16Avoid passing a NULL pointer to fprintf, which causes a segfault underjmmv3-7/+7
Solaris 9. My fault; I assumed all implementations could print '(null)' in that case. Bump PKGREVISION to 2. Fixes PR pkg/31838 by John Heasley.
2005-10-16Set USE_RUBY_DIST_SUBDIR to yes.taca1-1/+2
2005-10-16Make nss and nspr install pkg-config files. Bump their PKGREVISION.jmmv4-9/+28
2005-10-16Add and enable p5-Term-Screen.minskim1-1/+2
2005-10-16Import p5-Term-Screen from pkgsrc-wip. Packaged by pancake, andminskim4-0/+25
improved by Hiramatsu Yoshifumi. This module provides a simple interface to the terminal control features for character mode terminals.
2005-10-15Use tabs to indent, not spaces.jmmv1-5/+5
2005-10-15Use tabs to indent, not spaces.jmmv1-7/+7
2005-10-15Update to version 1.04.heinz2-7/+7
Pkgsrc changes: - Added HOMEPAGE. Relevant changes since version 1.01: =========================== * fixes for various tests * Added support for external gzip.
2005-10-15Updated to version 1.41.heinz2-7/+6
No pkgsrc changes. Changes since version 1.35 ========================== 1.41 - 4 October 2005 * added hints/mpeix.pl file supplied by Ken Hirsch 1.40 - 23 September 2005 * Fixed failure of 03examples.t for some windows systems. 1.39 - 15 September 2005 * Fixed dTHX macro for 5.00503 on FreeBSD 1.38 - 6 September 2005 * Integrate core change 25304 -- Symbian Update * Added libscan to Makefile.PL 1.37 - 12 August 2005 * Change to t/03examples.t for VMS from Abe Timmerman 1.36 - 3 August 2005 * Renamed zlib-src-1.2.3 to zlib-src to help VMS * Fixed Makefile.PL for VMS * Fixed t/03examples.t for VMS * Added a couple of notes about incompatibility with Unix compress.
2005-10-14Update to 1.6.6:jmmv3-7/+33
* 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-10-14Enable-utf8 for www/bluefishadam1-2/+4
2005-10-13Add gettext-lib/buildlink3.mk to match with Makefile.minskim1-1/+2
2005-10-13libtoolize. Now installs a shared library too.wiz5-7/+63
Bump PKGREVISION.
2005-10-13Enable NLS explicitly by including gettext-lib/buildlink3.mk.minskim2-2/+20
Bump PKGREVISION due to PLIST changes.
2005-10-13Removed double RCS Id.rillig1-2/+1
2005-10-13Add and enable libmimedir.wiz1-1/+2
2005-10-13Initial import of libmimedir-0.4:wiz5-0/+43
This library parses MIME Directory Profile which is defined in RFC 2425.
2005-10-13Don't declare errno as nested extern. Depend on errno.h to provide.joerg3-1/+29
In the upstream version I added the suggestion of explicitly including errno.h as done in many other files.
2005-10-13Update kdevelop to 3.2.3 (part of KDE 3.4.3)markd3-16/+9
Changes: couple of bug fixes.
2005-10-13Update to KDE 3.4.3markd2-12/+5
Changes: Couple of backported bug fixes.
2005-10-13The latest doxygen encodes the source directory path into some of themarkd3-2/+19
output filenames. This is problematic in a pkgsrc context as it means WRKDIR pathnames can appear in generated filenames. Fix by reverting to the old way of naming the files. Bump PKGREVISION.
2005-10-12Update to 2.12.1:jmmv3-8/+9
Major changes in 2.12.1 were: * Translation updates * Minor code cleanups Major changes in 2.12.0 were: * Translation updates Major changes in 2.11.92 were: * Translation updates Major changes in 2.11.91 were: * Fix scrolling in eel-wrap-table * Cleanup logging code Major changes in 2.11.90 were: * Add x-nautilus-search URI * Fix wrapping in eel-wrap-table Major changes in 2.11.4 were: * Fix memleak Major changes in 2.11.3 were: * Fix memleaks * Fix compiler warnings for gcc 4 Major changes in 2.11.2 were: * Fix memleaks Major changes in 2.11.1 were: * Use new libgnome-menu api * Fixed crash with accessibility * Use gmodule-no-export to avoid --export-dynamic
2005-10-12Update to 2.12.1:jmmv2-7/+7
2.12.1 ======= Features - add a test-selector program for testing. It doesn't get installed. (Denis Jacquerye, Elijah) [#165269] Fixes - Use intltool & various other build enhanements (Rodney Dawes, Vincent) [#317190] - Detect windows that are removed from the skip_taskbar state (Jochen Baier) [#163293] Translators - Mahay Alam Khan (bn) - Iñaki Larrañaga Murgoitio (eu) 2.12.0 ======= Translators - Bryn Salisbury (cy) 2.11.92 ======= Translators - Mişu Moldovan (ro) - Maxim Dziumanenko (uk) 2.11.91 ======= Fixes - Have window list tooltips display WM_NAME instead of WM_ICON_NAME (Mariano Suarez-Alvarez) [#124463] - Zero out unused fields in ClientMessages, as required by the EWMH spec (Gregory Merchan) [#135024] - Fix an activation/minimization inconsistency (Elijah Newren) - Correctly determine the active task when dealing with transients (Xavier Claessens) [#310381] - Clean up a number of warnings (Philipp Thomas, Benoit Dejean) [#140175, #310829] - Fix builds that don't disable docs, get make distcheck to work (Matthias Clasen) [#302231] - Add wnck_window_set_window_type() function (Olivier Andrieu) [#133306] - Add API for allowing the button relief to be set to GTK_RELIEF_NONE for transparent panels (Ryan Lortie) [#167932] - Fix workspace switching behavior (revert the stuff related to the behavioral change from bug 161361 made in the 2.10 cycle -- Elijah Newren) - Prevent pager from flickering when moving windows between workspaces (Christian Neumair) [#167745] Translators - Christophe Merlet (RedFox) (fr) - Jaydeep Bhusal (ne) 2.11.4 ====== Features - Add support for the Urgent hint (Elijah) Fixes - Show the mini_icon instead of the regular icon for the selector (Vincent Noel) Translators - Takeshi AIHANA (ja) - Abel Cheung (zh_TW) 2.11.3 ====== Features - Make windows that demand attention more noticeable by glowing their tasklist buttons (Ray Strode) Fixes - fix possible leak (Benoît Dejean) - determine a group leader when the previous one gets removed (Jaap Haitsma) Translators - Ignacio Casal Quinteiro (gl) 2.11.1 ====== Translators - Adam Weinberger (en_CA) - Ivar Smolin (et) - Steve Murphy (rw) - Ivan Noris (sk) - Baris Cicek (tr) - Canonical Ltd (xh)
2005-10-12Update to version 2.02.seb2-7/+6
Changes since last packaged version (2.01): 2.02 Tuesday 31th May, 2005 Include data for perl 5.8.7
2005-10-12update to 1.7.1drochner6-46/+29
The main focus of this release is bug fixes.
2005-10-11Add libmemcache.joerg1-1/+2
2005-10-11Initial import of libmemcache-1.4.0b9 from pkgsrc-wip. The pkgsrc-wipjoerg7-0/+101
maintainer asked me to take maintainership due to lack of time. From DESCR: libmemcache is a C API for memcached, which is a high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.
2005-10-10Security fix for CAN-2005-3011:salo3-2/+38
"texindex in texinfo 4.8 and earlier allows local users to overwrite arbitrary files via a symlink attack on temporary files." http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-3011 Patch from Ubuntu.
2005-10-10Update to 2.12.0:jmmv4-14/+16
libgnomeui 2.12.0 ----------------- What's new since 2.11.4 Bug fixes: - API doc updates (Kjartan) - Fix a compiler warning that broke compilation on AIX - Add gnome-keyring to Requires in the pkg-config file - Include developer docs in the devel zip file for Win32 (Tor) Updated translations: - Basque, Galician, Indonesian, Korean, Kurkish, Russian, Turkish. libgnomeui 2.11.4 ----------------- What's new since 2.11.3 Bug fixes: - Fix a bad crasher in the file selector (Matthias) http://bugzilla.gnome.org/show_bug.cgi?id=314586 Translations: - Estonian, French, Vietnamese libgnomeui 2.11.3 ----------------- What's new since 2.11.2 Bug fixes: - Don't crash on trash:/// bookmarks (Matthias) - Fix build in gnome-ui-init.h libgnomeui 2.11.2 ----------------- What's new since 2.11.1 Features: - Add support for .desktop file links in the file chooser (Federico) Bug fixes: - Make buttons work as accessible children of GnomeDruid (Padraig) - Add a window icon for the segv dialog (Jaap) Translations: - Everyone :-) libgnomeui 2.11.1 ----------------- What's new since 2.10.x Features: - Port to Win32 (Tor Lillquist) - Implement bookmark renaming in the file chooser (Matthias Clasen) Bug fixes: - Make the file chooser work better with AFS (Federico Mena Quintero) - Fix crash when escaping the password dialog (Martin Wehner, Balamurali V.) - Fix crash when opening the panel properties dialog (Vincent Vuntz) - Fix for possible wrong activation URI when drive is mounted from the file chooser (David Zeuthen) - Fix icon entry button to not clip the label incorrectly - Make it possible to select a folder in the file entry in the icon entry. (Christian Neumair) - Make sure to use UTF-8 locales in the file chooser for apps that don't use libgnomeui directly such as Firefox (Frederic Crozat) - HIGify the password dialog (Michael Terry) - HIGify the games menu entries (Dennis Cranston) - Code cleanup and leak fixes (Kjartan, Matthias) - Build fixes (Kjartan, Hans Petter Jansson, Lazslo Peter) - Fix GCC warnings (Kjartan) Translations: - Updated Bulgarian (bg), Canadian English (en_CA), Czech (cs), Danish (da), Greek (el), Estonian (et), Norwegian bokmål (nb), Dutch (nl), Kinyarwanda (rw), Slovak (sk), Thai (th), Simplified Chinese (zh_CN), Traditional Chinese (zh_TW)
2005-10-10Update to 2.12.0.1:jmmv4-22/+11
libgnome 2.12.0.1 ----------------- what's new since 2.12.0 * Bug fixes - Fix schemas install problem with vi translation (Rodney) * Updated translations - Vietnamese libgnome 2.12.0 --------------- What's new since 2.11.3 * Bug fixes - Include developer docs in the zip file for Win32 (Tor) * Updated translations - Catalan, Basque, Brazilian Portugese, Estonian, French, Galician, Hungarian, Indonesian, Korean, Portugese, Russian, Serbian, Turkish, Vietnamese. libgnome 2.11.3 --------------- What's new since 2.11.2 * Features: - Add a man page for gnome-options (Sebastien) * Bug fixes: - Win32 fixes (Tor) - gnome_help_display_with_doc_id_and_env() didn't use doc_id (Damon Chaplin, Muktha Narayan) libgnome 2.11.2 --------------- What's new since 2.11.1 * Features: - Change default theme to Clearlooks (Elijah Newren) - Deprecate some gconf keys (Mark McLaughlin) * Bug fixes: - Fix highscore handling (Sebastien Bacher) * Translations: - German (de), Finnish (fi), Hebrew (he), Albanian (sq), Portugese (pt), Polish (pl), Gujarati (gu), Bulgarian (bg), Norwegian bokmål (nb), Czech (cz), Simplified Chinese (zh_CN), Traditional Chinese (ch_TW), Thai (th), Estonian (et), Spanish (es), Slovak (sk), Canadian English (en_CA), Hungarian (hu), Serbian (sr), Catalan (ca), Japanese (ja), libgnome 2.11.1 --------------- What's new since 2.10.x * Features: - Port to Win32 (Tor Lillquist) - New GConf keys for document font and gtk-menu-bar-accelerator (Shaun McCance, Sebastien Bacher) * Bug fixes: - Use correct key name for toolbar placement (Christian Neumair) - Build fixes (Kjartan, Sebastien Bacher, Ryan Lortie) - Fix problem with launchers being unusable for root on Solaris. (Vinay M R) - Use g_get_language_names() instead of gnome_i18n_get_language_list() - Fix playback of certain WAV files (Jeffrey Stedfast)
2005-10-10Looks like I forgot to add this file in the previous commit... pointed outjmmv1-0/+39
by martti@.
2005-10-10update homepagedillo1-2/+2
2005-10-10Add and enable distccmon-{gtk,gnome}.jmmv1-1/+3
2005-10-10Initial import of distccmon-gnome, a distcc monitor built with GNOME support.jmmv3-0/+41
Provided by Geert Hendrickx a few months ago, together with the split of distcc's Makefile in two parts.
2005-10-10Initial import of distccmon-gtk, a distcc monitor built with GTK+ support.jmmv3-0/+45
Provided by Geert Hendrickx a few months ago, together with the split of distcc's Makefile in two parts.
2005-10-10Split the Makefile to allow the addition of the upcoming distccmon-{gtk,gnome}jmmv2-22/+11
packages. Also create the share/distcc directory which will be used by these two packages. Bump PKGREVISION to 1.
2005-10-08Update to 2.12.0:jmmv2-7/+8
2005-09-20 James Henstridge <james@jamesh.id.au> * macros2/gnome-autogen.sh (configure_files): when searching for configure.in files, skip directories starting with a dot. This avoids Bzr, Quilt and Subversion bookkeeping directories among others. Fixes bug #311951. 2005-08-17 Stepan Kasal <kasal@ucw.cz> * macros2/gnome-autogen.sh (add_to_cm_macrodirs): New function, prevents duplicates in $cm_macrodirs. (check_m4macros): Use it. Read the dirlist file, if it is supported by the version of Automake actually in use. 2005-08-17 Stepan Kasal <kasal@ucw.cz> * macros2/gnome-autogen.sh (version_check): Set $variable_VERSION to the actual version number of the tool. 2005-08-17 James Henstridge <james@jamesh.id.au> * macros2/gnome-autogen.sh: pass --force to gnome-doc-prepare to match other tools. Fixes bug #311775. * macros2/gnome-autogen.sh: don't use syntax that non-GNU greps don't understand. Fixes bug #313531. 2005-08-16 James Henstridge <james@jamesh.id.au> * macros2/gnome-autogen.sh: add checks for gnome-common macro names, and call require_m4macro for the appropriate names. This can help detect $ACLOCAL_FLAGS problems earlier. Addresses bug #312125. 2005-07-25 James Henstridge <james@jamesh.id.au> * configure.in: bump release number. 2005-07-19 Shaun McCance <shaunm@gnome.org> * macros2/gnome-autogen.sh: - Bumped up the default required version of gnome-doc-utils 2005-07-18 Christian Persch <chpe@cvs.gnome.org> * macros2/gnome-autogen.sh: When configure.{in,ac} contains GNOME_DOC_INIT, actually call gnome-doc-prepare.