summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-04-02hyperestraier updated to 1.1.6.wiz2-3/+3
2006-04-02Update to 1.1.6, provided by OBATA Akio in PR 33168:wiz3-12/+22
From ChangeLog: 2006-03-12 Mikio Hirabayashi * estraier.c (est_weight_keywords): weighting algorithm was enhanced. * estraier.c (est_db_set_wildmax): new function. * estraier.c (est_narrow_scores): disjunction of attribute conditions was added. * estraier.c (est_doc_dup, est_cond_dup): new functions. * estcmd.c (rungather, doputfile): default value of "-lf" options was changed. * estseek.c (realmain): "wildmax" parameter was added. * estmaster.c (main): "wildmax" parameter was added. - A bug about the skip parameter in the pure Java API was fixed. - The Java binding and the Ruby binding was to support similarity eclipse. - Release: 1.1.6 pkgsrc changes: From 1.1.3, compression with LZO and BZIP2 was added and auto detected from configure, so add those libraries. Also add libraries used directly.
2006-04-02qdbm updated to 1.8.47.wiz1-1/+2
2006-04-02Update to 1.8.47, provided by OBATA Akio in PR 33167:wiz5-10/+16
Changes: 2006-03-10 Mikio Hirabayashi - LTmakefile was modified. - The utility API was enhanced. - Release: 1.8.47 pkgsrc changes: From 1.8.41, LZO and BZIP compression feature was added, so link to those libraries and enable.
2006-04-02gmake updated to 3.81.wiz2-3/+3
2006-04-02Update to 3.81:wiz9-80/+31
Version 3.81 * GNU make is ported to OS/2. * GNU make is ported to MinGW. The MinGW build is only supported by the build_w32.bat batch file; see the file README.W32 for more details. * WARNING: Future backward-incompatibility! Up to and including this release, the '$?' variable does not contain any prerequisite that does not exist, even though that prerequisite might have caused the target to rebuild. Starting with the _next_ release of GNU make, '$?' will contain all prerequisites that caused the target to be considered out of date. See this Savannah bug: http://savannah.gnu.org/bugs/index.php?func=detailitem&item_id=16051 * WARNING: Backward-incompatibility! GNU make now implements a generic "second expansion" feature on the prerequisites of both explicit and implicit (pattern) rules. In order to enable this feature, the special target '.SECONDEXPANSION' must be defined before the first target which takes advantage of it. If this feature is enabled then after all rules have been parsed the prerequisites are expanded again, this time with all the automatic variables in scope. This means that in addition to using standard SysV $$@ in prerequisites lists, you can also use complex functions such as $$(notdir $$@) etc. This behavior applies to implicit rules, as well, where the second expansion occurs when the rule is matched. However, this means that when '.SECONDEXPANSION' is enabled you must double-quote any "$" in your filenames; instead of "foo: boo$$bar" you now must write "foo: foo$$$$bar". Note that the SysV $$@ etc. feature, which used to be available by default, is now ONLY available when the .SECONDEXPANSION target is defined. If your makefiles take advantage of this SysV feature you will need to update them. * WARNING: Backward-incompatibility! In order to comply with POSIX, the way in which GNU make processes backslash-newline sequences in command strings has changed. If your makefiles use backslash-newline sequences inside of single-quoted strings in command scripts you will be impacted by this change. See the GNU make manual subsection "Splitting Command Lines" (node "Splitting Lines"), in section "Command Syntax", chapter "Writing the Commands in Rules", for details. * WARNING: Backward-incompatibility! Some previous versions of GNU make had a bug where "#" in a function invocation such as $(shell ...) was treated as a make comment. A workaround was to escape these with backslashes. This bug has been fixed: if your makefile uses "\#" in a function invocation the backslash is now preserved, so you'll need to remove it. * New command-line option: -L (--check-symlink-times). On systems that support symbolic links, if this option is given then GNU make will use the most recent modification time of any symbolic links that are used to resolve target files. The default behavior remains as it always has: use the modification time of the actual target file only. * The "else" conditional line can now be followed by any other valid conditional on the same line: this does not increase the depth of the conditional nesting, so only one "endif" is required to close the conditional. * All pattern-specific variables that match a given target are now used (previously only the first match was used). * Target-specific variables can be marked as exportable using the "export" keyword. * In a recursive $(call ...) context, any extra arguments from the outer call are now masked in the context of the inner call. * Implemented a solution for the "thundering herd" problem with "-j -l". This version of GNU make uses an algorithm suggested by Thomas Riedl <thomas.riedl@siemens.com> to track the number of jobs started in the last second and artificially adjust GNU make's view of the system's load average accordingly. * New special variables available in this release: - .INCLUDE_DIRS: Expands to a list of directories that make searches for included makefiles. - .FEATURES: Contains a list of special features available in this version of GNU make. - .DEFAULT_GOAL: Set the name of the default goal make will use if no goals are provided on the command line. - MAKE_RESTARTS: If set, then this is the number of times this instance of make has been restarted (see "How Makefiles Are Remade" in the manual). - New automatic variable: $| (added in 3.80, actually): contains all the order-only prerequisites defined for the target. * New functions available in this release: - $(lastword ...) returns the last word in the list. This gives identical results as $(word $(words ...) ...), but is much faster. - $(abspath ...) returns the absolute path (all "." and ".." directories resolved, and any duplicate "/" characters removed) for each path provided. - $(realpath ...) returns the canonical pathname for each path provided. The canonical pathname is the absolute pathname, with all symbolic links resolved as well. - $(info ...) prints its arguments to stdout. No makefile name or line number info, etc. is printed. - $(flavor ...) returns the flavor of a variable. - $(or ...) provides a short-circuiting OR conditional: each argument is expanded. The first true (non-empty) argument is returned; no further arguments are expanded. Expands to empty if there are no true arguments. - $(and ...) provides a short-circuiting AND conditional: each argument is expanded. The first false (empty) argument is returned; no further arguments are expanded. Expands to the last argument if all arguments are true. * Changes made for POSIX compatibility: - Only touch targets (under -t) if they have at least one command. - Setting the SHELL make variable does NOT change the value of the SHELL environment variable given to programs invoked by make. As an enhancement to POSIX, if you export the make variable SHELL then it will be set in the environment, just as before. * On MS Windows systems, explicitly setting SHELL to a pathname ending in "cmd" or "cmd.exe" (case-insensitive) will force GNU make to use the DOS command interpreter in batch mode even if a UNIX-like shell could be found on the system. * On VMS there is now support for case-sensitive filesystems such as ODS5. See the readme.vms file for information. * Parallel builds (-jN) no longer require a working Bourne shell on Windows platforms. They work even with the stock Windows shells, such as cmd.exe and command.com. * Updated to autoconf 2.59, automake 1.9.5, and gettext 0.14.1. Users should not be impacted. * New translations for Swedish, Chinese (simplified), Ukrainian, Belarusian, Finnish, Kinyarwandan, and Irish. Many updated translations. A complete list of bugs fixed in this version is available here: http://savannah.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=103
2006-04-02cairo updated to 1.0.4.wiz2-4/+3
2006-04-02Update to 1.0.4:wiz2-7/+7
Release 1.0.4 (2006-03-15 Behdad Esfahbod) ============================================================== This is a bug fix release. Many fixes in this release are backported from the head branch and do not have bug numbers. For the bugs in bugzilla that are fixed in this release, see: https://bugs.freedesktop.org/buglist.cgi?bug_id=4674,4823,5528,5734,6176,6196,6197 This includes the bug causing Pango crashes with some corrupt fonts. For a list of all changes, see ChangeLog.
2006-04-02Note revision bumps for gnome-vfs2 and gnome-base to 1.jmmv1-1/+3
2006-04-02Drop the gnome-mime-data dependency now that gnome-vfs2 does not need it.jmmv1-3/+3
Bump PKGREVISION to 1.
2006-04-02Cleanup of pre-2.8 stuff: drop the gnome-mime-data dependency. Applicationsjmmv4-9/+71
now provide the MIME information in their .desktop files. Bump PKGREVISION to 1.
2006-04-02Build the convenience library as -static, otherwise binutils generatesjoerg3-2/+16
incorrect relocation entries for errno on DragonFly. Bump revision.
2006-04-02atk updated to 1.11.4.wiz2-3/+3
2006-04-02Update to 1.11.4:wiz3-7/+9
Changes in version 1.11.4: ========================= * Enhanced documentation: gtk-doc API docs are now at 100% coverage. * allow for NULL in-params to AtkImage coordinate APIs. * New langs: Georgian (ka) Vladimir Sichinava Oriya (or) Gora Mohanty
2006-04-02Note ucspi-ssl PKGREVISION bump (perl support now optional).schmonz1-1/+2
2006-04-02Add and describe "ucspi-ssl-perl".schmonz1-0/+1
2006-04-02Only build sslperl if option "ucspi-ssl-perl" is enabled. Bump PKGREVISION.schmonz4-14/+25
2006-04-02Add DJB_BUILD_ARGS for DJB_SLASHPACKAGE packages that can make useschmonz1-2/+3
of them, such as net/ucspi-ssl.
2006-04-02+ ImageMagick-6.2.6.7, enchant-1.2.4, gnome-icon-theme-2.14.2,wiz1-2/+9
p5-Devel-StackTrace-1.13, p5-Params-Validate-0.81, p5-Want-0.10, python24-2.4.3, tailor-0.9.21.
2006-04-02Note revision bump for bug-buddy to 1.jmmv1-1/+2
2006-04-02Do not install pre-gnome 2.8 cruft. Bump PKGREVISION to 1.jmmv4-7/+40
2006-04-02Updated wm/oroborox to 0.9.8.rxg1-1/+3
Updated x11/rox-session to 0.28.
2006-04-02Updated rox-session to 0.28.rxg5-119/+61
Changes in release 0.28 (2006-03-11): - Added support for XML-RPC-over-X as an alternative to D-BUS. If D-BUS isn't found, we don't need to abort now (Thomas Leonard). - Kill the DBUS daemon on logout (Stephen Watson). - Dropped support for older versions of D-BUS. All the special-case code was causing maintenence problems (Thomas Leonard). - Attempt to distinguish dbus 0.33 from 0.35 (new API) and 0.2x (old API) (Stephen Watson). - Python2.2 doesn't have the 'logging' module. Import a dummy version instead in this case (Thomas Leonard). - Pygtk bug: gdk.Event.time is treated as signed even though it is an unsigned value, use gdk.Event.get_time() which returns unsigned values (Stephen Watson). 12-Feb-2006 (Release 0.27) ~~~~~~~~~~~ l (Thomas Leonard). Bugfix: Log display would appear empty and never disappear if the message timeout was zero (Tony Houghton). 09-Feb-2006 ~~~~~~~~~~~ More work on setting up the user's environment (Stephen Watson). 01-Feb-2006 ~~~~~~~~~~~ Trap errors from commands that xsettings.py runs on start up (Stephen Watson). For reasons known only to itself, dtlogin start the session with stdin redirected from /, which causes Python to segfault. Have our script run ROX-Session with stdin from /dev/null (Stephen Watson). 28-Jan-2006 ~~~~~~~~~~~ Debian no longer provide Python D-BUS bindings for their default version of Python. Grrr. If we can't import dbus and we're on Python 2.3 or earlier, try running again with Python 2.4 (Thomas Leonard). 21-Jan-2006 ~~~~~~~~~~~ Made DBus 0.2x support work again (Thomas Leonard). Don't fail to start if Environment.py is missing (Thomas Leonard). Offer to restart the window manager when the setting changes (Thomas Leonard). 19-Jan-2006 ~~~~~~~~~~~ Now loads session environment from Environment.py instead of Environment (Stephen Watson). 17-Jan-2006 ~~~~~~~~~~~ Use correct interface for settings (Stephen Watson). 16-Jan-2006 ~~~~~~~~~~~ main.py and settings.py updated for DBus 0.3x, needs checking it still works under 0.2x (Stephen Watson). 31-Dec-2005 ~~~~~~~~~~~ Fixed some problems with the new code (Thomas Leonard; reported by Babyfai Cheung). 03-Nov-2005 ~~~~~~~~~~~ Started rewriting in Python (Thomas Leonard). 23-Oct-2005 ~~~~~~~~~~~ Support KDM when doing "Add to login" (Stephen Watson). 04-Oct-2005 ~~~~~~~~~~~ Fixed C code for dbus 0.36: part of a previous patch was missing, and a workaround was needed for dbus bug 4637 (Tony Houghton). 02-Sep-2005 ~~~~~~~~~~~ Added options for screen blanking with DPMS (Tony Houghton). 31-Aug-2005 ~~~~~~~~~~~ Updated Chinese translations (Babyfai Cheung). 30-Aug-2005 ~~~~~~~~~~~ Fixed update-po to include Python strings (Thomas Leonard; reported by babyfai Cheung). Make NumLock default to off, as on some laptops it makes the letter keys produce numbers! (reported by Matthew Weier O'Phinney). 28-Aug-2005 (Release 0.26) ~~~~~~~~~~~ Updated build system to match ROX-Filer: generated files go in the 'build' directory, the platform guessing has been removed, and the translation building system has been updated. Also upgraded to the latest findrox and added ROX-Session.xml for 0launch (Thomas Leonard). RunROX and SetUp panel scripts use freedesktop.org basedir spec. 09-Jul-2005 ~~~~~~~~~~~ Work-around for problem with D-BUS 0.3 Python bindings which prevented them working with Python 2.3 (Thomas Leonard, reported by Marcus). Separated the Guide from ROX-Session, as it was getting far too big (Thomas Leonard). 03-Jul-2005 ~~~~~~~~~~~ Allow ROX-Session to compile with DBUS 0.3x (Tony Houghton and Thomas Leonard). Try to run ROX-Session using 0launch, if possible (Thomas Leonard). 20-May-2005 ~~~~~~~~~~~ Change the way that ROX-Session runs ROX-Filer. It now uses the -S option to open the default Panel and Pinboard, with the configuration of panel and pinboard in ROX-Filer options (Stephen Watson). 12-May-2005 ~~~~~~~~~~~ Updated Chinese translation (Babyfai Cheung). Bugfix: Make sure messages are valid UTF-8 before logging (Thomas Leonard). 01-May-2005 ~~~~~~~~~~~ Removed code for setting scroll lock. Doesn't work, and nobody uses scroll lock anyway (Thomas Leonard). 30-Apr-2005 ~~~~~~~~~~~ Added Brazilian Portuguese translation (Jose Carlos). Bugfix: Don't refuse to start if the new Environment file doesn't exist (Thomas Leonard). 10-Apr-2005 ~~~~~~~~~~~ Provide a way to set up a user's environment in general (Stephen Watson). 04-Mar-2005 ~~~~~~~~~~~ Set $BROWSER to ROX-Session/browser on login. This is a script that runs your configured web-browser ($XDG_CONFIG_DIRS/rox.sourceforge.net/handlers/BROWSER), or picks a suitable default if none is set (Thomas Leonard). 22-Jan-2005 ~~~~~~~~~~~ Allow setting keyboard LEDs (Caps lock, Num lock, Scroll lock) on login (Guido Schimmes). This is used by Keyboard, a configuration application. 23-Dec-2004 ~~~~~~~~~~~ Added Chinese translation (Babyfai Cheung). 23-Oct-2004 ~~~~~~~~~~~ Updated Dutch translation (Jan Wagemakers). 15-Oct-2004 ~~~~~~~~~~~ Allow Xcursor code to compile under GLib 2.2 (Stephen Watson). Updated rox-session to 0.28. Changes in release 0.28 (2006-03-11): - Added support for XML-RPC-over-X as an alternative to D-BUS. If D-BUS isn't found, we don't need to abort now (Thomas Leonard). - Kill the DBUS daemon on logout (Stephen Watson). - Dropped support for older versions of D-BUS. All the special-case code was causing maintenence problems (Thomas Leonard). - Attempt to distinguish dbus 0.33 from 0.35 (new API) and 0.2x (old API) (Stephen Watson). - Python2.2 doesn't have the 'logging' module. Import a dummy version instead in this case (Thomas Leonard). - Pygtk bug: gdk.Event.time is treated as signed even though it is an unsigned value, use gdk.Event.get_time() which returns unsigned values (Stephen Watson). 12-Feb-2006 (Release 0.27) ~~~~~~~~~~~
2006-04-02Enabled it to build with python24 & sync with dbus-glib.rxg3-13/+45
2006-04-02Updated oroborox to 0.9.8.rxg3-8/+16
Changes: 5-Mar-2006 ~~~~~~~~~~ * release as version 0.9.8 4-Mar-2006 ~~~~~~~~~~~ * Spanish translation by Juan Carlos Jimenez Garcia <jigar@alumni.uv.es> * fix title string storage (crasher bug)
2006-04-02Update to netbsd-iscsi-20060402.agc3-7/+8
Differences include better tracing functionality, and some internal changes for some functions returning boolean values. The target now runs again on my big-endian UltrasparcIIi Solaris 9 machine.
2006-04-02Note revision bump for gnome-session to 2.jmmv1-1/+2
2006-04-02Fix some issues in gsm-dbus.c as reported by Vincent Untz in bugzilla.jmmv3-14/+17
Bump PKGREVISION to 2.
2006-04-02Add a MESSAGE that summarizes all manual steps required to get ajmmv1-0/+27
fully-working GNOME Desktop. Suggested by jmcneill@.
2006-04-02I forgot deletes.hamajima2-33/+0
This patch is for previous version, unnecessary with current version.
2006-04-02Note the update of the gnome meta packages to 2.14.0.jmmv1-1/+4
2006-04-02It is now official: welcome to GNOME 2.14.0!jmmv3-99/+101
2006-04-02Add the ca_ES@valencian directory, initially used by gaim 2.0.0beta3.jmmv13-13/+65
2006-04-02Depend on hicolor-icon-theme to:jmmv16-32/+48
1) Handle the shared share/icons/hicolor directory. 2) Properly regenerate the icon theme cache during (de)installation. Bump PKGREVISION.
2006-04-02Note where patch-aa is being tracked.jmmv2-3/+5
2006-04-02Note revision bump for gdm to 1.jmmv1-1/+2
2006-04-02Update to 2.14.0nb1:jmmv6-17/+256
- Make the server start in vt05 to avoid problems in a default NetBSD installation. (Broken during the update.) - Use the NetBSD logo in the standard chooser. It'd be good to have a netbsd-icons package or similar. - Install a custom X session that allows you to log in using ~/.xsession. Don't know why it is not provided by default, but it used to be IIRC.
2006-04-02- gliv-1.9.5, goffice-0.2.1, qt3-libs-3.3.6, tiff-3.8.2 (thanks, drochner)wiz1-5/+1
2006-04-02Add entries for drochner's updates from 20060331wiz1-1/+11
2006-04-02- ORBit2-2.14.0, bug-buddy-2.14.0, evince-0.5.2, gucharmap-1.6.0, ↵wiz1-9/+1
vte-0.12.0, yelp-2.14.0 (thanks, jmmv) - gramps2-2.0.10 (thanks, drochner) - samba-3.0.22 (thanks, jlam)
2006-04-02+ at-spi-1.7.7, atk-1.11.4, bitlbee-1.0.2, dasher-4.0.2, delegate-9.1.1,wiz1-4/+14
fetchmail-6.3.3, fox-1.6.1, galculator-1.2.5.2, gmake-3.81, librsvg2-2.14.3, pngcrush-1.6.3, qt4-libs-4.1.2, qt4-tools-4.1.2.
2006-04-02Remove paragraph about license. Also it mentioned package thatreed1-4/+0
was removed last April.
2006-04-02kdebase3 and nas updates.markd1-1/+3
2006-04-02amd64 trys to build the server so add oss dependency so it can. Bumpmarkd1-27/+18
PKGREVISION. Also do some pkglint cleanups.
2006-04-02Explicitly configure without composite support. Fixes build when usingmarkd1-5/+4
newer xorgs. While here remove a few configure arguments that no longer do anything. Bump PKGREVISION.
2006-04-01require libtool >=1.5.22nb3 for /bin/sh fix.grant1-2/+3
2006-04-01Note addition of fast-user-switch-applet, version 2.14.0.jmmv1-1/+2
2006-04-01Add and enable fast-user-switch-applet.jmmv1-1/+2
2006-04-01Initial import of fast-user-switch-applet, version 2.14.0:jmmv5-0/+212
The Fast User-Switching Applet is an applet for the GNOME panel which provides a menu to switch between users. It integrates with GDM to switch between existing X11 sessions or create new ones as needed, and will show the same users as the GDM face browser. The applet can display itself in the panel using either the current user's name, the word "Users" or an icon, and can be configured to include an item which launches an X session in a window. The applet code is designed to allow for easy cut-and-paste of the system-interaction code into other applications, like screensavers.
2006-04-01Add exim-lookup-pgsql and exim-lookup-sqlite - as provided by Geertabs2-2/+17
Hendrickx.