summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2005-08-10add scapy-1.0.0, a Python shell for network packet construction, injectiondrochner5-0/+111
and capture
2005-08-10add pkg for the Python binding of libdnet (part of the libdnetdrochner6-0/+69
distribution)
2005-08-10add pylibpcap-0.5, a Python wrapper for libpcapdrochner6-0/+71
2005-08-10libtoolize, to get a shared librarydrochner4-4/+104
bump PKGREVISION
2005-08-10add onedrochner1-0/+22
2005-08-10Updated www/bluefish to 1.0.2adam2-3/+3
2005-08-10Changes 1.0.2:adam3-10/+434
- Added ability to remove multiple meta tags in Quickstart dialog. - Updated Debian packaging files (standards version and build-dependencies). - Updated config scripts. - Updated for traditional Chinese translation. - Fixed Ctrl-Z/undo bug. - Fixed outdated configure script and aspell detection. - Fixed format specification bug in Bulgarian translation. - Fixed translation bugs and typos in German translation. Changes 1.0.1: - New QuickStart dialog. - Spaces not being used to instead of tabs. - Updated Debian packaging files (build-depends). - Updated and improved spell checking. - Updated and improved highlighting patterns. - Fixed custom menu. - Fixed bookmarks handling. - Fixed missing CSS dialog properties. - Fixed improperly opened color dialog when opening the CSS dialog. - Fixed project dialog segmentation fault when clicking the "Browse button". - Fixed not retained "View" menu item settings after closing/restarting. - Fixed several build issues (debugging output, configure, ...)
2005-08-10Updated devel/libsigc++2 to 2.0.16adam1-1/+2
2005-08-102.0.16:adam3-58/+20
* Fixed build for SUN Forte C++ 5.5 * Fixed build for MSVC++ 7.1 * Fixed crash when using --no-inline with g++. 2.0.15: * g++ 3.2 (and Mac OS X g++ 3.3) build fix. (Paul Pogonyshev) * Compose: Fix slot lifetime regression introduced in 2.0.9. (Philip Langdale) * tests: Small ISO C++ correctness fix (Marek Rouchal) * Don't specify unused function parameter names. (Andris Pavenis) 2.0.14: * SUN Forte 5.7 build fix for ambiguity when using inner template class. However, you still need the patch in bug #302098 to finish the build. 2.0.13: * signal_emit::emit(): Ensure the correct order of destruction of the member variables, to avoid a leak. (Andreas Ames, bug #306249) * Allow recursive signal emission again. (Neal E. Coombes, bug #303896) * SUN Forte CC 5.5 build fixes: - test_compatibility minor fix. - visit_each() template specializations: Mention the bool I_derives_trackable template type, (Friedemann Kleint, bug #305647) - Check for the non-standard SUN reverse_iterator, and use alternative code if necessary. (Murray Cumming) 2.0.12: * Fixes crashes when using virtual inheritance, particularly with bound by-reference parameters, caused by casting from derived to base when the derived destructor has run. (Régis Duchesne) This might affect non-g++ compilers, so do tell us about any problems. 2.0.11: * Build fixes for SUN Forte, Tru64 (Murray Cumming), and MSVC++ (Cedric Gustin). 2.0.10: * tests: Include <new> to avoid unresolved symbols on Tru64. (Tim Mooney) * When signal handlers are connected made during an emit of the same signal, prevent them from being called in the same emit, to prevent infinite loops. (Neal E. Coombes) * Performance improvement in a corner case. (Neal E. Coombes). 2.0.9: * sigc::bind() now works with the AIX and Tru64 compilers. See the comments in sigc++/visit_each.h: visit_each_type() if you have compilation problems. (Murray Cumming) * sigc::var() is now documented. (Roger Ferrer Ibáñez) 2.0.8: * Maybe avoid (incorrect) warning with g++ 3.3.5. (Murray Cumming) * Fix namespace ambiguity when using multiple major versions of libsigc++. (Liza Klerck) 2.0.7: * Now builds with the following compilers, in addition to the existing GNU g++, SUN Forte CC 5.5, MSVC++ .Net 2003, and Intel compilers: - IBM AIX xlC v7 - Tru64 C++ V6.5-042 - IRIX MIPSpro 7.4.2m (Older versions of all these compilers might also work.) (Murray Cumming, www.thewrittenword.com) * MSVC++ .Net 2003 build improvements. (Cedric Gustin, Timothy M. Shead) * Replace C-style casts with reinterpret_cast<> and static_cast<>. (e97_far at e.kth.se). * Documentation: Added manual, based on the manual in libsigc++ 1.2, but updated for the new API. (Murray Cumming) 2.0.6: * Fixed a memory leak in sigc::slot. * Fixed compilation for gcc-3.4. * Fixed compilation for Intel C++ compiler (upgraded libtool). * Fixed project files for MSVC .Net (Timothy M. Shead). * Fixed segfaults when compiled with MSVC .Net 2003 (moved all calls to new and delete into non-inline library code). * In the compatibility module use correct bound_mem_functor variants for const (volatile) methods when creating a slot. * Minor documentation fix. * Resolved bugs: #152327 #148744 #152323 #151404 #153143 2.0.5: * Distribute pregenerated configuration header for MSVC .Net. 2.0.4: * Fixed warnings and compiler errors in the test cases. * Added a new test case (Murray Cumming). * Fixed 'hello_world' example. * Don't test optional features that fail with the Sun FORTE. * Fixes for the Sun FORTE to compile out-of-the-box (Damien Carbery, Murray Cumming, Martin Schulze). * Fixes for MSVC to build a DLL out-of-the-box (James Lin). * Improved compiler specific configuration during 'configure'. * Added rmp description file libsigc++-2.0.spec (Eric Bourque). * Minor documentation improvements (Murray Cumming). * Resolved bugs: #147311 #147313 #147391 #144846 #145541 2.0.3: * Fix segfault on emission of unconnected signal. * Test emission of unconnected signals in the test case. * Suppress compiler warning at dynamic_cast<>-test for good. (Help from Christof Petig and Timothy M. Shead.) 2.0.2: * Suppress compiler warning in compatibility module at dynamic_cast<>-test (fix suggested by Timothy M. Shead). * If a custom accumulator is specified invoke it on signal emission even if the signal's slot list is empty. (This used to be the case in libsigc++-1.2 as pointed out by Timothy.) 2.0.1: * Fixed serious bug in reference counting in sigc::signal_base::impl(). * Fixed SigC::Object-derivation check in SigC::slot() compatibility module. * Fixed compilation on Apple gcc 3.3 (assisted by Spundun Bhatt). * Fixed configure check for gcc 3.4 (Murray Cumming). 2.0.0: * Implemented sigc::connection::blocked() (Murray Cumming). * Added the scripts directory to the make dist target (Murray Cumming). * Added more documentation (Martin Schulze). 1.9.16: * Fixed compiler warning in sigc::connection (Alexander Nedotsukov, Murray Cumming). * Fixed examples and made them part of the regular build (Murray Cumming). * Added header sigc++config.h for configure time checks (Murray Cumming). * Added configure time checks to determine the correct syntax for explicit template method specializations (Murray Cumming). * Removed code using partial specializations of overloaded template methods from test cases. SUN Forte doesn't support this feature (Martin Schulze). * Fixed compilation for gcc 3.4 (Murray Cumming). 1.9.15: API additions: * Add numbered slot# templates. * Allow for methods of the object's base types to be passed into sigc::mem_fun(). Other fixes and cleanups: * Make is_base_and_derived template compatible with the SUN Forte. * Non-template code moved from .m4 macro source to .h/.cc files (Murray Cumming). * Implementation moved to .cc files (Murray Cumming). * More fixes for the SUN Forte. Make some more ctors explicit. 1.9.14: * Added sigc::slot_base::operator bool() (Murray Cumming). * Build docs directory by default (Murray Cumming). * Fixed minor doxygen issues (Murray Cumming). * Fixed compiler warning in signal.h (Murray Cumming). 1.9.13: * Fixed passing references through sigc::slot (Reported by Jeff Franks). * Enabled binding of objects to method slots through sigc::bind(). * Reworked sigc::bind() API: Made the template argument for the parameter position zero-based and optional. Added overloads for binding of up to 7 arguments at a time when no position is specified. * Reworked sigc::hide() API: Made the template argument for the parameter position zero-based and optional. * Fixed compilation problems with MSVC .Net 2003 (Roel Vanhout). * Distribute MSVC .Net 2003 project files in the tarballs. * Improved and extended documentation. * Minor cleanups. 1.9.12: * Added adaptor retype(). With this final API addition all adaptors are in place that are available in libsigc++-1.2. * Added negation lambda operator. Use STL names for lambda actions. * Remove formerly disabled support for gcc extension typeof(). * Added project files for MS Visual Studio .Net 2003. (Roel Vanhout) * Make libsigc++2 compile with .Net 2003. (Roel Vanhout, Martin Schulze) * Build shared version of libsigc++2 by default. (Cedric Gustin) * Add support for win32 platform. (Cedric Gustin) * Install .m4 files. (requested by Ron Steinke) * Cleaned up functors. * Restructured and completed documentation of the core library parts. 1.9.11: API Additions and important bug fixes: * Compatibility module completed. libsigc++-1.2 filenames are preserved. * Fixed critical bug in auto-disconnection: don't defer detaching of a slot from all referred trackables during signal emission. * Reduced size of slots significantly. * Fixed support for sigc::ref() in adaptors. * Fixed sigc::visit_each(): only hit targets that are passed by reference; pass bound members in bound_member_functor by reference. * Add lambda actions sigc::{reinterpret,static,dynamic}_cast_ to support explicit parameter conversion. * Add adaptors sigc::retype_return<>() and sigc::hide_return(). Minor fixes: * Fixed return type deduction for bind<0>. libsigc++-1.9.11 should compile with gcc-3.3. * Fixed copy constructor and operator=() of slot template. * Fixed a compiler warning in signal_emit#<>::emit(). * Improved test case. 1.9.10: * Fix compiler issues with gcc-3.3.2 (patch from Jeff Franks). * Remove compiler check for the gcc extension typeof(). * Simplify bind_functor templates. * Move definition of struct nil into functor_trait.h. 1.9.9: * Add a constructor to sigc::connection that takes a slot_base& to support user defined slot lists like they are used in gtkmm. * Fix compiler issues with gcc-3.3.2 (reported by Jeff Franks). 1.9.8: * Add compatibility module that defines namespace SigC. namespace SigC should be API compatible to libsigc++-1.2. Currently only the core parts of the library are supported. Adaptors are still to follow. * Fix connection::operator=(). Include connection.h in sigc++.h. * Get rid of namespace functor. * Rename dependency to destroy_notify_callback. * Rename trackable::clear() to trackable::notify_callbacks(). * Move slot_base, signal_base, slot_iterator[_buf], slot_list out of namespace internal. They are public API. * Add reference counter to signal_impl enabling signals to share the underlying information. * Add convenience function signal#::make_slot(). * Get rid of one-letter-parameter-names. * Get rid of "using namespace ..." in the test cases. * Add lambda operators subscript ([]) and assign (=). * Fix is_base_and_derived<> for const types. * New and updated documentation. * Add previous announces to file NEWS. 1.9.7: * Added sigc++/sigc++.h. (Murray Cumming) * Added member_method example. (Murray Cumming) * Renamed closure to slot. * Fixed issues with gcc-3.3. (Adreas Rottmann) * Removed unnecessary void specializations. * Made adaptors' operator()() (overload with no arguments) return a value. * Made visit_each() support adaptors. * Overhauled return type deduction to make it work without typeof(). * Added convinience macros SIGC_FUNCTORS_HAVE_RESULT_TYPE and SIGC_FUNCTOR_TRAIT(T_functor, T_result) to make return type deduction system support 3rd-party funtors. * Changed syntax of group adaptor from "[functor] % grp([lambdas])" to "group ([functor], [lambdas])". * Made many fixes to lambda functionality. * Added var() and constant() lambda creators. * Added many lambda operators. * Added ref() which creates a reference wrapper to enable storage of references in bind and group adaptors. * Expanded test suite. * Added documentation. (Corrections by Murray Cumming) 1.9.6: * First public release of the unstable 2.0 generation. libsigc++ 2.0 uses modern C++ mechanisms to achieve a highly flexible, yet typesafe callback system. It supports all features of libsigc++ 1.2 and improves upon it by: - No need to specify the number of arguments in signal definitions. - Connection of any compatible (=implicitly convertable) functor to a signal. - Implicit type conversions of parameters during signal emission. - Lambda adaptor for complete restructuring of functor parameter lists in one line (subject to changes). - Signal has a fully featured stl style list interface. - A convinient accumulator API (replacing the old marshaller API). - Removal of unnecessary memory management functionality. - Lightweight class "trackable" for use as base class of your class hierarchy replaces class "Object".
2005-08-10sort.salo1-10/+10
2005-08-10Simplify the check for SunOS, LIBS.SunOS is enough.xtraeme1-4/+2
2005-08-10Use "PTHREAD_LIBS" in build phase to make sure that this builds ontron1-2/+2
platforms without a "-pthread" option supported by the compiler.
2005-08-10distinfo has been missed. Pointed out by veego@.uebayasi1-0/+5
2005-08-10Fix a cut-and-paste bug.jlam1-2/+2
2005-08-10Fix typo noted by Richard Rauch on tech-pkg.reed1-2/+2
2005-08-10Add print/psjoin.reed2-2/+4
2005-08-10Import new package: print/psjoin.reed4-0/+37
This was suggested by David Griffith on tech-pkg. Enjoy! psjoin concatenates several PostScript files (complying with the Document Structuring Convention, DSC) and generate a single PostScript document. The concatenated PostScript document will be written to the standard output.
2005-08-10custom targets belong before buildlink3 .includesgrant1-6/+4
2005-08-10No version of FreeBSD has /usr/bin/shlock.jlam1-4/+1
2005-08-10Note update of mail/mhonarc to 2.6.11nb2 that moved the man pages backjlam1-1/+2
to the under ${PREFIX}/man/man1.
2005-08-10Install the man pages back into ${PREFIX}/man/man1 so that they canjlam2-13/+13
be found without any special configuration for man. While here, hard code all of the paths for the install script to insulate ourselves against future changes in perl. Bump the PKGREVISION to 2.
2005-08-10Updated games/quake2forge to 0.3xtraeme2-3/+3
2005-08-10Update to 0.3.xtraeme4-56/+20
Changes: * Pluggable sound driver architecture, sound output drivers configurable at runtime: oss, alsa, ao, sdl, solaris. * Fixed joystick when using softx video refresher. * ALSA and libao sound drivers added -- configurable at compile time. * Updates to fix compile errors with gcc 3.3.
2005-08-09Note update of "netio" package to version 1.23.tron1-1/+2
2005-08-09Update "netio" package to version 1.23. Changes since version 1.13 include:tron3-47/+12
- UDP support - sets socket buffer size by default for decent performance under *BSD
2005-08-09Note update of "ra-rtsp-proxy" package to version 1.0.0.0nb2.tron1-1/+2
2005-08-09Use package source install framework to handle the startup script.tron2-8/+7
Bump package revision because of this change.
2005-08-09Note revision bump for glib2 to 1.jmmv1-1/+2
2005-08-09Apply patch from bugzilla to fix a 64bit/bigendian problem that leads tojmmv3-2/+234
data loss in libgobject, causing all kinds of annoying glitches in almost all gtk2-applications (in words of macallan@, who requested this change). Bump PKGREVISION to 1.
2005-08-09Note update of monotone and monotone-server to 0.22.jmmv1-1/+3
2005-08-09Update monotone and monotone-server to 0.22 (from 0.19):jmmv6-47/+21
Mon Aug 8 23:23:53 PDT 2005 0.22 release. new crypto library, bug fixes, ui improvements - switch from crypto++ to botan as underlying crypto library. this should not cause any user-visible changes; let us know if it does. special thanks to Matt Johnston <matt@ucc.asn.au>, Kaushik Veeraraghavan <kaushikv@gmail.com>, Matthew Gregan <kinetik@orcon.net.nz>. - incompatible change to netsync permission hooks: the get_netsync_anonymous_read_permitted hook has been removed; instead, get_netsync_read_permitted will be called with a key name of nil. server administrators should update/review their configuration - new option for merge and propagate: --lca. Until we get a long-term solution to the various 3-way merge problems, this should be more convenient than using explicit_merge. - many small improvements to error messages, fixes of minor annoyances, netsync tickers more accurate, etc. Sun Jul 17 16:48:26 PDT 2005 0.21 release. bug fixes, performance improvements, and ui improvements. - fixes a number of major performance bugs in 0.20's netsync implementation. special thanks to Matt Johnston <matt@ucc.asn.au>. - fixes a number of major bugs in 0.20's (rewritten) cvs_import command. - configury kluges to work around g++ 4.0/boost 1.32 incompatibilities. special thanks to Christof Petig <christof@petig-baender.de>, Matthew Gregan <kinetik@orcon.net.nz>, Jordan Breeding <jordan.breeding@mac.com>. - ui enhancements: - new netsync option "--exclude": branches are included if they match any of the given globs, unless they match any of the given --exclude globs. special thanks to Timothy Brownawell <tbrownaw@gmail.com>. - new netsync option client "--set-default": makes it easy to change default server/branches. - "diff" now takes options "--context" and "--external", to output context diffs and to invoke an external diff program for full control over output formatting. new option "--diff-args" pass arguments to external diff program; new hook "external_diff" allows further configuration. special thanks to Vladimir Vukicevic <vladimirv@gmail.com>. - b: and t: selectors now match exactly, instead of matching as substrings. globbing is supported for inexact matching. special thanks to Brian Downing <bdowning@lavos.net>, Jordan Breeding <jordan.breeding@mac.com>. - new command 'db kill_tag_locally'. special thanks to Jordan Breeding <jordan.breeding@mac.com>. - now uses sqlite3 prepared statements. special thanks to Derek Scherger <derek@echologic.com>. - 'db migrate' is now a complete no-op if there is no migration to do; automated scripts can now call it optimistically and cheaply to guarantee up-to-dateness. - new hash correctness tests. special thanks to Kaushik Veeraraghavan <kaushikv@gmail.com>. - upgrading from 0.20: you must run 'monotone db migrate' once against each of your databases, to add new sql indexes. Tue Jul 5 23:57:10 PDT 2005 0.20 release. features, ui improvements, performance improvements, and bug fixes. - major changes in netsync UI: serve/sync/push/pull now take a list of globs; clients can request arbitrary sets of branches, not just predefined "collections". write permissions are now granted on a per-db level (they were before anyway). - where you used to say, e.g., "monotone pull net.venge.monotone", you should instead say "monotone pull net.venge.monotone*". This may require shell-quoting. - 'get_netsync_write_permitted' hooks must be changed to take only one argument, the 'identity'. 'get_netsync_{read,anonymous_read}_permitted' hooks now take a branch argument instead of a collection, and will be called for each branch that a client requests. - 0.19 clients cannot talk to 0.20 servers, and vice-versa. - special thanks to Timothy Brownawell <tbrownaw@gmail.com>, Richard Levitte <richard@levitte.org>. - other major changes: - cvs_import re-written; many bugs fixed. now supports tags. - many minor netsync changes: - netsync traffic is now cryptographically authenticated against corruption and man-in-the-middle attacks. special thanks to Ethan Blanton <elb@elitists.net>, Matt Johnston <matt@ucc.asn.au>. - new hooks that are called when server receives data: note_netsync_*_received. special thanks to Timothy Brownawell <tbrownaw@gmail.com>. - ancestry graphs that pass outside the given branch are now synchronized correctly. special thanks to Timothy Brownawell <tbrownaw@gmail.com>. - UI improvements: - 'log' options changed: --depth has become --last; new options --no-merges, --diffs, --brief. - 'status' has new option --brief. special thanks to Derek Scherger <derek@echologic.com>. - 'serve' has new option --pid-file. special thanks to Matthew Gregan <kinetik@orcon.net.nz>. - all commands taking restrictions now take option --depth, to limit recursion through subdirectories. special thanks to Joel Reed <joelwreed@comcast.com>. - merge command all take --author, --date now. - 'checkout', 'update' take --revision, instead of using positional arguments. special thanks to Derek Scherger <derek@echologic.com>, Richard Levitte <richard@levitte.org>. - 'commit' takes new --message-file option. - new features: - new commands: "db kill_branch_locally", "db kill_revision_locally", useful for correcting some mistakes. special thanks to Brian Campbell <brian.p.campbell@dartmouth.edu>, Sebastian Spaeth <Sebastian@sspaeth.de>. - new file attribute 'manual_merge', to prevent invocation of merger on binary files. hook added to guess correct value at 'add' time. special thanks to Riccardo Ghetta <birrachiara@tin.it>. - new 'earlier than', 'later than' selectors. special thanks to Riccardo Ghetta <birrachiara@tin.it>. - new automate commands: - 'stdio', for efficient use by front-ends. special thanks to Timothy Brownawell <tbrownaw@gmail.com>. - 'certs', for fetching certs on a revision in a parseable (basic io-based) format. special thanks to Grahame Bowland <grahame@angrygoats.net>. - 'inventory' output changed incompatibly; should be much more usable now, and stable. special thanks to Derek Scherger <derek@echologic.com>. - better memory/performance when handling large files. special thanks to Eric Anderson <anderse-monotone@cello.hpl.hp.com>, Timothy Brownawell <tbrownaw@gmail.com>, Matt Johnston <matt@ucc.asn.au>, Matthew Gregan <kinetik@orcon.net.nz>. - new text mode browser in contrib/mtbrowse.sh, by Henry Nestler <Henry@BigFoot.de>. - improved zsh completion in contrib/monotone.zsh_completion, by Joel Reed <joelwreed@comcast.com>. - upgrading from 0.19: database and working copies are fully compatible. netsync clients and servers need to be upgraded together, as described above. the many ui changes may require script updates.
2005-08-09Remove explicit dependence on "nessus-core" package because thattron1-2/+1
dependence is inherited from the "nessus-plugins" package anyway.
2005-08-09+kdissertdrochner1-1/+2
2005-08-09import kdissert-1.0.3, a Mindmapping-like tool to generate text templatesdrochner5-0/+117
2005-08-09+tex-ucsdrochner1-1/+2
2005-08-09import the tex-ucs macros which provide UTF-8 support for LaTeXdrochner4-0/+220
2005-08-09add a "pam" pkg option and make it work with NetBSD's openpam if enableddrochner4-6/+63
2005-08-09Updated games/wesnoth to 0.9.5adam1-1/+2
2005-08-09Changes 0.9.5:adam3-15/+34
* language and i18n: * new translation: Hebrew (no rtl support added in yet) * updated translations: British English, Catalan, German, Hungarian, Polish, Spanish, Swedish, Turkish * fixed linebreaks not working properly for Chinese translation (#13352) * updated several unit descriptions * added GPL and part of MANUAL to help * added more descriptions and images to in-game help (also #12322) * fixed some untranslatable attack names (part of #12788) * Battle Princess can now have translation different to Princess * fix terrain list and time of day cross-references in unit help * graphics and sound improvements: * fixed layering of multi-hex tiles (#13586) * removed Mac OS X icon border (#12928) * updated images for Elvish Druid, Elvish Scout, Elvish Shaman, Elvish Shyde, Grand Knight, Master Bowman * new and revised portraits for The Dark Hordes and Konrad * campaigns * Eastern Invasion * fixed missing background in intro (#13901) * campaign plot and dialogue extensively revised * Son of the Black Eye * fixed untranslatable strings in Saving Inarix * start of making Clash of Armies harder: arrival of more reinforcements * The Dark Hordes: terminate the campaign at this point as Part 1 * Heir to the Throne: stop Bugg being resurrected in Bay of Pearls (#13950) * old campaign downloaded from server is now removed when updating (#13874) * multiplayer: * rejoining game as observer, with same nick, no longer causes out of synch (#12824 and #12997, still subject to confirmation) * fixed chat messages from allies not being shown in multiplayer (#13657) * added Use map settings option to preset scenario suggested values at setup * show game settings in the game list * fixed lobby corruption when trying to join a game that disallows observers * fixed create-game-then-cancel lobby corruption (#13522) * tweaked layout of game creation screen * fixed non-fatal errors exiting lobby (#13783) * choosing vacant slot then joining all computer game is no longer allowed * cancelling faction selection now goes back to scenario setup (#9376) * ending game now returns to lobby (#13348) * more robust network code: ghost connections should no longer linger forever * new units: added Drake Enforcer * unit balancing and modifications * increased Elvish Scout ranged attack damage from 5-2 to 6-2 * increased Cavalryman attack damage from 5-3 to 6-3 * reduced dwarvishfoot and mountainfoot defense on tundra from 40% to 30% * simplified AMLA, using global macros in amla.cfg * multiplayer scenarios: removed Icy Waters, added Smallolof, modified Sulla's Ruins map * user interface improvements: * fixed failed recruit attempt clearing undo stack (#13833) * fixed recall not clearing shroud (#13824) * fixed spurious warning when loading a saved game and ending turn (#12986) * sound is handled better, and can be set as a preference (rest of #11669) * fixed editor insisting on path without spaces, for saving maps (#13919) * changed hotkeys for end turn (alt-e->alt-space) and open/load game (ctrl-l->ctrl-o) * replaced Vera and Bepa-Roman typefaces with DejaVuSans version 1.12 * fixed towupper causing build to fail on OpenBSD (#13709) * fixed replay corruption due to capture events not saving randomness (#13666) * keep send and receive connection statistics separate for each socket * more responsive networking code, less subject to network errors * fixed campaign upload with no passphrase not storing generated passphrase * tag [redraw] now forces redraw and is no longer a no-op (#11079) * fixed repeated attempts to open non-existent font files * various bug fixes and code cleanups
2005-08-09Note update of www/squid pacakge to 2.5.10nb1.taca1-1/+2
2005-08-09- Add missing optional installed files.taca6-31/+101
- Slightly simplify installation of example configurations. - Add official patches. * 2005-07-11 00:46 (Cosmetic) The new --with-build-environment=... option doesn't work * 2005-07-09 08:58 (Cosmetic) Allow wb_ntlm_auth to run more silent * 2005-07-03 08:24 (Cosmetic) "make all" gives many warnings * 2005-06-29 20:36 (Minor) wbinfo_group.pl only looks into the first group specified * 2005-06-21 22:28 (Minor) FTP listings uses "BASE HREF" much more than it needs to, * 2005-06-22 10:46 (Cosmetic) Title in FTP listings somewhat messed up * 2005-06-19 21:03 (Minor) SNMP GETNEXT fails if the given OID is outside the Squid MIB * 2005-06-19 09:39 (Minor) squid -k reconfigure internal corruption if the type of a cache_dir is changed * 2005-06-13 22:55 (Minor) httpd_accel_signle_host incompatible with redireection * 2005-06-30 08:49 (Minor) Core dump with --enable-ipf-transparent if access to NAT device not granted * 2005-06-27 21:24 (Minor) squid -k fails in combination with chroot after patch for bug 1157 * 2005-06-09 08:01 (Minor) Squid internal icons served up with slightly incorrect HTTP headers * 2005-06-06 21:38 (Cosmetic) Updated Spanish error messages Bump PKGREVISION.
2005-08-09sort.salo1-2/+2
2005-08-09Updated misc/libcdio to 0.75adam1-1/+2
2005-08-09Changes 0.75:adam3-13/+12
- audio volume level fix on Microsoft Windows - fix build when --enable-shared, --disable-static - CD-Text retrieval fix - allow the MMC timeout to be adjusted by the application - cd-paranoia: Add option --mmc-timeout (-m) to set MMC timeout. We now check that integer arguments are integers and are within range. - changes for libcddb 1.1.0 API change - remove gcc 4.0 warnings - miscellaneous small bug fixes, removal of questionable idioms or memory leak fixes
2005-08-09Disable debugging information, or the library is too bigadam1-1/+2
2005-08-09update to tor-0.1.0.14drochner2-6/+6
Tor 0.1.0.14 fixes the second half of an important bug in the security of our crypto handshakes. This time for sure. :) All clients should upgrade. o Bugfixes on 0.1.0.x: - Fix the other half of the bug with crypto handshakes. - Fix an assert trigger if you send a 'signal term' via the controller when it's listening for 'event info' messages.
2005-08-09Note update of "mhonarc" package to version 2.6.11nb1.tron1-1/+2
2005-08-09Make necessary package list change after update of Perl to 5.8.7.tron2-7/+7
Bump package revision.
2005-08-09Install Perl modules into the Perl vendor directories. Bump thejlam2-40/+41
PKGREVISION to 3.
2005-08-08Expose a new variable PGSQL_BLCKSZ for package builders to tweak sojlam1-1/+19
as to optimize PostgreSQL performance. This is a fairly expert option and represents the size in bytes of a PostgreSQL disk page, defaulting to 8K.