summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-07-03Update to 20060611:wiz3-8/+10
Two new codecs: lib/win32/vp7vfw.dll lib/win32/wvc1dmod.dll
2006-07-03Update to 1.4.4:wiz3-35/+6
Noteworthy changes in version 1.4.4 (2006-06-25) ------------------------------------------------ * User IDs are now capped at 2048 byte. This avoids a memory allocation attack (see CVE-2006-3082). [was already fixed in pkgsrc] * Added support for the SHA-224 hash. Like the SHA-384 hash, it is mainly useful when DSS (the US Digital Signature Standard) compatibility is desired. * Added support for the latest update to DSA keys and signatures. This allows for larger keys than 1024 bits and hashes other than SHA-1 and RIPEMD/160. Note that not all OpenPGP implementations can handle these new keys and signatures yet. See "--enable-dsa2" in the manual for more information.
2006-07-03Oops. Somehow I forgot to commit distinfo for patch-ab.bad1-2/+1
2006-07-03glib2 updated to 2.12.0.wiz2-3/+3
2006-07-03Update to 2.12.0. Add a patch fixing PR 33908, provided bywiz6-29/+48
Martijn van Buul. Changes: Overview of Changes from GLib 2.11.4 to GLib 2.12 ================================================= * Bugs fixed: 344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM * Updated translations (cy,nb,nl) Overview of Changes from GLib 2.11.3 to GLib 2.11.4 =================================================== * GBookmarkFile: - g_bookmark_file_remove_item returns a boolean * g_mkstemp accepts the XXXXXX in the middle of the template * Bugs fixed: 344868 g_key_file_to_data should separate groups * Updated translations (de,es,fr,gu,hi,ko,th) Overview of Changes from GLib 2.11.2 to GLib 2.11.3 =================================================== * GBookmarkFile: - g_bookmark_file_move_item: Return TRUE in case of an empty target * Bugs fixed: 343919 gunicollate.c: strxfrm bug on VC8 * Updated translations (fi) Overview of Changes from GLib 2.11.1 to GLib 2.11.2 =================================================== * Add g_ascii_stroll to parse signed 64bit integers * GMarkup: add a flag to treat CDATA as text * GHashTable: add functions to remove all entries * GMainLoop: add functions to find the currently running source, and determine if it is destroyed * Bug fixes: 342563 g_atomic_thread_init() needs to be called before other _g_*_thread_init() functions 343548 Potential use after free in callers of g_string_free() 168538 Wish: Clearing contents of GHashTables 321886 GTK+ cannot be reliably used in multi-threaded applications 341826 goption.c: 'strtoll' is C99's function 343899 g_ascii_formatd dosn't work as expected for all format strings 317793 Make GEnumValue strings const 337129 Compile warnings in G_IMPLEMENT_INTERFACE 303622 What is G_TYPE_CHAR? * Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi) Overview of Changes from GLib 2.11.0 to GLib 2.11.1 =================================================== * GOption - Support 64-bit integers - Allow optional text before and after the options in help output * Bug fixes: 340538 gbase64-test writes OOB 340816 GKeyFile set_string_list invalid memory reads 339105 g_key_file_parse_value_as_double 340434 convert-test.c fails (function test_one_half) 311043 Memory leaks (and potential infinite loops) when using G_ERRORCHECK_MUTEXES 335198 Error checking mutexes are fubar 341237 Add a G_OPTION_ARG_INT64 341192 g_io_channel_set_flags not implemented on win32 336120 Allow adding description before/after GOption --help output body 341191 misplaced check in g_relation_delete 340530 mismatched calloc / g_free in win32 threads * Updated translation (es) Overview of Changes from GLib 2.10.x to GLib 2.11.0 =================================================== * GBookmarkFile: a parser for files containing bookmarks stored using the Desktop Bookmark specification. * Base64 encoding support * Unicode 5.0 support * GOption supports floating point numbers * GKeyFile supports floating point numbers * Bug fixes: 155884 gatomic.c should be based on new SDK 157877 update-desktop-database doesn't handle duplicate entries 164719 keyfile parser doesn't support floats 327662 Import BookmarkFile from libegg 329548 Add G_OPTION_ARG_DOUBLE 329789 option-test.c type confusion 332841 Segmentation Fault when %llu is passed to vasnprintf and HAVE_SNPRINTF is not defined 333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define _WIN32_WINDOWS 0x0401' 333916 g_timer_elapsed docs should mention that microseconds may be NULL 334440 dlerror() portability issue causes crash on (old) a.out NetBSD platform 334646 goption + error out params 334799 g_remove() must check return value of remove() 334943 make check FAIL: threadpool-test 335215 Some breakages with GThreadPool 336085 g_option_context_new parameter lacks better explanation 336677 Documentation for g_object_ref_sink() is incorrect 337027 gbookmarkfile.c: sys/time.h include error 337553 Wrong escaping of URIs 338572 Dereferencing NULL value in g_key_file_get_group_comment 338845 g_completion_complete_utf8 crashes when NULL is passed to it 339337 g_bookmark_file_set_description 339338 gbookmarkfile.c, function expand_exec_line 339340 gbookmarkfile.c, function bookmark_app_info_dump * Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn, or,pt_BR,ro,tr,vi,zh_CN)
2006-07-03- libtheora (thanks, drochner).wiz1-2/+1
2006-07-03unrar updated to 3.6.5.wiz2-3/+3
2006-07-03- dovecot-1.0rc1 (thanks, ghen).wiz1-2/+1
2006-07-03Update to 3.6.5, diff to 3.6.4:wiz2-6/+6
601a602,604 > else > { > } diff -r 3.6.4/extract.cpp unrar/extract.cpp 31,32c31,46 < while (ExtractArchive(Cmd)==EXTRACT_ARC_REPEAT) < ; --- > while (true) > { > char PrevCmdPassword[MAXPASSWORD]; > strcpy(PrevCmdPassword,Cmd->Password); > > EXTRACT_ARC_CODE Code=ExtractArchive(Cmd); > > /* > restore Cmd->Password which could be changed in IsArchive() call > for next header encrypted archive > */ > strcpy(Cmd->Password,PrevCmdPassword); > > if (Code!=EXTRACT_ARC_REPEAT) > break; > } 143a158 > diff -r 3.6.4/extract.hpp unrar/extract.hpp 8a9,10 > EXTRACT_ARC_CODE ExtractArchive(CommandData *Cmd); > 34d35 < EXTRACT_ARC_CODE ExtractArchive(CommandData *Cmd); diff -r 3.6.4/version.hpp unrar/version.hpp 3,5c3,5 < #define RARVER_BETA 4 < #define RARVER_DAY 25 < #define RARVER_MONTH 5 --- > #define RARVER_BETA 5 > #define RARVER_DAY 15 > #define RARVER_MONTH 6
2006-07-03Remove unneeded chunk, noted by markd.wiz1-7/+1
2006-07-03Updated x11/qt4 to 4.1.4adam2-3/+4
2006-07-03Changes 4.1.4:adam3-20/+6
* Bug fix release
2006-07-03Adapt for latest suse_linux framework (unbreak the installation).xtraeme1-6/+6
2006-07-03+ abcm2ps-4.12.21, amarok-1.4.1, autoconf-2.60, bacula-1.38.11,wiz1-12/+22
cairo-1.2.0, cygwin_lib-1.5.21.1, diffstat-1.42, dvdrip-0.97.12, glib2-2.12.0, gperf-3.0.2, gtk2+-2.8.20, hyperestraier-1.3.0 [pkg/33486], libmpeg3-1.7, logsurfer-1.6b [pkg/33892], p5-Jcode-2.05 [pkg/33888], phpmyadmin-2.8.2, qdbm-1.8.60 [pkg/33485], snes9x-1.50, webmin-1.290, xchat-2.6.4, zile-2.2.15.
2006-07-03Add gst-plugins0.10-{ogg,theora} (hi drochner!)xtraeme1-1/+3
2006-07-03Add gst-plugins0.10-cairo (hi drochner!)xtraeme1-1/+3
Add libscigraphica (hi rillig!)
2006-07-03Add gst-plugins0.10-pango (hi drochner!)xtraeme1-1/+2
2006-07-03Add missing gst-plugins0.10* packages (hi drochner!)xtraeme1-1/+6
2006-07-03Unbreak on platforms where bluetooth wasn't detected, reported byxtraeme3-20/+11
dillo@.
2006-07-03Note PKGREVISION bump of gettext-lib.minskim1-1/+2
2006-07-03Make sure that locale_charset is defined only once. Otherwise, it may causeminskim3-2/+27
a link error on Darwin. The patch was adapted from the one submitted in PR pkg/32723. It also fixes PR pkg/32945. Bump PKGREVISION.
2006-07-03Remove an obsolete patch.minskim2-16/+1
2006-07-03while the future of this pkg is somewhat uncertain, due to the demisedrochner4-36/+14
of cddb just announced, update to 1.5.6 changes: - fixed: better handling of double disc titles - fixed: isolatin1 is removed from the userpackages - fixed: AllMusic works again (new layout of website) - added: new template paper-box, picture - added: added option template_list, which generates list of feasible templates - changed: better regular expression for getting covers from AllMusic.com - fixed: proper encoding of languages through inputenc package
2006-07-03Remove superfluous patch.tron2-15/+1
2006-07-03MacOSX also provides GL, so avoid depending on GL onthat platformtonio1-3/+3
2006-07-03When trying to link against FOX, use pthread libs explicitly.joerg3-2/+35
2006-07-03Fix questionable C++ code instead of using "-ffriend-injection" optiontron4-8/+82
(which might be removed from future GCC versions) to make this build with GCC 4.1.x. Patch tested by Thomas 'wiz' Klausner.
2006-07-03Update nsd to 2.3.5, featuring minor updates.joerg1-1/+2
2006-07-03Update to nsd-2.3.5. This fixes a number of minor bugs.joerg3-16/+16
2006-07-03Note revision bump for rhythmbox to 1.jmmv1-1/+2
2006-07-03Properly handle the icon theme cache. Bump PKGREVISION to 1.jmmv2-2/+6
2006-07-03Updated games/scummvm to 0.9.0adam2-3/+3
2006-07-03Changes 0.9.0:adam4-18/+17
New Games: - Added kyra engine (for the Kyrandia series). Currently only the first part of the series is supported. - Added support for The Feeble Files General: - Fixed a bug that prevented you from overriding the scaler from the command line for 640x480 games. - Added subtitle configuration controls to the Launcher options dialogs. - GUI was completely redesigned and is now themeable. SCUMM: - Rewrote the detection code, for improved accuracy and better support of fan translations. It should now work much better on games with unknown MD5. - Added subtitle configuration controls to the options dialog. - Fixed graphical glitches in several HE games. - Fixed palette glitches in Big Thinkers 1st Grade. - Fixed songs in the kitchen of Pajama Sam 1. SAGA - Fixed sound distortion in the Inherit the Earth demo. Simon - Improved Hebrew support - Lots of long-overdue cleanups and re-structuring were made to accomodate for The Feeble Files. - Fixed a rare MIDI bug that would cause a channel to change volume without adjusting it to the master volume. - Fixed delay after introduction of Simon the Sorcerer 1 demo (With speech) - Fixed music tempo in DOS versions of Simon the Sorcerer 1. Broken Sword 1: - Added support for the --save-slot option. Broken Sword 2: - Major rewrite of how game resources are accessed in memory. This should fix alignment issues reported on some platforms. - Missing data files are handled more gracefully.
2006-07-03keep fingers off icon-theme.cachedrochner1-2/+1
2006-07-03Updated emulators/wine to 0.9.16adam2-3/+3
2006-07-03Changes 0.9.16:adam4-12/+18
- More work on Direct3D shaders. - Major DirectDraw rewrite on top of Direct3D. - Support for debug information in Dwarf format. - Beginnings of an OleView Winelib application. - Lots of bug fixes.
2006-07-03use the DESCR template used by the other gstreamer pluginsdrochner2-27/+15
2006-07-03This wants gtk2+>=2.6.0.jmmv1-2/+2
2006-07-03Note addition of easytag-devel, version 1.99.12.jmmv1-1/+2
2006-07-03Add and enable easytag-devel.jmmv1-1/+2
2006-07-03Initial import of easytag-devel, version 1.99.12:jmmv5-0/+112
This package provides the 1.99.x development branch of easytag, an utility to easily and quickly view, edit and write your audio files' tags from a nice GTK+ interface. The major change in this branch is the use of GTK+ 2.x as opposed to 1.x. Based on the easytag-gtk2 package found in pkgsrc-wip. OK'ed by wiz@, who becomes the maintainer of this new package.
2006-07-03addition of Transmission 0.6.1, a lightweight bittorrent clientdogcow2-2/+4
2006-07-03Take the hugs update.jmmv1-2/+2
2006-07-03Note addition of xenkernel30 package.agc1-1/+2
2006-07-03Add and enable xenkernel30.agc1-1/+2
2006-07-03Initial import of a xen3 kernel package, to facilitate xen3 dom0 supportagc4-0/+42
in NetBSD. Xen is a virtual machine monitor for x86 hardware (runs only on i686-class CPUs), which supports running multiple guests operating systems on a single machine. Guest OSes (also called "domains") require a modified kernel which supports Xen hypercalls in replacement to access to the physical hardware. At boot, the xen kernel is loaded (via grub) along with the guest kernel for the first domain (called domain0). domain0 has privileges to access the physical hardware (PCI and ISA devices), administrate other domains and provide virtual devices (disks and network) to other domains. This package contains the Xen3 kernel itself.
2006-07-03Moved the command that generates the list of files to its own variable,rillig1-2/+4
so it can be overridden on the command line. This allows to check for example ${WRKSRC} instead of the installed files. Of course, since the variable starts with an underscore, this feature is not meant to be official.
2006-07-03Fixed permissions for the game directories, since in unprivileged mode,rillig1-6/+7
they ended without the execute bits set. In 2004, some variables have been introduced to pkgsrc that fit exactly this purpose. Bumped PKGREVISION.
2006-07-03Note update of cross/i386-netbsdpe and emulators/peace, andkent1-1/+4
removal of devel/w32api
2006-07-03remove w32api because PEACE distribution now contains w32apikent14-498/+1