summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2006-01-26According to the NetBSD 1.6.2/i386 bulk build, perl is needed at buildrillig1-2/+2
time.
2006-01-25Update to 0.7:wiz3-176/+270
bzr 0.7 2006-01-23 CHANGES: * .bzrignore is excluded from exports, on the grounds that it's a bzr internal-use file and may not be wanted. (Jamie Wilkinson) * The "bzr directories" command were removed in favor of the new --kind option to the "bzr inventory" command. To list all versioned directories, now use "bzr inventory --kind directory". (Johan Rydberg) * Under Windows configuration directory is now %APPDATA%\bazaar\2.0 by default. (John Arbash Meinel) * The parent of Bzr configuration directory can be set by BZR_HOME environment variable. Now the path for it is searched in BZR_HOME, then in HOME. Under Windows the order is: BZR_HOME, APPDATA (usually points to C:\Documents and Settings\User Name\Application Data), HOME. (John Arbash Meinel) * Plugins with the same name in different directories in the bzr plugin path are no longer loaded: only the first successfully loaded one is used. (Robert Collins) * Use systems' external ssh command to open connections if possible. This gives better integration with user settings such as ProxyCommand. (James Henstridge) * Sftp paths can now be relative, or local, according to the IETF draft spec. Paths now take the form: sftp://user:pass@host:port/relative/path or sftp://user:pass@host:port/%2Fabsolute/path or sftp://user:pass@host:port//absolute/path * Permissions on files underneath .bzr/ are inherited from the .bzr directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/' will mean that future file will be created with group write permissions. * configure.in and config.guess are no longer in the builtin default ignore list. * '.sw[nop]' pattern ignored, to ignore vim swap files for nameless files. (John Arbash Meinel, Martin Pool) IMPROVEMENTS: * "bzr INIT dir" now initializes the specified directory, and creates it if it does not exist. (John Arbash Meinel) * New remerge command (Aaron Bentley) * Better zsh completion script. (Steve Borho) * 'bzr diff' now returns 1 when there are changes in the working tree. (Robert Collins) * 'bzr push' now exists and can push changes to a remote location. This uses the transport infrastructure, and can store the remote location in the ~/.bazaar/branches.conf configuration file. (Robert Collins) * Test directories are only kept if the test fails and the user requests that they be kept. * Tweaks to short log printing * Added branch nicks, new nick command, printing them in log output. (Aaron Bentley) * If $BZR_PDB is set, pop into the debugger when an uncaught exception occurs. (Martin Pool) * Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is the same as Subversion. (Martin Pool) * New ftp transport support (on ftplib), for ftp:// and aftp:// URLs. (Daniel Silverstone) * Commit editor temporary files now start with 'bzr_log.', to allow text editors to match the file name and set up appropriate modes or settings. (Magnus Therning) * Improved performance when integrating changes from a remote weave. (Goffredo Baroncelli) * Sftp will attempt to cache the connection, so it is more likely that a connection will be reused, rather than requiring multiple password requests. * bzr revno now takes an optional argument indicating the branch whose revno should be printed. (Michael Ellerman) * bzr cat defaults to printing the last version of the file. (#3632, Matthieu Moy) * New global option 'bzr --lsprof COMMAND' runs bzr under the lsprof profiler. (Denys Duchier) * Faster commits by reading only the headers of affected weave files. (Denys Duchier) * 'bzr add' now takes a --dry-run parameter which shows you what would be added, but doesn't actually add anything. (Michael Ellerman) * bzr add now lists how many files were ignored per glob. add --verbose lists the specific files. (Aaron Bentley) * Reduced CPU usage for merge/fetch. (Goffredo Baroncelli) * Faster diff and status commands. (Denys Duchier) BUG FIXES: * SFTP can walk up to the root path without index errors. (Robert Collins) * Fix bugs in running bzr with 'python -O'. (Martin Pool) * Error when run with -OO * Fix bug in reporting http errors that don't have an http error code. (Martin Pool) * Handle more cases of pipe errors in display commands * Change status to 3 for all errors * Files that are added and unlinked before committing are completely ignored by diff and status * Stores with some compressed texts and some uncompressed texts are now able to be used. (John A Meinel) * Fix for bzr pull failing sometimes under windows * Fix for sftp transport under windows when using interactive auth * Show files which are both renamed and modified as such in 'bzr status' output. (#4503, Daniel Silverstone) * Make annotate cope better with revisions committed without a valid email address. (Marien Zwart) * Fix representation of tab characters in commit messages. (Harald Meland) * List of plugin directories in BZR_PLUGIN_PATH environment variable is now parsed properly under Windows. (Alexander Belchenko) * Show number of revisions pushed/pulled/merged. (Robey Pointer) * Keep a cached copy of the basis inventory to speed up operations that need to refer to it. (Johan Rydberg, Martin Pool) * Fix bugs in bzr status display of non-ascii characters. (Martin Pool) * Remove Makefile.in from default ignore list. (#6413, Tollef Fog Heen, Martin Pool) * Fix failure in 'bzr added'. (Nathan McCallum, Martin Pool) TESTING: * Fix selftest asking for passwords when there are no SFTP keys. (Robey Pointer, Jelmer Vernooij) * Fix selftest run with 'python -O'. (Martin Pool) * Fix HTTP tests under Windows. (John Arbash Meinel) * Make tests work even if HOME is not set (Aaron Bentley) * Updated build_tree to use fixed line-endings for tests which read the file cotents and compare. Make some tests use this to pass under Windows. (John Arbash Meinel) * Skip stat and symlink tests under Windows. (Alexander Belchenko) * Delay in selftest/testhashcash is now issued under win32 and Cygwin. (John Arbash Meinel) * Use terminal width to align verbose test output. (Martin Pool) * Blackbox tests are maintained within the bzrlib.tests.blackbox directory. If adding a new test script please add that to bzrlib.tests.blackbox.__init__. (Robert Collins) * Much better error message if one of the test suites can't be imported. (Martin Pool) * Make check now runs the test suite twice - once with the default locale, and once with all locales forced to C, to expose bugs. This is not trivially done within python, so for now its only triggered by running Make check. Integrators and packagers who wish to check for full platform support should run 'make check' to test the source. (Robert Collins) * Tests can now run TestSkipped if they can't execute for any reason. (Martin Pool) (NB: TestSkipped should only be raised for correctable reasons - see the wiki spec ImprovingBzrTestSuite). INTERNALS: (removed from pkgsrc commit message)
2006-01-25Fix errno in library files. Never generate extern errno directly.joerg16-5/+192
Bump revision.
2006-01-25Update to 1.103:xtraeme3-10/+8
Overview of changes in Glib 1.103 ================================= * Fix a crash that occured when properties of undead objects were modified. [muppet] * Fix the undead object macros to work on 64-bit platforms. [Rafael Garcia-Suarez] * Completely redo the way GObject types are mapped to package names. This fixes the problem uncovered by the recent GInitiallyUnowned issue. * Allow undef for some arguments in the Glib::KeyFile API. [Emmanuele]
2006-01-24Updated ode to 0.5.rillig3-16/+13
I don't know what has changed since 0.039, since the project's ChangeLog does not contain any release information. At least, the old version didn't work for me.
2006-01-24SWIG comes with plenty of documentation, which is not installed by default.rillig2-2/+2139
Now it is installed.
2006-01-24When checking for CLOCK_REALTIME and friends, include sys/time.h forjoerg2-1/+9
DragonFly as well.
2006-01-24BUILDLINK_RECOMMENDED.subversion-base should be PKGVERSION bumped versiondarcy1-2/+2
of subversion-base, not subversion.
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz103-159/+206
of the shlib major bump. PKGREVISION++ for the dependencies.
2006-01-24Remove ${PERL5_SITEARCH}/ from PERL5_PACKLIST.hiramatsu1-2/+2
2006-01-23Update to 1.23:wiz2-6/+6
1.23 Jan 14, 2006 - Fix code bugs in the SYNOPSIS. - Exception::Class->caught() now returns $@ if not given an argument.
2006-01-23Update to 0.79:wiz2-6/+6
0.79 Jan 13, 2006 - The XS version of Params::Validate did not work if a spec hash reference was marked Readonly using Readonly::XS. - Added some tests for using tied values for params or spec, and discovered that a tied spec causes a segfault, but could not figure out how to fix this (Grr, Perl magic is a huge pain in the nether regions).
2006-01-23Builds on DragonFly.joerg1-1/+2
2006-01-23Workaround a bug in time.h on DragonFly.joerg4-1/+42
2006-01-23Don't hard-code -lpthread, use ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS}.joerg2-1/+15
2006-01-23Has BROKEN_GETTEXT_DETECTION.joerg1-1/+3
2006-01-23Remove as maintainer of this package. I'm not using it for ages.tron1-2/+2
2006-01-23Updated p5-Test-Cmd to 1.05:wulf2-6/+6
- Fix the subdir(), read(), and write() methods to handle the case when the first element in an array-reference file name is an absolute path name. - Fix writable() so that it only records errors from chmod() on files, not exit with no_result(). - Doc changes to make some of the variables in the SYNOPSIS look like Perl variables. - Add a Test::Cmd::Common module that sub-classes Test::Cmd to provide common exception-handling, eliminating the need for everyone to roll their own fail()/no_result() logic for common errors. - Update Test::Cmd documentation to add explicit examples of using Test::Cmd in conjunction with Test::Harness, Test::Unit, and Aegis. Mention that Test::Cmd::Common is available.
2006-01-23Allow build with neon 0.25.5.epg2-1/+15
2006-01-23Added REPLACE_PERL. Bumped PKGREVISION.rillig1-2/+4
2006-01-22- added USE_LANGUAGES variable to indicate that doc++ needs c++ to compileschwarz2-1/+19
- added a hacks.mk file to deal with the sys/types.h vs. inttypes.h confilct on IRIX 5.3.
2006-01-22Update kscope to 1.3.3 from maintainer martijn van buul in PR pkg/32538markd3-9/+17
Numerous things have changed - a few highlights include usability changes to the UI, better cscope query handling, user-changeable keyboard shortcuts, automatic database rebuilding, calling graphs using the graphviz library, as well as various bugfixes. Also noteworthy is that the program changed license - while it used to be licensed under the GPL, it is now covered by a BSD-style license
2006-01-22Update to 9999.11:wiz2-7/+6
9999.10 Sun Oct 23 15:28:42 EDT 2005 - t/*.t modules don't use Fcntl.pm - using POSIX qw( :fcntl_h ) instead of Fcntl qw( :seek ) for backwards compatiblity to 5.00503 - added conditional definitions of SEEK_* and O_* subs as they are not defined in perl 5.004 - File::Slurp now runs on perl 5.004 and newer (see BUGS section) All of the above thanks to Smylers <Smylers@stripey.com>, Piers Kent <piers.kent@bbc.co.uk> and John Alden <john.alden@bbc.co.uk> - Added pod.t and pod_coverage.t tests. This is to pass all the CPANTS tests. 9999.11 changes not documented.
2006-01-22The current version Uses Test::Builder, so DEPEND on it.wiz1-7/+3
Bump PKGREVISION.
2006-01-22Update to 4.2.0:wiz8-60/+34
======================================================================== ============ Changes from 4.2.0 RC2 to 4.2.0 (October 2005) ============ ======================================================================== Peter Wang made fixmul() detect overflows as it used to do in the 4.0.x branch. Dennis Busch found a bug where d_clear_proc would not work properly if the GUI target bitmap is different from screen. Grzegorz Adam Hankiewicz made Allegro log all TRACE output with a prefix in the format "al-system level: ". This makes it easier to grep debug logs. Grzegorz Adam Hankiewicz made dialogs with MSG_CHAR/MSG_UCHAR handlers honor a D_CLOSE return flag without a D_USED_CHAR. Peter Hull fixed problems with the mouse position as reported by Allegro and the mouse position as known to OS X. Peter Hull made Command-Q not close the application if no exit-button callback is registered. Peter Hull fixed problems with joysticks under MacOS X as reported by Thomas Harte. Peter Hull fixed a bug preventing more than one Allegro application from being run at a time on Mac OS X. Reported by Thomas Harte. Peter Hull did a lot of other things for the MacOS X port too. Jiri Gabriel fixed loading of multiple ranges in a single bitmap with txt fonts. Milan Mimica and Jiri Gabriel fixed several bugs in extract_font_range. Dennis Busch fixed a Unicode bug in the mode selector. Evert Glebbeek added FA_ALL and FA_NONE file attribute flags. Peter Hull fixed a deadlock in OS X when calling vsync() while the screen was acquired. Robert Alfonso fixed a grabber crash when importing a new font range into an existing font. Reported by Milan Mimica. Chris Robinson fixed the fileselector in UNIXnot properly recognising filenames containing UTF-8 characters. Hrvoje Ban and Peter Wang wrote a documentation section that explains several common mistakes. Elias Pschernig disabled DGA auto-detection under X11 i_am_drv added support for .rmi midis to the midi reader Elias Pschernig fixed a fix-point overflow in pivot_sprite. Michal Molhanec fixed several problems with the Watcom compiler. Peter Hull fixed an error with 'make uninstall' on MacOS X. Matthew Leverton added a programs: makefile target. Many small fixes and improvements by Michal Molhanec, Peter Hull, Chris Robinson, Peter Wang and Elias Pschernig. Documentation improvements by Grzegorz Adam Hankiewicz, Tore Halse and Peter Hull. =========================================================================== ============ Changes from 4.2.0 RC1 to 4.2.0 RC2 (August 2005) ============ =========================================================================== Grady Martin made the grabber consider deleting object properties as a change to the datafile. Milan Mimica fixed numerous bugs in extract_font_range(). Peter Hull moved the 'magic chdir' in the MacOS X port to earlier in the startup process, so that the config file will be looked for in the resource directory if is present. Chris Robinson made create_bitmap(0,0) not return a bitmap that would later crash destroy_bitmap(). Zero-sized bitmaps are still not allowed so the assertions for debug mode have not changed. Elias Pschernig patched the Windows keyboard driver to get key_shifts working again with KB_SHIFT_FLAG, KB_CTRL_FLAG, KB_ALT_FLAG on Win98. Peter Wang changed hline and vline into aliases for internal symbols to avoid a conflict with the curses API. This change should be transparent for users. Matthew Leverton and Michal Molhanec updated the build system for MSVC 8. Grzegorz Adam Hankiewicz prevented make_relative_filename() from crashing with malformed parameters. Hrvoje Ban made ASSERT() actually abort in Windows. Chris Robinson made GUI menus work with gui_screen. Evert Glebbeek fixed reading of 32 bit Windows .bmp files, which was not supported. These files seem to be not very standard though, so it's unclear if it will always do the right thing. Alpha channels also seem not to be standard in 32 bit BMP files, so it's possible they're not read in correctly. Peter Wang and Peter Hull updated the ABI compatibility document. This documents our policy for the 4.2.x series. Extensive documentation updates from Grzegorz Adam Hankiewicz and minor updates due to Michael Faerber, Robert Ohannessian and Milan Mimica. ============================================================================== ============ Changes from 4.2.0 beta 4 to 4.2.0 RC1 (August 2005) ============ ============================================================================== Peter Hull fixed the MacOS X port to avoid an issue with the dead bootstrap context and cleaned up the dock notification. This means command line apps (with SYSTEM_NONE) run without the dock being notified. Peter Wang Added a COLORCONV_KEEP_ALPHA flag, as suggested by Gideon Weems. Peter Wang fixed issues with OSS in OpenBSD and made the configure script print a warning if Allegro is compiled without X11 support. Peter Hull set the compatibility version to 4.2.0 for MacOS X and added a MacOS X help file. Peter Wang made the Mode-X and VBE/AF drivers fail if Allegro is compiled as a C-only library in Linux and made the Unix port install liballeg*.so and the alleg-*.so modules with the execute permission enabled. Grady Martin standardised some of the grabber dialog boxes and added a `move' command to the grabber. Evert Glebbeek fixed a bug when loading some old datafiles containing monochrome fonts. Evert Glebbeek fixed a bug that prevented system cursors from working correctly in Windows. Olivier Blin fixed compilation problems for the ModeX driver with newer binutils. Shawn Walker fixed a bug in get_executable_name under some UNIX systems. Shawn Walker worked around a problem with some versions of GNU AS and fixed some errors in the configure script when not using GCC. Elias Pschernig made create_sample not unnecessarily clear the sample to 0. Bobby Ferris fixed the makedoc SciTE API output. Elias Pschernig fixed a too strict assert that prevented set_volume from working in debug mode. Paavo Ahola helped fix a problem with BCC and the C implementations of fixmul. Elias Pschernig fixed a cosmetic bug where the listbox was drawing a too big selection rectangle, reported by dthompson. Documentation and example updates by Grzegorz Adam Hankiewicz, Peter Wang, Elias Pschernig Michal Molhanec and Evert Glebbeek. =============================================================================== ============ Changes from 4.2.0 beta 3 to 4.2.0 beta 4 (June 2005) ============ =============================================================================== Matthew Leverton changed the default behavior of the grabber: default color depth is now the desktop, default mode is windowed and if fullscreen is specified, then desktop resolution is used by default. Peter Wang fixed compilation problems related to get_modex_screen() on UNIX and deprecated it. Robert Ohannessian fixed compilation problems for the assembler code with newer binutils. Peter Wang, Thomas Harte and Evert Glebbeek optimised fixmul() for different platforms. Robert Alfonso fixed a couple of warnings that with DJGPP. Grzegorz Adam Hankiewicz made the FLIC player yield. Miran Amon fixed an arbitrary limit in get_config_argv(). Evert Glebbeek fixed a memory leak in same. Thomas Klausner fixed a problem in allegro.m4 and automake 1.8+. Charles Wardlaw fixed some warnings with gcc 4 on MacOS X. Elias Pschernig removed the `256 items' limit from the dat utility. Julien Cugniere fixed a crash in the GUI if a new dialog was opened while a menu was still open. Shawn Walker fixed crashes with the keyboard driver under Solaris. Elias Pschernig split the demo game into multiple files and made the makefile handle a multi-file demo game. Evert Glebbeek fixed a bug where the hardware mouse wasn't displayed in Windows until the mouse was moved. J.P. Morris fixed rest_callback() under UNIX. Shawn Walker and Evert Glebbeek fixed get_executable_name() under Solaris and OpenBSD. Peter Hull fixed compilation problems with setAppleMenu under Tiger. Peter Hull fixed a deadlock on MacOS X related to mouse updating. Peter Wang fixed a problem with compiling the VBE/AF driver using newer binutils. Evert Glebbeek fixed a bug with colour conversions when loading a font from a datafile. Many code, example and documentation updates by Grzegorz Adam Hankiewicz, Elias Pschernig, Peter Wang, Evert Glebbeek, Andrei Ellman, Victor Williams Stafusa da Silva, Matthew Leverton, AJ, Michal Molhanec and Hrvoje Ban. ============================================================================== ============ Changes from 4.2.0 beta 2 to 4.2.0 beta 3 (May 2005) ============ ============================================================================== Grzegorz Adam Hankiewicz did several documentation updates. Evert Glebbeek cleaned up some of the global namespace pollution in the Windows port. Chris Robinson made improvements to the Windows sound driver. Chris Robinson made the GUI multi-selection box behave a bit nicer. Grzegorz Adam Hankiewicz added a bunch of ASSERTs to the code to check for out-of-range arguments. Jakub Wasilewski fixed a bug when loading greyscale TGA images. Evert Glebbeek fixed a bug where the bottom and right line of pixels was not updated on show_video_bitmap, as pointed out by Thomas Harte. Evert Glebbeek documented JOY_TYPE_* defines for Windows and Linux. Dark Nation restored the ability to read old-style encrypted packfiles, i.e. those produced before Allegro 3.9.30. This was silently removed from 4.1.18 when custom packfile support / decoupled compression routines were added. Evert Glebbeek made the grabber and dat utilities now use Allegro's builtin load_font() function and made datafiles properly store truecolour fonts and added a datedit_select() callback to datedit. Evert Glebbeek fixed some unsafe assumptions on the size of integer datatypes. Arthur Huillet fixed a typo in the docs. Elias Pschernig restored Alt+key = ASCII code 0 behavior for the Windows keyboard driver Evert Glebbeek fixed a bug that caused a crash when loading Allegro 1.x datafiles containing 4 bit bitmaps. Peter Wang clarified the mode select documentation and made the mode selector clear the input variables before passing them on to the filter. Peter Wang fixed a bug in the mode selector where disabled drivers were still shown with empty resolution lists. Pointed out by Hrvoje Ban. Elias Pschernig fixed Allegro's internal multithreading in Windows. This fixes a deadlock on exit. Robert Alfonso made the MSVC makefile call `link /lib' rather than `lib', which doesn't work for the free toolkit. Peter Hull fixed a problem with hardware cursors not working properly in MacOS X. Peter Hull added a missing enable_hardware_cursor vtable entry and added OS native cursors for the MacOS X port. Grzegorz Adam Hankiewicz documented the online Allegro patch generator. Evert Glebbeek renamed datafiles._tx -> datafile._tx StApostol updated the FAQ to use rest(0) instead of the deprecated yield_timeslice(). Evert Glebbeek silenced some GCC4 warnings in MacOS X. Peter Wang fixed warnings and errors with gcc 4.0.0 on the Unix port; reported by Milan Mimica. Peter Wang added the preprocessor symbol ALLEGRO_NO_FIX_CLASS that the user can define to not pull in the `fix' class in C++ programs. Peter Wang removed the exdodgy example. Elias Pschernig fixed another X11 async reply bug. Elias Pschernig made the seek in expackf test work with CR/LF line endings. Evert Glebbeek fixed a small bug that prevented the Allegro template for Project Builder from installing correctly on MacOSX. Elias Pschernig enabled warnings about unused variables with --enable-strictwarn in unix. Peter Wang fixed a warning with Watcom 1.3. ================================================================================ ============ Changes from 4.2.0 beta 1 to 4.2.0 beta 2 (April 2005) ============ ================================================================================ Daniel Schlyder fixed a problem with the makefile in Windows. Evert Glebbeek fixed a bug that prevented true colour fonts from working. Peter Wang fixed a possible deadlock in dialog_message. Elias Pschernig fixed a bug where the DJGPP version would choke on a missing variable. Peter Hull made makedoc return an error code if it failed to build the SciTE documentation. Evert Glebbeek fixed a problem with incorrect dependencies being generated for MacOS X. Tobi Vollebregt fixed a problem in X11 if the XRGBACursor extension was missing. Evert Glebbeek made configure use k8 rather than athlon64 as a compiler switch on AMD64. Peter Wang and Elias Pschernig added a packfile example. Michal Molhanec fixed a problem in the MSVC makefile. Evert Glebbeek removed void*-arithmetic from the colour converter. Evert Glebbeek fixed a bug where hardware cursors would stop working. Elias Pschernig, Andrew Chew fixed and Tobi Vollebregt fixed several problems with the Windows keyboard driver. Elias Pschernig fixed bug in unix dependency generation. Elias Pschernig made the GUI not mess up the hardware cursor. Elias Pschernig removed pckeys.c and keyconf from the windows port, since the dinput driver no longer needs pckeys.c nor uses keyboard.dat. Daniel Schlyder fixed a problem with the -mtune switch on older gcc based compilers. Matthew Leverton figured out which versions of Watcom have inttypes.h and stdint.h. V Karthik Kumar added a password to the Windows screensaver example. Cosmetic fixes, example bugfixes and spelling corrections by Jon Rafkind, Evert Glebbeek, Peter Wang, StApostol and Elias Pschernig. ======================================================================== ============ Changes from 4.1.18 to 4.2.0 beta (March 2005) ============ ======================================================================== Peter Wang fixed many problems on AMD64 in Linux - it should now work fine. Peter Hull added CPU detection to the MacOS X port. Peter Hull fixed some problems related to /usr/local/bin not existing in recent versions of MacOS X. Elias Pschernig and Peter Wang rewrote the Windows keyboard driver so it no longer needs keyboard.dat. Elias Pschernig added a show_os_cursor function as an alternative to show_mouse() for system cursors. Evert Glebbeek and Peter Wang added an example programme for system cursors. Elias Pschernig fixed a deadlocks in X11 related to scare_mouse() and keyboard repeats and fixed async replies. Daniel Schlyder fixed the gcc -mcpu is deprecated warnings. Peter Wang added an astdint.h, which provides C99 typedefs for pre-C99 compilers. AJ added detection for DirectX 8 and 9 to the Windows port. Evert Glebbeek added detection for AMD64 to the UNIX port and test programme. Elias Pschernig added a get_midi_length function and a midi_time variable. Elias Pschernig fixed a problem where Allegro would ignore a user-specified configuration file if set_config_file() was called before allegro_init(). Evert Glebbeek added a transpose_font function. Evert Glebbeek added support for true colour fonts and a font example. Elias Pschernig fixed a problem in shutdown_dialog() reported by Tobi Vollebregt. Marcio Fialho fixed some issues with displaying author names in the demo game. Andrei Ellman fixed a problem in the MSVC makefile when building Allegro with Cygwin. Daniel Schlyder fixed (again) problems with creating directories in different setups in Windows. Elias Pschernig added documentation for the custom packfile functions. Jeff Mitchell fixed the location of grabber.txt in the spec file. Harshavardhana Reddy added a Kannada greeting to exunicod. Elias Pschernig cleaned up the example programmes. Peter Wang made it possible to disable the hardware cursor in X by passing an option to the configure script. AJ and Michal Molhanec added an MSVC 7 configure option and added an msvc7 switch to fix.bat. Karthik Kumar did the same for the Intel compiler icl. Mr_Bones fixed compilation of setup.c when --disable-ossdigi is used AJ fixed a beep being generated in Windows when alt+character was pressed in Windowed mode. Peter Wang fixed many oversights and problems in the library and examples and allowed the code to be build with stricter warnings. Peter Wang fixed problems compiling the Windows port with WARNMODE=1 Tore Halse fixed compilation problems in Windows related to TITLEBARINFO. Daniel Schlyder made the Windows port use TITLEBARINFO if it is available. Grzegorz Adam Hankiewicz made many improvements to the documentation.
2006-01-22Update to 1.24:wiz2-6/+6
1.24 Fri Jan 13 2006 - No functional changes. No need to upgrade. - Updated copyright notice to 2006. - Added t/05_base.t to try and chase down base.pm bug (Failed to find it, but left test so CPAN Tests can validate my assumptions on what should happen and that it happens for them) - Added base.pm as a dep (although unversioned dep) to make sure it is installed on older perls. - Module::Install updated to 0.52 - Decrement List::Util dep to 1.17 as 1.18 fails to build on some platforms.
2006-01-21Changes 0.6.1:adam4-23/+22
* Make it possible to cross-compile to mingw32. * Minor changes in how the C# code is built. * Update of gnulib files. * API and ABI is backwards compatible with the previous version.
2006-01-21Update package Makefile now that bsd.pkg.extract.mk is using thejlam4-11/+10
"extract" script for extraction. Many cases where a custom EXTRACT_CMD simply copied the distfile into the work directory are no longer needed. The extract script also hides differences between pax and tar behind a common command-line interface, so we no longer need code that's conditional on whether EXTRACT_USING is tar or pax.
2006-01-21Remove the installation of versioned library names (not generated by thejmmv1-8/+1
Boost build code) which was introduced to workaround a problem in the dylib handling code. This is solved with the new shlib stuff.
2006-01-21Imported p5-UNIVERSAL-requirefrom pkgsrc-wip.rillig4-0/+39
UNIVERSAL::require - require() modules from a variable. If you've ever had to do this... eval "require $module"; to get around the bareword caveats on require(), this module is for you. It creates a universal require() class method that will work with every Perl module and its secure. So instead of doing some arcane eval() work, you can do this: $module->require; It doesn't save you much typing, but it'll make alot more sense to someone who's not a ninth level Perl acolyte. WWW: http://search.cpan.org/dist/UNIVERSAL-require/ Packaged by Roman Kulik.
2006-01-21Fix installed name of Boost libraries under Mac OS X. They need to havejmmv1-1/+4
the directory they'll live in as part of their name, or otherwise they cannot be found at runtime.
2006-01-21Fix build and install of Boost under Mac OS X:jmmv2-4/+13
- Correctly use threads. - Use the correct tool set. - Make libraries (Boost.Test) with undefined symbols build correctly. - Change the installed library names so that they match other systems (thus avoiding manual PLIST substitutions). There is a hack here, though, to let the dylib stuff kick in...
2006-01-21Add and enable vtcl.agc1-1/+2
2006-01-21Initial import of vtcl 1.6.0, a tcl development environment, into theagc6-0/+551
Packages Collection. This package was provided by Stephen Borrill. Visual Tcl is a freely-available, high-quality application development environment for UNIX, Windows, Macintosh and AS400 platforms. Visual Tcl is written entirely in Tcl/Tk and generates pure Tcl/Tk code. This makes porting your Visual Tcl applications either unnecessary or trivial. Visual Tcl is covered by the GNU General Public License. Features - 100% pure Tcl/Tk. No external libraries required. - Extensible widget and geometry manager support. - Create compound widgets and widget libraries. - GUI interface for most aspects of Tcl/Tk development. - Support for user images and fonts in your project. - Imports pre-existing Tcl/Tk code. - Built-in support for widget toolkits including: [incr Widgets], BLT, TkTable - Visual Tcl features new ready-to-use widgets: combo box, multicolumn listbox, progress bar - Predefined compounds available including scrolled text, scrolled listbox, scrolled canvas, horizontal and vertical splitters - Exports Tclets which run in Netscape/MSIE. - Support for freewrap. Generate binaries for Windows or Linux.
2006-01-20Rename the following variables to reduce the number that we need to track:jlam4-8/+8
EXTRACT_CMD_OPTS.bin -> EXTRACT_OPTS_BIN EXTRACT_CMD_OPTS.lha -> EXTRACT_OPTS_LHA EXTRACT_CMD_OPTS.rar -> EXTRACT_OPTS_RAR EXTRACT_CMD_OPTS.tar -> EXTRACT_OPTS_TAR EXTRACT_CMD_OPTS.tar.Z -> EXTRACT_OPTS_TAR EXTRACT_CMD_OPTS.tar.bz2 -> EXTRACT_OPTS_TAR EXTRACT_CMD_OPTS.tar.gz -> EXTRACT_OPTS_TAR EXTRACT_CMD_OPTS.tbz -> EXTRACT_OPTS_TAR EXTRACT_CMD_OPTS.tbz2 -> EXTRACT_OPTS_TAR EXTRACT_CMD_OPTS.tgz -> EXTRACT_OPTS_TAR EXTRACT_CMD_OPTS.zip -> EXTRACT_OPTS_ZIP EXTRACT_CMD_OPTS.zoo -> EXTRACT_OPTS_ZOO EXTRACT_CMD_OPTS_tar.gz -> EXTRACT_OPTS_TAR
2006-01-20Update boost* to 1.33.1:jmmv5-65/+14
Any Library: Cast to reference types introduced in 1.33.0 is now documented on any_cast documentation page. Config Library: Don't undef BOOST_LIB_TOOLSET after use. Boost.Python: * The build now assumes Python 2.4 by default, rather than 2.2 * Support Python that's built without Unicode support * Support for wrapping classes with overloaded address-of (&) operators Smart Pointer Library: Fixed problems under Metrowerks CodeWarrior on PowerPC (Mac OS X) with inlining on, GNU GCC on PowerPC 64. Regex Library: Fixed the supplied makefiles, and other small compiler specific changes. Refer to the regex history page for more information on these and other small changes. Iostreams Library: Improved the interface for accessing a chain's components, added is_open members to the file and file descriptor devices, fixed memory-mapped files on Windows, and made minor changes to the documentation. Functional/Hash Library: Fixed the points example. Multi-index Containers Library: Fixed a problem with multithreaded code, and other minor changes. Refer to the library release notes for further details. Graph Library: * Fixed a problem with the relaxed heap on x86 Linux (fixes bug in dijkstra_shortest_paths). * Fixed problems with cuthill_mckee_ordering and king_ordering producing no results. * Added color_map parameter to dijkstra_shortest_paths. Signals Library: Fixed problems with the use of Signals across shared library boundaries. Thread library: read_write_mutex has been removed due to problems with deadlocks. Wave library (V1.2.1) Fixed a couple of problems, refer to the change log for further details.
2006-01-20Fix path to p5-Crypt-SSLeay after its reimport.wiz1-2/+2
2006-01-20Drop maintainership. I can't seriously be the maintainer of so manyjmmv4-8/+8
packages - specially of packages that I haven't touched for a long while or those that other people can handle better than me.
2006-01-20Update to 1.1.2:jmmv2-7/+6
* Important bugfix for parent/child hierarchy of embedded objects.
2006-01-20Major changes in 2.12.2 were:jmmv2-7/+6
* sort applications in application chooser
2006-01-20Update to 1.8.8:jmmv3-7/+20
Changes in GAIL 1.8.8 ===================== * Another bugfix for treeviews. * GAIL now properly uses gdk thread locks. GAIL 1.8.8 should be used instead of 1.8.7 or 1.8.6. Changes in GAIL 1.8.7 ===================== * Fix for regression introduced by bad free. GAIL 1.8.8 should be used instead of 1.8.7 or 1.8.6. Changes in GAIL 1.8.6 ===================== * Fixes for direct-to-atk bridge support for OpenOffice.org, and for other custom-widget-based apps which use gtk+ for their toplevels and some dialogs. * Fix for crasher bug #306062.
2006-01-20Update to 2.12.2:jmmv3-7/+9
Fixes - Minor code cleanup (Elijah) Translators - Ivar Smolin (et) - Erdal Ronahi (ku) - Ilyas Bakirov (ky)
2006-01-19Update to 2.8.6:wiz3-7/+9
Overview of Changes from GLib 2.8.5 to GLib 2.8.6 ================================================= * Fix a problem with g_object_compat_control() which can lead to segfaults in GTK+ applications on 64bit platforms. * Fix a memory allocation problem in GKeyFile. [Morten Welinder] * New and updated translations (ca,ja,ml,sv,zh_HK,zh_TW)
2006-01-19Added some patches to make Cqual build on IRIX 6.5/mips with MIPSpro. (Byrillig4-1/+91
the way, all these patches have already been reported upstream and are mostly fixed.)
2006-01-18Added the patches that are required to build CQual on SunOS 5.8/sparcrillig16-7/+445
with SunPro.
2006-01-18+libwhisker2adrianp1-1/+2
2006-01-18Libwhisker is a Perl module geared specificly for HTTP testing.adrianp4-0/+68
Libwhisker has a few design principles: - Portable: runs with 0 changes on Unix, Windows, etc (100% Perl) - Flexible: designed with a 'no rules' approach - Contained: designed to not require external modules when possible - Localized: does not require installation to use This is libwhisker 2.3
2006-01-18CATEGORIES+=gnome, ok by jmmv.ghen1-1/+3
2006-01-17Update to 1.0.0rc5adrianp2-8/+7
0006509: [security] Port: Additional XSS Vulnerabilities in Filter (thraxisp) 0006557: [security] XSS Vulnerability in manage_user (TKADV2005-11-002) (thraxisp) 0006563: [security] Port XSS Vulnerability in project documents (TKADV2005-11-02) (thraxisp) 0006569: [security] XSS Vulnerability in saved queries (TKADV2005-11-002) (thraxisp) 0006594: [bugtracker] config_flush_cache does not work correctly (thraxisp) 0006585: [documentation] don't see the documentation (thraxisp) 0006501: [filters] Categories can't be selected for filter-setting (thraxisp)
2006-01-17Changes 0.4.3:adam3-83/+85
* Bug-fix release