Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (1h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 02:23:57 UTC Now

2014-03-13 14:07:51 UTC MAIN commitmail json YAML

Note update of devel/SOPE and www/SOGo packages to 2.2.1.

(taca)

2014-03-13 14:06:55 UTC MAIN commitmail json YAML

Update SOGo to 2.2.1.

Changes from 2.0.4b is too many to write here, please refer:
<http://www.sogo.nu/buzz/2014.html>.

(taca)

2014-03-13 14:02:44 UTC MAIN commitmail json YAML

2014-03-13 13:55:54 UTC MAIN commitmail json YAML

Note update of www/contao32 and www/contao32-example pacakges to 3.2.8.

(taca)

2014-03-13 13:55:07 UTC MAIN commitmail json YAML

Update contao32 (and contao32-example) to 3.2.8.

Version 3.2.8 (2014-03-12)
--------------------------

### Fixed
Add the "href" values for active breadcrumb menus to the template (see #6796).

### Fixed
The file/page tree widget did not work properly in "edit multiple" mode (#6788).

### Fixed
Preserve the referer ID when clicking the "switch to edit" button (see #6127).

### Fixed
Encode e-mail addresses in the "explanation" form field (see #6771).

### Fixed
Use a placeholder image if no thumbnail can be created (see #6754).

### Fixed
Pass additional arguments to the "replaceInsertTags" hook (see #6672).

### Fixed
Correctly initialize the `Session` class (see #6747).

### Fixed
Do not use `Input::setGet()` in the event modules (see #6733).

### Fixed
Correctly shorten the CSS `background` property (see #6709).

### Fixed
Do not use `UNION SELECT` when searching for parent pages (see #6704).

### Fixed
Disable `zlib.output_compression` when sending files to the browser (see #6717).

### Fixed
Consider the event time in the event list module (see #6719).

### Fixed
Make the newsletter recipient address available in the template (see #5782).

### Fixed
Correctly handle Unicode characters in `Validator::isGooglePlusId` (see #6707).

### Fixed
Fixed the arguments of two `CalendarEventsModel` methods (see #6781).

### Fixed
Pass the "tableless" flag to the "form_message" template (see #6772).

### Fixed
Update the `swipe.js` script so the "continuous" option works (see #6762).

### Fixed
Improve the `Search::removeEntry()` method (see #6785).

### Fixed
Correctly set the cookie path in the front mode in debug mode (see #6723).

### Fixed
Point to `Frontend::addToUrl()` in front end templates (see #6736).

### Fixed
Do not stop the cron job execution after the first interval.

(taca)

2014-03-13 13:52:42 UTC MAIN commitmail json YAML

Note update of mail/sylpheed package to 3.3.1.

(taca)

2014-03-13 13:52:09 UTC MAIN commitmail json YAML

Update sylpheed to 3.3.1.

* 3.3.1 (stable)

    * IMAP: "INBOX" folder became case insensitive as specified in RFC 3501.
    * IMAP: server name for cache directory is escaped now
      (fixes cache creation when using IPv6 address for server name on Windows).
    * IMAP: the bug that double-quote (") and backslash (\) in
      folder/username/password were not escaped and could not be used on IMAP4
      was fixed.
    * IMAP: parsing of folder names that contain brackets was fixed.
    * Config.guess and config.sub included in the tarball were updated to the
      latest version.
    * The bug that 'File - Folder - Move folder...' menu didn't work was
      fixed.
    * The bug that MIME nest level restriction was not working was fixed.
    * Many defects discovered by Coverity Scan were fixed:
      - FILE handle resource leaks
      - memory leaks
      - possible buffer overrun
      - strict error checks
      - correct null pointer checks
    * Win32: the tray icon is recreated when explorer.exe crashes now.
    * Win32: the included SSL certificates were updated
      (based on ca-certificates_20111211_all.deb in Ubuntu 12.04.4 LTS).

(taca)

2014-03-13 13:36:19 UTC MAIN commitmail json YAML

Changes 3.8.4.1:
Work around a C-preprocessor macro conflict that breaks the build for some configurations with Microsoft Visual Studio.
When computing the cost of the skip-scan optimization, take into account the fact that multiple seeks are required.

(adam)

2014-03-13 13:25:49 UTC MAIN commitmail json YAML

Changes 2.0.2:

General:
* Added SDL_GL_ResetAttributes() to reset OpenGL attributes to default values
* Added an API to load a database of game controller mappings from a file:
    SDL_GameControllerAddMappingsFromFile(), SDL_GameControllerAddMappingsFromRW()
* Added game controller mappings for the PS4 and OUYA controllers
* Added SDL_GetDefaultAssertionHandler() and SDL_GetAssertionHandler()
* Added SDL_DetachThread()
* Added SDL_HasAVX() to determine if the CPU has AVX features
* Added SDL_vsscanf(), SDL_acos(), and SDL_asin() to the stdlib routines
* EGL can now create/manage OpenGL and OpenGL ES 1.x/2.x contexts, and share
  them using SDL_GL_SHARE_WITH_CURRENT_CONTEXT
* Added a field "clicks" to the mouse button event which records whether the event is a single click, double click, etc.
* The screensaver is now disabled by default, and there is a hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER that can change that behavior.
* Added a hint SDL_HINT_MOUSE_RELATIVE_MODE_WARP to specify whether mouse relative mode should be emulated using mouse warping.
* testgl2 does not need to link with libGL anymore
* Added testgles2 test program to demonstrate working with OpenGL ES 2.0
* Added controllermap test program to visually map a game controller

Windows:
* Support for OpenGL ES 2.x contexts using either WGL or EGL (natively via
  the driver or emulated through ANGLE)
* Added a hint SDL_HINT_VIDEO_WIN_D3DCOMPILER to specify which D3D shader compiler to use for OpenGL ES 2 support through ANGLE
* Added a hint SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT that is useful when creating multiple windows that should share the same OpenGL context.
* Added an event SDL_RENDER_TARGETS_RESET that is sent when D3D9 render targets are reset after the device has been restored.

Mac OS X:
* Added a hint SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK to control whether Ctrl+click should be treated as a right click on Mac OS X. This is off by default.

Linux:
* Fixed fullscreen and focused behavior when receiving NotifyGrab events
* Added experimental Wayland and Mir support, disabled by default

Android:
* Joystick support (minimum SDK version required to build SDL is now 12,
  the required runtime version remains at 10, but on such devices joystick
  support won't be available).
* Hotplugging support for joysticks
* Added a hint SDL_HINT_ACCELEROMETER_AS_JOYSTICK to control whether the accelerometer should be listed as a 3 axis joystick, which it will by default.

(adam)

2014-03-13 11:47:12 UTC MAIN commitmail json YAML

+ freetype2-2.5.3 [CVE-2014-2240]

(obache)

2014-03-13 11:34:05 UTC MAIN commitmail json YAML

Updated emulators/suse131_libpng to 13.1nb2

(obache)

2014-03-13 11:33:47 UTC MAIN commitmail json YAML

Update suse131 libpng16 RPM to libpng16-16-1.6.6-12.1 for CVE-2014-0333.

Bump PKGREVISION.

(obache)

2014-03-13 11:22:13 UTC MAIN commitmail json YAML

Pass --disable-64bit on 32-bit platforms.

(jperkin)

2014-03-13 11:08:54 UTC MAIN commitmail json YAML

2014-03-13 10:45:12 UTC MAIN commitmail json YAML

Updated devel/nspr to 4.10.4

(ryoon)

2014-03-13 10:44:38 UTC MAIN commitmail json YAML

Update to 4.10.4

Changelog:
NSPR 4.10.4 has the following bug fixes:
* Bug 767759: Add support for new x32 ABI for NSPR. Contributed by
  Daniel Schepler.
* Bug 844784: TSan: Thread data race in PR_EnterMonitor.
* Bug 936320: Change PR_StringToNetAddr to try pr_StringToNetAddrFB
  first.
* Bug 939786: TSan: data race nsprpub/pr/src/pthreads/ptthread.c:137
  _pt_root.
* Bug 958796: Users of _beginthreadex that set a custom stack size
  may not be getting the behavior they want. Contributed by
  Emanuel Hoogeveen.
* Bug 963033: AArch64 support update for NSPR. Contributed by
  Marcin Juszkiewicz.
* Bug 969061: Incorrect end-of-list test when iterating over a
  PRCList in prcountr.c and prtrace.c
* Bug 971152: IPv6 detection on linux depends on availability of
  /proc/net/if_inet6.
* Bug 972125: Support iOS arm64. Contributed by Sylvain Defresne.

(ryoon)

2014-03-13 10:37:26 UTC MAIN commitmail json YAML

Updated cad/geda to 1.8.2

(dmcmahill)

2014-03-13 10:35:03 UTC MAIN commitmail json YAML

Update to version 1.8.2

Notable changes in gEDA/gaf 1.8.2
=================================

Bugfix release.

* [994361] Fixed a libgeda crash bug involving nets inside symbols.

* [1226246] Fixed a gnetlist data corruption bug when using refdes
  containing the string "POWER".

* Updates to build system to allow compilation from git on systems
  with Automake >= 1.13.0.

Notable changes in gEDA/gaf 1.8.1
=================================

Bugfix release with correct dynamic version information for libgeda.

Notable changes in gEDA/gaf 1.8.0
=================================

* `gschem' and `gnetlist' have updated and rewritten user guides.

* All tools now give more informative error messages if they are
  unable to load schematic or symbol files due to syntax errors.

* All tools now correctly handle schematic and symbol files with `\r',
  `\n', or `\r\n` line endings, or a mixture.

* Unconnected pin ends and net ends are now all drawn with the same
  box marker in `gschem' and printed output.

* Net segments with at least two connections (including indirect
  connections via `netname=' attributes) are now drawn with arrowheads
  rather than box markers on dangling ends in `gschem' and printed
  output.

Notable changes in gEDA/gaf 1.7.2
=================================

* `geda-gaf' now requires GTK+ 2.16.0 or later.

* A greatly expanded Scheme API has been added to gEDA/gaf for use by
  extension authors.  See the `geda-scheme' Info manual for more
  details.  Existing extensions may need to be modified to load the
  `(geda deprecated)' or `(gschem deprecated)' modules.

* The `component-library-search' function for `gafrc' files now skips
  directories without symbols, and searches for libraries recursively.

* `gschem' keybinding improvements:

  - Keybindings are now unaffected by Caps Lock.

  - Keystrokes are displayed using the same characters as on keycaps
    (e.g. `:' instead of `colon').

  - Keystrokes may use extended modifiers (Super, Hyper and Meta).

  - Key bindings can be modified in any rc file or interactively using
    the `global-set-key' function.  See notes in `system-gschemrc' for
    examples.

* `gschem' now displays help files and component documentation on all
  platforms, including Windows.  The `locate' tool is no longer used
  to search for component documentation files.

* The `schdiff' tool for generating visual diffs of schematics and
  symbols has been added.  It can be used with most version control
  systems.  See `man schdiff' for more details.

* The `bom' and `bom2' backends to `gnetlist' now give error messages
  if no attribute file can be found.  The `-O attrib_file=FILE' and
  `-O attribs=ATTRIB,ATTRIB...' options have also been added.

* A new `ewnet' backend has been added to `gnetlist'.  This outputs
  netlists for use with the National Instruments ULTIboard layout
  tool.

* The `verilog' backend to `gnetlist' now supports concatenated net
  naming like "{a,b,c[3:0]}".

* `gsch2pcb' no longer supports the `m4_command' parameter in project
  files.

* The `--m4-pcbdir' and `--m4-file' arguments to `gsch2pcb' now work
  again.

* `gsymfix.pl' has been renamed to `gsymfix'.

* Man pages are now available for all programs installed as part of
  gEDA/gaf.

* The undocumented programs `gnet_hier_verilog', `gsymupdate', `gschupdate'
  and `sch2eaglepos.sh' are no longer installed to ${prefix}/bin.

Notable changes in gEDA/gaf 1.7.1
=================================

* gEDA is now compatible with Guile 2.0.

* gEDA/gaf applications no longer complain when trying to load an rc
  file twice, or when an rc file doesn't exist.

* `gschem' allows objects to be moved by dragging without having to
  select them first.

* `gschem' now supports keybindings with more than one modifier key,
  and "Deselect" is bound to <Control Shift A> by default.

* `gnetlist' correctly handles multiple renames of the same net.  This
  resolves some long-standing bugs with multipage schematics.

* The `spice-sdb' backend for `gnetlist' now has built-in support for
  `SUBCKT_NMOS' and `SUBCKT_PMOS' devices.

* A new `makedepend' backend has been added to `gnetlist'.  It
  generates Makefile code for SPICE simulation dependencies.

* Visibility of embedded component attributes are now preserved by
  `gattrib'.

* `gsch2pcb' correctly handles footprint names with hyphens (`-').

* `gsch2pcb' project files support quoting and escaping in
  `schematics' entries.

* Considerable enhancements to Unicode support when printing
  schematics or exporting PostScript.

Notable changes in gEDA/gaf 1.7.0
=================================

* All gEDA/gaf applications now handle configuration files much more
  strictly, and provide much more useful feedback when an error
  occurs.

* Several changes to `gschem' command-line options:

  - The `-t' option is no longer supported.

  - Several command-line options now support a long-form alternative.

  - The `-s' option can now be used to run multiple Scheme scripts
    during `gschem' startup.

  - A new `-c' option is available, which runs a Scheme expression
    during `gschem' startup.

  - A new `-L' option is available, which adds a directory to the
    Scheme load path.

  - A new `-V' or `--version' option is available, which displays
    version information.

* `gschem' now provides a "Select All" function, which is bound to
  <Control a> by default, along with a corresponding "Deselect"
  function.

* In the `gschem' "Add component" dialog, filtering the component
  library will expand matching libraries.  If the filter is cancelled,
  all libraries are collapsed.  Components can now be selected by
  double-clicking on them in the component list.

* The `gschem' "Edit Text Properties" dialog now has an easier to use
  "Alignment" menu.

* Printed text size now better matches on-screen text size in
  `gschem'.

* Special characters, including commas, are now escaped or quoted
  appropriately in `gattrib' CSV output.

* Several changes to `gnetlist' command-line options:

  - Four command-line options specific to the `spice-sdb' backend have
    been removed.  They can be replaced with `-O <option>' according
    to the following table:

        -e, --embedd              -O embedd_mode
        -I, --include            -O include_mode
        -n, --nomunge            -O nomunge_mode
        -s, --sort                -O sort_mode

  - The list of available backends is now obtained using a new
    `--list-backends' option.  `-g help' no longer outputs a list of
    backends.

  - A new `-L' option is available, which adds a directory to the
    Scheme load path.

  - A new `-V' or `--version' option is available, which displays
    version information.

  - When run with invalid command-line arguments, `gnetlist' now exits
    with non-zero exit status.

* Several `gnetlist' backends have now been fixed so that it should no
  longer be necessary to set an expanded Guile stack in gEDA's config
  files.

* The `spice-sdb' backend for `gnetlist' now supports probes
  (`TESTPOINT' devices).

* The undocumented `mk_verilog_syms' program is no longer installed.
  The symbols it creates are still installed to
  `${prefix}/share/gEDA/sym/verilog'.

(dmcmahill)

2014-03-13 08:20:53 UTC MAIN commitmail json YAML

Commit ommitted distinfo for LuaJIT2 2.0.3 upgrade

(justin)

2014-03-13 08:16:40 UTC MAIN commitmail json YAML

2014-03-13 08:00:16 UTC pkgsrc-2013Q4 commitmail json YAML

2014-03-13 07:59:23 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4343 - requested by tron
mail/mutt-devel: security update

Revisions pulled up:
- mail/mutt-devel/Makefile                                      1.98
- mail/mutt-devel/distinfo                                      1.79

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Wed Mar 12 23:55:56 UTC 2014

  Modified Files:
  pkgsrc/mail/mutt-devel: Makefile distinfo

  Log Message:
  Update the "mutt-devel" package to version 1.5.23. This release fixes
  the security vulnerability reported in CVE-2014-0467.

  To generate a diff of this commit:
  cvs rdiff -u -r1.97 -r1.98 pkgsrc/mail/mutt-devel/Makefile
  cvs rdiff -u -r1.78 -r1.79 pkgsrc/mail/mutt-devel/distinfo

(spz)

2014-03-13 07:32:02 UTC MAIN commitmail json YAML

Updated www/mediawiki to 1.22.4

(wen)

2014-03-13 07:30:34 UTC MAIN commitmail json YAML

2014-03-13 07:28:38 UTC MAIN commitmail json YAML

2014-03-13 07:26:06 UTC MAIN commitmail json YAML

2014-03-13 07:24:05 UTC MAIN commitmail json YAML

add and enable free42

(jnemeth)

2014-03-13 07:22:13 UTC MAIN commitmail json YAML

add and enable py-hgview

(jnemeth)

2014-03-13 07:16:23 UTC MAIN commitmail json YAML

add and enable csound6{,-manual}

(jnemeth)

2014-03-12 23:57:45 UTC MAIN commitmail json YAML

Note update of the "mutt-devel" package to version 1.5.23.

(tron)

2014-03-12 23:55:56 UTC MAIN commitmail json YAML

Update the "mutt-devel" package to version 1.5.23. This release fixes
the security vulnerability reported in CVE-2014-0467.

(tron)

2014-03-12 23:41:33 UTC MAIN commitmail json YAML

2014-03-12 22:49:14 UTC MAIN commitmail json YAML

Update LuaJIT2 to 2.0.3.

This release has the new PS4 port and various important bug fixes
over 2.0.2 -- an update is recommended.

Updated as discussed with maintainer alnsn@netbsd.org

(justin)

2014-03-12 21:30:43 UTC MAIN commitmail json YAML

Added security/gpshell version 1.4.4

(gdt)

2014-03-12 21:29:55 UTC MAIN commitmail json YAML

2014-03-12 21:29:25 UTC MAIN commitmail json YAML

Import gpshell-1.4.4 as security/gpshell.
Packaged in wip by Richard Hansen of BBN.

GPShell is a script interpreter which talks to a smart card which
complies to the GlobalPlatform Card Specification.  It is written on
top of the GlobalPlatform Library.  It uses the PC-SC Connection
Plugin for accessing smart cards.  It can establish a secure channel
with a smart card, load, instantiate, delete and list applications on
supported smart cards.  These applications are practically always
JavaCard applets.

(gdt)

2014-03-12 21:26:07 UTC MAIN commitmail json YAML

+libglobalplatform

(gdt)

2014-03-12 21:24:50 UTC MAIN commitmail json YAML

Added security/libglobalplatform version 6.0.0 [gdt 2014-03-12]

Packaged in wip by Richard Hansen of BBN Technologies.

(gdt)

2014-03-12 21:23:11 UTC MAIN commitmail json YAML

2014-03-12 20:29:05 UTC MAIN commitmail json YAML

Updated pkgtools/pkgdiff to 1.5

(asau)

2014-03-12 20:28:30 UTC MAIN commitmail json YAML

Do not rely on path search when invoking pkgdiff.

(asau)

2014-03-12 20:17:09 UTC MAIN commitmail json YAML

Python is only a build dependency actually.

(asau)

2014-03-12 19:52:04 UTC MAIN commitmail json YAML

2014-03-12 19:50:15 UTC MAIN commitmail json YAML

Updated chat/konversation to 1.5

(wiedi)

2014-03-12 19:49:03 UTC MAIN commitmail json YAML

Update Konversation from 1.4 to 1.5

Konversation 1.5 adds numerous major features over the previous stable
release. Of particular note are support for SASL and client
certificate authentication, all-new topic management UI, overhauled
authentication UI in the Identities dialog, per-tab spell-checking
language settings, user-configurable nick context menu entries, mouse
spring-loading on tabs, all-new versions of major bundled scripts and
improved Ignore and Watched Nicknames systems. Many under-the-hood
changes to improve codec support and general performance, along with
the usual slew of bug fixes all over, further sweeten the deal.

Full Changelog at:
https://projects.kde.org/projects/extragear/network/konversation/repository/revisions/master/entry/ChangeLog

(wiedi)

2014-03-12 19:43:17 UTC MAIN commitmail json YAML

Export getline. Needed for build on NetBSD-5.
Reported by Matthias Ferdinand <mf+ml.pkgsrc-users@netzwerkagentursaarland.de>
on pkgsrc-users.

(wiz)

2014-03-12 19:38:21 UTC MAIN commitmail json YAML

Add buildlink3.mk for opendmarc

(wiedi)

2014-03-12 19:36:44 UTC MAIN commitmail json YAML

Use C99 to fix build on SunOS

(wiedi)

2014-03-12 19:31:32 UTC MAIN commitmail json YAML

Add some dependencies and allow python-2.6 as well.

(wiz)

2014-03-12 19:00:36 UTC MAIN commitmail json YAML

Add bison to tools. Not enough to fix the build for me, but a step.

(wiz)

2014-03-12 18:35:59 UTC MAIN commitmail json YAML

Updated sysutils/file to 5.17

(wiz)

2014-03-12 18:35:49 UTC MAIN commitmail json YAML

Update to 5.17, based on patch provided by Matthias
<mf+ml.pkgsrc-users@netzwerkagentursaarland.de> on pkgsrc-users.

Changes:

2014-02-12  18:21  Christos Zoulas <christos@zoulas.com>

* Count recursion levels through indirect magic

2014-02-11  10:40  Christos Zoulas <christos@zoulas.com>

* Prevent infinite recursion on files with indirect offsets of 0

2014-01-30  21:00  Christos Zoulas <christos@zoulas.com>

* Add -E flag that makes file print filesystem errors to stderr
  and exit.

2014-01-08  17:20  Christos Zoulas <christos@zoulas.com>

* mime printing could print results from multiple magic entries
  if there were multiple matches.
* in some cases overflow was not detected when computing offsets
  in softmagic.

2013-12-05  12:00  Christos Zoulas <christos@zoulas.com>

* use strcasestr() to for cdf strings
* reset to the "C" locale while doing regex operations, or case
  insensitive comparisons; this is provisional

2013-11-19  20:10  Christos Zoulas <christos@zoulas.com>

* always leave magic file loaded, don't unload for magic_check, etc.
* fix default encoding to binary instead of unknown which broke recently
* handle empty and one byte files, less specially so that
  --mime-encoding does not break completely.
`
2013-11-06  14:40  Christos Zoulas <christos@zoulas.com>

* fix erroneous non-zero exit code from non-existant file and message

2013-10-29  14:25  Christos Zoulas <christos@zoulas.com>

* add CDF MSI file detection (Guy Helmer)

2013-09-03  11:56  Christos Zoulas <christos@zoulas.com>

* Don't mix errors and regular output if there was an error
* in magic_descriptor() don't close the file and try to restore
  its position

2013-05-30  17:25  Christos Zoulas <christos@zoulas.com>

* Don't treat magic as an error if offset was past EOF (Christoph Biedl)

2013-05-28  17:25  Christos Zoulas <christos@zoulas.com>

* Fix spacing issues in softmagic and elf (Jan Kaluza)

2013-05-02  18:00  Christos Zoulas <christos@zoulas.com>

* Fix segmentation fault with multiple magic_load commands.

2013-04-22  11:20  Christos Zoulas <christos@zoulas.com>

* The way "default" was implemented was not very useful
  because the "if something was printed at that level"
  was not easily controlled by the user, and the format
  was bound to a string which is too restrictive. Add
  a "clear" for that level keyword and make "default"
  void. This way one can do:

>>13 clear x
>>13 lelong 1 foo
>>13 lelong 2 bar
>>13 default x
>>>13 lelong x unknown %x

2013-03-25  13:20  Christos Zoulas <christos@zoulas.com>

* disallow strength setting in "name" entries

2013-03-06  21:24  Christos Zoulas <christos@zoulas.com>

* fix recursive magic separator printing

2013-02-26  19:28  Christos Zoulas <christos@zoulas.com>

* limit recursion level for mget
* fix pread() related breakage in cdf
* handle offsets properly in recursive "use"

2013-02-18  10:39  Christos Zoulas <christos@zoulas.com>

* add elf reading of debug info to determine if file is stripped
  (Jan Kaluza)
* use pread()

2013-01-25  18:05  Christos Zoulas <christos@zoulas.com>

* change mime description size from 64 to 80 to accommodate OOXML.

2013-01-11  14:50  Christos Zoulas <christos@zoulas.com>

* Warn about inconsistent continuation levels.
* Change fsmagic to add a space after it prints.

2013-01-10  21:00  Christos Zoulas <christos@zoulas.com>

* Make getline public so that file can link against it.
  Perhaps it is better to rename it, or hide it differently.
  Fixes builds on platforms that do not provide it.

2013-01-07  16:30  Christos Zoulas <christos@zoulas.com>

* Add SuS d{,1,2,4,8}, u{,1,2,4,8} and document
  what long, int, short, etc is (Guy Harris)

2013-01-06  11:20  Christos Zoulas <christos@zoulas.com>

* add magic_version function and constant
* Redo memory allocation and de-allocation.
  (prevents double frees on non mmap platforms)
* Fix bug with name/use having to do with passing
  found state from the parent to the child and back.

2012-12-19  8:47  Christos Zoulas <christos@zoulas.com>

* Only print elf capabilities for archs we know (Jan Kaluza)

2012-10-30  19:14  Christos Zoulas <christos@zoulas.com>

* Add "name" and "use" file types in order to look
  inside mach-o files.

2012-09-06  10:40  Christos Zoulas <christos@zoulas.com>

* make --version exit 0 (Matthew Schultz)
* add string/T (Jan Kaluza)

2012-08-09  2:15  Christos Zoulas <christos@zoulas.com>

* add z and t modifiers for our own vasprintf
* search for $HOME/.magic.mgc if it is there first
* fix reads from a pipe, and preserve errno

2012-05-15  13:12  Christos Zoulas <christos@zoulas.com>

* use ctime_r, asctime_r

2012-04-06  17:18  Christos Zoulas <christos@zoulas.com>

* Fixes for indirect offsets to handle apple disk formats

2012-04-03  18:26  Christos Zoulas <christos@zoulas.com>

* Add windows date field types
* More info for windows shortcuts (incomplete)

(wiz)

2014-03-12 18:14:53 UTC MAIN commitmail json YAML

Updated wm/spectrwm to 2.5.0

(wiz)

2014-03-12 18:14:41 UTC MAIN commitmail json YAML

Update to 2.5.0, provided by Lokesh Mandvekar on pkgsrc-users.

Changes since previous version:

Fix text rendering issue in search_win.
The depth of the indicator window must match the depth of the allocated
text color.  To ensure this is always the case, copy from root
instead of parent.

Ignore EnterNotify when entering from an inferior window.

Fix floating windows remaining borderless after being fullscreen.

Fix window border colors when moving windows to hidden workspaces.

Add new OBEYAPPFOCUSREQ quirk.
When an application requests focus on the window via a
_NET_ACTIVE_WINDOW client message (source indication of 1),
comply with the request.

Improve support for Extended Window Manager Hints (EWMH).

Add support for _NET_CURRENT DESKTOP, _NET_DESKTOP_NAMES,
_NET_NUMBER_OF_DESKTOPS and _NET_CLIENT_LIST.

Windows are sorted according to _NET_CLIENT_LIST at start.

Change iconify to use _NET_WM_STATE_HIDDEN instead of
_SWM_ICONIC.

Add _NET_WM_FULL_PLACEMENT to _NET_SUPPORTED.

Improve handling of _NET_WM_STATE_FULLSCREEN.

Improve general handling of EWMH.

Fix focus issues when a window maps/unmaps on an unfocused region.

Fix calls to get property length that did not adjust for item size.

Fix stacking issues.

Fix segfault.

Disable swapwin on fullscreen layout.

Remove floating property from ws_win struct.

Add new macros for accessing ewmh_flags.

(wiz)

2014-03-12 17:01:57 UTC MAIN commitmail json YAML

Drop redundant variable setting from postgresql*-server.

PGUSER, PGGROUP, and PGHOME are all in mk/defaults/mk.conf.  They are
also set (?=) in each server Makefile.  Worse, PGHOME is set to
varying values.  However, the versions in defaults prevail.
Therefore, remove the extra/confusing settings, leaving this as a
user-settable variable with a default.  pkg_info -B before and after
shows no related changes, so no PKGREVISION++.

Pointed out by Richard Palo, and ok adam@.

There's a related issue lurking, which is that PGHOME ends up being
/usr/pkg/pgsql, which is not under VARBASE, but I'm letting that be
because a change would be disruptive.

(gdt)

2014-03-12 16:16:27 UTC MAIN commitmail json YAML

Updated net/unbound to 1.4.22

(pettai)

2014-03-12 16:16:00 UTC MAIN commitmail json YAML

Unbound 1.4.22

Features:
* separate ldns into core ldns inside ldns/ subdirectory.  No more
  configure --with-ldns is needed and unbound does not rely on libldns.
* Accept ip-address: as an alternative for interface: for
  consistency with nsd.conf syntax.
* Fix ref#536: acl_deny_non_local and refuse_non_local added.
* so-reuseport: yesno option to distribute queries evenly over
  threads on Linux (Thanks Robert Edmonds).
  Reuseport is attempted, then fallback to without on failure.
* delay-close: msec option that delays closing ports for which
  the UDP reply has timed out.  Keeps the port open, only accepts
  the correct reply.  This correct reply is not used, but the port
  is open so that no port-denied ICMPs are generated.

Bug Fixes:
* Fix #528: if very high logging (4 or more) segfault on allow_snoop.
* Fix #531: Set SO_REUSEADDR so that the wildcard interface and a
  more specific interface port 53 can be used at the same time, and
  one of the daemons is unbound.
* if configured --with-libunbound-only fix make install.
* Patch from Neel Goyal to fix callback in libunbound.
* Patch from Neel Goyal to fix async id assignment if callback
  is called by libunbound in the mesh attach.
* Fix bug#537: compile python plugin without ldns library.
* Windows port, adjust %lld to %I64d, and warning in win_event.c.
* Fix #544: Fixed +i causes segfault when running with module conf
  "iterator".
* Fix #547: no trustanchor written if filesystem full, fclose checked.
* unbound-event.h is installed if you configure --enable-event-api.
  It contains low-level library calls, that use libevent's event_base
  and a wireformat return packet in a buffer to perform async
  resolution in the client's eventloop.
* speed up unbound, by reducing lock contention on localzones.lock.
* Fix parse (in ldns) of quoted parenthesized text strings.
* Detect libevent2 install automatically by configure and fixup
  link with lib/event2 subdir.
* Fix #551: License change "Regents" to "Copyright holder", matching
  the BSD license on opensource.org.
* Fix parse of #553(NSD) string in sldns, quotes without spaces.
* Be lenient when a NSEC NameError response with RCODE=NXDOMAIN is
  received. This is okay according 4035, but not after revising
  existence in 4592.  NSEC empty non-terminals exist and thus the
  RCODE should have been NOERROR. If this occurs, and the RRsets
  are secure, we set the RCODE to NOERROR and the security status
  of the response is also considered secure.
* iana portlist updated.
* Fix bug#561: contrib/cacti plugin did not report SERVFAIL rcodes
  because of spelling..

(pettai)

2014-03-12 15:19:32 UTC pkgsrc-2013Q4 commitmail json YAML

2014-03-12 15:19:18 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4342 - requested by obache
multimedia/adobe-flash-plugin11: security update

Revisions pulled up:
- multimedia/adobe-flash-plugin11/Makefile                      1.26
- multimedia/adobe-flash-plugin11/distinfo                      1.24

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Wed Mar 12 12:22:25 UTC 2014

  Modified Files:
  pkgsrc/multimedia/adobe-flash-plugin11: Makefile distinfo

  Log Message:
  Update adobe-flash-plugin11 to 11.2.202.346 for APSB14-08.

(tron)

2014-03-12 14:47:36 UTC MAIN commitmail json YAML

Updated net/nsd to 4.0.2

(pettai)

2014-03-12 14:47:13 UTC MAIN commitmail json YAML

NSD 4.0.2

Features:
* Return REFUSED for queries to non-hosted zones.

Bug Fixes:
* Fix expired zones to give SERVFAIL, also when parent zone loaded.
* documented nsd-control zonestatus output in nsd-control manpage.
* remove mention of nsdc from nsd-checkconf manpage.
* Disabled recvmmsg and sendmmsg usage by default because kernel
  versions have implementation issues: ipv6 ignored, security issues.
* Detect libevent2 install automatically by configure, and use
  event2 header files if necessary.
* Fix #551: change Regent to Copyright holder in the LICENSE,
  to match the definition on opensource.org for the BSD License.
* Fix #552: zonefile loads on nsd-control reconfig when the name
  of the file has changed.
* Fix leak of zone name after zonefile read and fix malloc too
  large that would be leaked in the radix tree.
* Fix from 3.2: make SOA RDATA comparisons in XFR more lenient (only
  check serial).
* Fix that NSD will delete and recreate not-clean-closed databases.

(pettai)

2014-03-12 14:29:32 UTC MAIN commitmail json YAML

2014-03-12 14:21:26 UTC MAIN commitmail json YAML

Updated lang/nawk to 20121220

(ryoon)

2014-03-12 14:20:43 UTC MAIN commitmail json YAML

Update to 20121220

* Works fine under Debian GNU/Linux 7.4, NetBSD/amd64 6.99.36
* Merge pkgsrc specific changes

Changelog:
Dec 20, 2012:
fiddled makefile to get correct yacc and bison flags.  pick yacc
(linux) or bison (mac) as necessary.

added  __attribute__((__noreturn__)) to a couple of lines in
proto.h, to silence someone's enthusiastic checker.

fixed obscure call by value bug in split(a[1],a) reported on
9fans.  the management of temporary values is just a mess; i
took a shortcut by making an extra string copy.  thanks
to paul patience and arnold robbins for passing it on and for
proposed patches.

tiny fiddle in setfval to eliminate -0 results in T.expr, which
has irritated me for 20+ years.

Aug 10, 2011:
another fix to avoid core dump with delete(ARGV); again, many thanks
to ruslan ermilov.

Aug 7, 2011:
split(s, a, //) now behaves the same as split(s, a, "")

Jun 12, 2011:
/pat/, \n /pat/ {...} is now legal, though bad style to use.

added checks to new -v code that permits -vnospace; thanks to
ruslan ermilov for spotting this and providing the patch.

removed fixed limit on number of open files; thanks to aleksey
cheusov and christos zoulos.

fixed day 1 bug that resurrected deleted elements of ARGV when
used as filenames (in lib.c).

minor type fiddles to make gcc -Wall -pedantic happier (but not
totally so); turned on -fno-strict-aliasing in makefile.

May 6, 2011:
added #ifdef for isblank.
now allows -ffoo as well as -f foo arguments.
(thanks, ruslan)

May 1, 2011:
after advice from todd miller, kevin lo, ruslan ermilov,
and arnold robbins, changed srand() to return the previous
seed (which is 1 on the first call of srand).  the seed is
an Awkfloat internally though converted to unsigned int to
pass to the library srand().  thanks, everyone.

fixed a subtle (and i hope low-probability) overflow error
in fldbld, by adding space for one extra \0.  thanks to
robert bassett for spotting this one and providing a fix.

removed the files related to compilation on windows.  i no
longer have anything like a current windows environment, so
i can't test any of it.

May 23, 2010:
fixed long-standing overflow bug in run.c; many thanks to
nelson beebe for spotting it and providing the fix.

fixed bug that didn't parse -vd=1 properly; thanks to santiago
vila for spotting it.

Feb 8, 2010:
i give up.  replaced isblank with isspace in b.c; there are
no consistent header files.

Nov 26, 2009:
fixed a long-standing issue with when FS takes effect.  a
change to FS is now noticed immediately for subsequent splits.

changed the name getline() to awkgetline() to avoid yet another
name conflict somewhere.

Feb 11, 2009:
temporarily for now defined HAS_ISBLANK, since that seems to
be the best way through the thicket.  isblank arrived in C99,
but seems to be arriving at different systems at different
times.

Oct 8, 2008:
fixed typo in b.c that set tmpvec wrongly.  no one had ever
run into the problem, apparently.  thanks to alistair crooks.

Oct 23, 2007:
minor fix in lib.c: increase inputFS to 100, change malloc
for fields to n+1.

fixed memory fault caused by out of order test in setsval.

thanks to david o'brien, freebsd, for both fixes.

May 1, 2007:
fiddle in makefile to fix for BSD make; thanks to igor sobrado.

Mar 31, 2007:
fixed some null pointer refs calling adjbuf.

Feb 21, 2007:
fixed a bug in matching the null RE in sub and gsub.  thanks to al aho
who actually did the fix (in b.c), and to wolfgang seeberg for finding
it and providing a very compact test case.

fixed quotation in b.c; thanks to Hal Pratt and the Princeton Dante
Project.

removed some no-effect asserts in run.c.

fiddled maketab.c to not complain about bison-generated values.

removed the obsolete -V argument; fixed --version to print the
version and exit.

fixed wording and an outright error in the usage message; thanks to igor
sobrado and jason mcintyre.

fixed a bug in -d that caused core dump if no program followed.

Jan 1, 2007:
dropped mac.code from makefile; there are few non-MacOSX
mac's these days.

Jan 17, 2006:
system() not flagged as unsafe in the unadvertised -safe option.
found it while enhancing tests before shipping the ;login: article.
practice what you preach.

removed the 9-years-obsolete -mr and -mf flags.

added -version and --version options.

core dump on linux with BEGIN {nextfile}, now fixed.

removed some #ifdef's in run.c and lex.c that appear to no
longer be necessary.

(ryoon)

2014-03-12 13:32:14 UTC MAIN commitmail json YAML

For lack of a better source of gtar.1, regenerate said using help2man, as
the previous one was seriously outdated. Provide a helpful target for the
future. Bump PKGREVISION.

(fhajny)

2014-03-12 12:57:24 UTC MAIN commitmail json YAML

Updated lang/python26 to 2.6.9nb3

(obache)

2014-03-12 12:57:06 UTC MAIN commitmail json YAML

For smtpd.py, only rename with ${PY_VER_SUFFIX} to be installed as a tool,
or rename of module name affect to other parts using this module.
Noticed by Benjamin Lorenz in tech-pkg@.

Additionally, set ALTERNATIVE for bin/smtpd.py.

(obache)

2014-03-12 12:44:24 UTC MAIN commitmail json YAML

Updated mail/mew to 6.5nb3

(ryoon)

2014-03-12 12:43:43 UTC MAIN commitmail json YAML

2014-03-12 12:41:17 UTC MAIN commitmail json YAML

Updated lang/python27 to 2.7.6nb3

(obache)

2014-03-12 12:40:57 UTC MAIN commitmail json YAML

For smtpd.py, only rename with ${PYVERSUFFIX} to be installed as a tool,
or rename of module name affect to other parts using this module.
Noticed by Benjamin Lorenz in tech-pkg@.

Additionally, set ALTERNATIVE for bin/smtpd.py.

(obache)

2014-03-12 12:28:44 UTC MAIN commitmail json YAML

Updated audio/mp3diags to 1.2.01

(wiz)

2014-03-12 12:28:28 UTC MAIN commitmail json YAML

Update to 1.2.01:

17.01.2014 - 1.2.01
- 1.2 as the new stable branch
- build fix for clang and for Solaris
- fixed broken links in documentation and moved alternate downloads from Dropbox to my ISP

31.03.2013 - 1.2.00
- new version number to support the new "stable" branch

01.12.2012 - 1.1.21.080
- fixed bug that caused a "%s" to be shown instead of the list of files
    about to be changed

(wiz)

2014-03-12 12:22:35 UTC MAIN commitmail json YAML

Updated multimedia/adobe-flash-plugin11 to 11.2.202.346

(obache)

2014-03-12 12:22:25 UTC MAIN commitmail json YAML

2014-03-12 11:45:23 UTC MAIN commitmail json YAML

+ pulseaudio-5.0 [hal support is dropped], xentools44-4.4.0.

(wiz)

2014-03-12 11:36:51 UTC MAIN commitmail json YAML

Updated x11/gtkmm3 to 3.10.0

(wiz)

2014-03-12 11:36:41 UTC MAIN commitmail json YAML

Update to 3.10.0:

Changes in 3.10 compared to 3.8:

Gtk
* Added HeaderBar.
  (Juan Rafael Garc鱈a Blanco) Bug #708194
* Added ListBox and ListBoxRow,
  (Kjell Ahlstedt) Bug #708115
* Added PlacesSidebar.
  (Juan Rafael Garc鱈a Blanco) Bug #705642
* Add Revealer.
  (Juan R. Garc鱈a Blanco) Bug #705460
* Added Stack and StackSwitcher,
  (Andrew Potter) Bug #704964
* Deprecate Table.
  (Kjell Ahlstedt)
* Deprecate StockID, StockItem, BuiltinStockID, namespace Gtk::Stock.
  (Kjell Ahlstedt)
* Deprecate Gtk::IconFactory, IconSet, IconSource.
  (Kjell Ahlstedt)
* Application:
  - add/remove_accelerator(): Add overloads without the variant parameter.
  (Murray Cumming)
  - Add missing gtk_init() call in one of the constructors.
  (Murray Cumming)
* Button: Add constructor that takes an icon_name and size.
  (Murray Cumming)
* CellRenderer: Deprecate property_cell_background_gdk().
  (Kjell Ahlstedt)
* CellRendererPixbuf: Add the surface property.
  (Murray Cumming)
* CellView: Deprecate property_background_gdk().
  (Kjell Ahlstedt)
* ColorButton: Deprecate get_alpha().
  (Kjell Ahlstedt)
* Container: deprecate resize_children().
  (Kjell Ahlstedt)
* Box: Add get/set_baseline_position() and property.
  (Murray Cumming)
* Entry: Add get/set_tabs() and property.
  (Murray Cumming)
* FileChooser: Add get_current_name().
  (Murray Cumming)
* HeaderBar: Make get_show_close_button() const.
  (Juan Rafael Garc鱈a Blanco)
* Grid:
  - Add get/set_row_baseline_position()
  and get/set_baseline_row(), and baseline-row property.
  (Murray Cumming)
  - Add remove_row() and remove_column().
  (Murray Cumming)
* Image: Add set(Cairo::Surface)
  (Murray Cumming)
* InfoBar: Add get/set_show_close_button() and
  the property.
  (Murray Cumming)
* IconInfo: Add load_surface() and get_base_scale().
  (Murray Cumming)
* IconTheme:  Add lookup_icon() method overloads that
  take a scale parameter.
  Add choose_icon() method overload that take a scale
  parameter.
  Add load_icon() method overload that takes a scale parameter.
  Add load_surface().
  (Murray Cumming)
* IconView: set_cursor(): Add a version with no cell parameter
  (Murray Cumming)
* Image: Deprecate methods that take an IconSet or a StockID parameter.
* Label: Add get/set_lines() and property.
  (Murray Cumming)
* Menu, MenuBar: Add constructors that take Gio::MenuModels.
  (Murray Cumming)
* Menu: Make attach_to_widget() public.
  (Murray Cumming)
* MenuButton: Deprecate unset_menu().
  (Kjell Ahlstedt)
* MenuShell: bind_model(): Add a method overload without the
  action_namespace parameter.
  (Murray Cumming)
* PlacesSidebar: Fix crash with the drag_* signals,
  correct some OWNERSHIP_*s, pass vectors by reference in signals
  (Murray Cumming) Bug #705642
* RadioAction: Deprecate the constructor that uses StockID.
  (Murray Cumming)
* RadioToolButton: Fix set_group(). Add reset_group().
  (Kjell Ahlstedt)
* Scale: Constructor: Remove the default parameter value
  to avoid ambiguity.
  (Murray Cumming) Bug #707810 (cheshirekow)
* Add SearchBar.
  (Juan Rafael Garcia Blanco)
* ScrolledWindow: Deprecate property_window_placement_set().
* Settings:
  - Deprecate ignored settings.
    (Murray Cumming)
  - Add create_action().
    (Murray Cumming)
* StyleContext: Deprecate [set|get]_direction() and render_icon_pixbuf().
  (Kjell Ahlstedt)
* ToggleAction: Deprecate the constructor that uses StockID
  (Murray Cumming)
* Widget:
  - Make insert_action_group() public.
    (Murray Cumming)
  - Add remove_action_group()
    (Murray Cumming)
  - Add get_scale_factor().
    (Murray Cumming)
  - Add drag_begin() that takes x and y coordinates.
    (Murray Cumming)
  - Widget Add get_preferred_height_for_width(),
    get_allocated_baseline() and get_valign_with_baseline().
    (Murray Cumming)
  - Deprecate [un]set_composite_name(),
    [push|pop]_composite_child(), get_requisition() and methods that take a
    StockID parameter.
    (Kjell Ahlstedt)
* Window:
  - get_frame_extents(): Add const version.
    (Murray Cumming)
  - Add close().
    (Murray Cumming)
  - Deprecate reshow_with_initial_size().
    (Kjell Ahlstedt)
* Add missing includes in gdkmm.h and gtkmm.h.
  (Kjell Ahlstedt) Bug #699993.

Gdk:
* Deprecate Color.
  (Murray Cumming)
* Cursor: Wrap some new functions.
  (Murray Cumming)
* Device: Add get_position() that uses doubles.
  (Murray Cumming)
* Display: Deprecate get_n_screens().
  (Murray Cumming)
* Screen: Add get_monitor_scale_factor().
  (Murray Cumming)
* Window:
  - Add get_scale_factor().
  - Add get_device_position() taking doubles.
  - Add create_similar_image_surface().
  - Add set_opaque_region().
    (Murray Cumming)

Build:
* Update Visual Studio Projects
  (Chun-wei Fan)
* Update gtk-demo MSVC Projects
  (Chun-wei Fan)
* Move to a generated ChangeLog.
  (Jos辿 Alburquerque)

Documentation:
* Demos: Catch Glib::FileError from demo_find_file().
  (Kjell Ahlstedt)
* Demos: Add IconTheme demo.
  (Kjell Ahlstedt)
* Demos: Fix calls to Gtk::Grid::attach().
  (Kjell Ahlstedt)

(wiz)

2014-03-12 10:43:14 UTC MAIN commitmail json YAML

Updated lang/python33 to 3.3.5

(wiz)

2014-03-12 10:42:42 UTC MAIN commitmail json YAML

2014-03-12 10:39:43 UTC MAIN commitmail json YAML

Update to 3.3.5:

Python 3.3.5 was released on March 9th, 2014.

Python 3.3.5 includes fixes for these important issues:

    a 3.3.4 regression in zipimport (see http://bugs.python.org/issue20621)
    a 3.3.4 regression executing scripts with a coding declared
    and Windows newlines (see http://bugs.python.org/issue20731)
    potential DOS using compression codecs in bytes.decode() (see
    http://bugs.python.org/issue19619 and
    http://bugs.python.org/issue20404)

and also fixes quite a few other bugs.

This release fully supports OS X 10.9 Mavericks. In particular,
this release fixes an issue that could cause previous versions of
Python to crash when typing in interactive mode on OS X 10.9.

(wiz)

2014-03-12 10:29:48 UTC MAIN commitmail json YAML

Updated devel/ocaml-findlib to 1.4.1

(wiz)

2014-03-12 10:29:38 UTC MAIN commitmail json YAML

Update to 1.4.1:

-  1.4.1:ocamldoc: The order of -ppopt arguments was changed by ocamlfind,
  which is not correct. (Sylvain Le Gall and J<E9>r<E9>mie Dimino.)

(wiz)

2014-03-12 10:26:19 UTC MAIN commitmail json YAML

Updated net/gst-plugins1-libnice to 0.1.5

(wiz)

2014-03-12 10:26:10 UTC MAIN commitmail json YAML

Update to 0.1.5, just like libnice.

(wiz)

2014-03-12 10:25:56 UTC MAIN commitmail json YAML

Updated net/libnice to 0.1.5

(wiz)

2014-03-12 10:25:47 UTC MAIN commitmail json YAML

Update to 0.1.5:

libnice 0.1.5 (2014-03-06)
==========================

API: nice_agent_recv() and nice_agent_recv_nonblocking() as an alternative to
  the nice_agent_attach_recv()
API: nice_agent_recv_messages() and nice_agent_recv_messages_nonblocking() to
  receive multiple messages at the same time
API: nice_agent_get_io_stream() to get a GIOStream in reliable mode
API: nice_agent_get_selected_socket() to extract the selected GSocket
Import Google's newer PseudoTCP code including window scaling
Improve PseudoTCP performance
Improve performance
Build fixes

(wiz)

2014-03-12 10:18:06 UTC MAIN commitmail json YAML

Updated security/libsecret to 0.18

(wiz)

2014-03-12 10:17:57 UTC MAIN commitmail json YAML

Update to 0.18:

0.18
* Mark most of unstable API as stable
* Bump Glib dependency (2.38+)
* Add secret_service_encode_dbus_secret() and decode functions
* Use TAP for testing, parallel tests, and non-recursive make
* Updated FSF's address
* Remove unstable vapi [#721429]
* Build fixes [#720087 #720244 #707452]
* Updated translations

(wiz)

2014-03-12 10:14:30 UTC MAIN commitmail json YAML

Updated devel/py-setuptools to 3.1

(wiz)

2014-03-12 10:14:19 UTC MAIN commitmail json YAML

Update to 3.1:

---
3.1
---

* Issue #161: Restore Features functionality to allow backward compatibility
  (for Features) until the uses of that functionality is sufficiently removed.

-----
3.0.2
-----

* Correct typo in previous bugfix.

-----
3.0.1
-----

* Issue #157: Restore support for Python 2.6 in bootstrap script where
  ``zipfile.ZipFile`` does not yet have support for context managers.

---
3.0
---

* Issue #125: Prevent Subversion support from creating a ~/.subversion
  directory just for checking the presence of a Subversion repository.
* Issue #12: Namespace packages are now imported lazily.  That is, the mere
  declaration of a namespace package in an egg on ``sys.path`` no longer
  causes it to be imported when ``pkg_resources`` is imported.  Note that this
  change means that all of a namespace package's ``__init__.py`` files must
  include a ``declare_namespace()`` call in order to ensure that they will be
  handled properly at runtime.  In 2.x it was possible to get away without
  including the declaration, but only at the cost of forcing namespace
  packages to be imported early, which 3.0 no longer does.
* Issue #148: When building (bdist_egg), setuptools no longer adds
  ``__init__.py`` files to namespace packages. Any packages that rely on this
  behavior will need to create ``__init__.py`` files and include the
  ``declare_namespace()``.
* Issue #7: Setuptools itself is now distributed as a zip archive in addition to
  tar archive. ez_setup.py now uses zip archive. This approach avoids the potential
  security vulnerabilities presented by use of tar archives in ez_setup.py.
  It also leverages the security features added to ZipFile.extract in Python 2.7.4.
* Issue #65: Removed deprecated Features functionality.
* Pull Request #28: Remove backport of ``_bytecode_filenames`` which is
  available in Python 2.6 and later, but also has better compatibility with
  Python 3 environments.
* Issue #156: Fix spelling of __PYVENV_LAUNCHER__ variable.

(wiz)

2014-03-12 10:13:24 UTC MAIN commitmail json YAML

Updated www/lynx to 2.8.8.2

(wiz)

2014-03-12 10:13:15 UTC MAIN commitmail json YAML

Update to 2.8.8rel2:

2014-03-09 (2.8.8rel.2)
* correct errata in test-files which cause broken links in break-out directory
  in lynx.isc.org server -TD
* amend change from 2.8.8pre.2, to ensure that MinGW libraries already
  declaring 'sleep()' will build -TD
* drop unused save/compress rules from makefile.in, because fixing umask for
  these is pointless -TD
* modify makefile.in to establish sane umask value in the "install-doc" rule
  (report by Rajeev V Pillai) -TD
* build-fix for NetBSD, whose curses library provides use_default_colors(),
  but the package turns off the keymap feature (patch by Thomas Klausner).

(wiz)

2014-03-12 10:08:55 UTC MAIN commitmail json YAML

2014-03-12 10:08:46 UTC MAIN commitmail json YAML

Update to 4.3:

This is a terse description of the new features added to bash-4.3 since
the release of bash-4.2.  As always, the manual page (doc/bash.1) is
the place to look for complete descriptions.

1.  New Features in Bash

a.  The `helptopic' completion action now maps to all the help topics, not just
    the shell builtins.

b.  The `help' builtin no longer does prefix substring matching first, so
    `help read' does not match `readonly', but will do it if exact string
    matching fails.

c.  The shell can be compiled to not display a message about processes that
    terminate due to SIGTERM.

d.  Non-interactive shells now react to the setting of checkwinsize and set
    LINES and COLUMNS after a foreground job exits.

e.  There is a new shell option, `globasciiranges', which, when set to on,
    forces globbing range comparisons to use character ordering as if they
    were run in the C locale.

f.  There is a new shell option, `direxpand', which makes filename completion
    expand variables in directory names in the way bash-4.1 did.

g.  In Posix mode, the `command' builtin does not change whether or not a
    builtin it shadows is treated as an assignment builtin.

h.  The `return' and `exit' builtins accept negative exit status arguments.

i.  The word completion code checks whether or not a filename containing a
    shell variable expands to a directory name and appends `/' to the word
    as appropriate.  The same code expands shell variables in command names
    when performing command completion.

j.  In Posix mode, it is now an error to attempt to define a shell function
    with the same name as a Posix special builtin.

k.  When compiled for strict Posix conformance, history expansion is disabled
    by default.

l.  The history expansion character (!) does not cause history expansion when
    followed by the closing quote in a double-quoted string.

m.  `complete' and its siblings compgen/compopt now takes a new `-o noquote'
    option to inhibit quoting of the completions.

n.  Setting HISTSIZE to a value less than zero causes the history list to be
    unlimited (setting it 0 zero disables the history list).

o.  Setting HISTFILESIZE to a value less than zero causes the history file size
    to be unlimited (setting it to 0 causes the history file to be truncated
    to zero size).

p.  The `read' builtin now skips NUL bytes in the input.

q.  There is a new `bind -X' option to print all key sequences bound to Unix
    commands.

r.  When in Posix mode, `read' is interruptible by a trapped signal.  After
    running the trap handler, read returns 128+signal and throws away any
    partially-read input.

s.  The command completion code skips whitespace and assignment statements
    before looking for the command name word to be completed.

t.  The build process has a new mechanism for constructing separate help files
    that better reflects the current set of compilation options.

u.  The -nt and -ot options to test now work with files with nanosecond
    timestamp resolution.

v.  The shell saves the command history in any shell for which history is
    enabled and HISTFILE is set, not just interactive shells.

w.  The shell has `nameref' variables and new -n(/+n) options to declare and
    unset to use them, and a `test -R' option to test for them.

x.  The shell now allows assigning, referencing, and unsetting elements of
    indexed arrays using negative subscripts (a[-1]=2, echo ${a[-1]}) which
    count back from the last element of the array.

y.  The {x}<word redirection feature now allows words like {array[ind]} and
    can use variables with special meanings to the shell (e.g., BASH_XTRACEFD).

z.  There is a new CHILD_MAX special shell variable; its value controls the
    number of exited child statues the shell remembers.

aa. There is a new configuration option (--enable-direxpand-default) that
    causes the `direxpand' shell option to be enabled by default.

bb. Bash does not do anything special to ensure that the file descriptor
    assigned to X in {x}<foo remains open after the block containing it
    completes.

cc. The `wait' builtin has a new `-n' option to wait for the next child to
    change status.

dd. The `printf' %(...)T format specifier now uses the current time if no
    argument is supplied.

ee. There is a new variable, BASH_COMPAT, that controls the current shell
    compatibility level.

ff. The `popd' builtin now treats additional arguments as errors.

gg. The brace expansion code now treats a failed sequence expansion as a
    simple string and will continue to expand brace terms in the remainder
    of the word.

hh. Shells started to run process substitutions now run any trap set on EXIT.

ii. The fc builtin now interprets -0 as the current command line.

jj. Completing directory names containing shell variables now adds a trailing
    slash if the expanded result is a directory.

kk. `cd' has a new `-@' option to browse a file's extended attributes on
    systems that support O_XATTR.

ll. The test/[/[[ `-v variable' binary operator now understands array
    references.

2.  New Features in Readline

a.  Readline is now more responsive to SIGHUP and other fatal signals when
    reading input from the terminal or performing word completion but no
    longer attempts to run any not-allowable functions from a signal handler
    context.

b.  There are new bindable commands to search the history for the string of
    characters between the beginning of the line and the point
    (history-substring-search-forward, history-substring-search-backward)

c.  Readline allows quoted strings as the values of variables when setting
    them with `set'.  As a side effect, trailing spaces and tabs are ignored
    when setting a string variable's value.

d.  The history library creates a backup of the history file when writing it
    and restores the backup on a write error.

e.  New application-settable variable: rl_filename_stat_hook: a function called
    with a filename before using it in a call to stat(2).  Bash uses it to
    expand shell variables so things like $HOME/Downloads have a slash
    appended.

f.  New bindable function `print-last-kbd-macro', prints the most-recently-
    defined keyboard macro in a reusable format.

g.  New user-settable variable `colored-stats', enables use of colored text
    to denote file types when displaying possible completions (colored analog
    of visible-stats).

h.  New user-settable variable `keyseq-timout', acts as an inter-character
    timeout when reading input or incremental search strings.

i.  New application-callable function: rl_clear_history. Clears the history list
    and frees all readline-associated private data.

j.  New user-settable variable, show-mode-in-prompt, adds a characters to the
    beginning of the prompt indicating the current editing mode.

k.  New application-settable variable: rl_input_available_hook; function to be
    called when readline detects there is data available on its input file
    descriptor.

l.  Readline calls an application-set event hook (rl_event_hook) after it gets
    a signal while reading input (read returns -1/EINTR but readline does not
    handle the signal immediately) to allow the application to handle or
    otherwise note it.

m.  If the user-settable variable `history-size' is set to a value less than
    0, the history list size is unlimited.

n.  New application-settable variable: rl_signal_event_hook; function that is
    called when readline is reading terminal input and read(2) is interrupted
    by a signal.  Currently not called for SIGHUP or SIGTERM.

o.  rl_change_environment: new application-settable variable that controls
    whether or not Readline modifies the environment (currently readline
    modifies only LINES and COLUMNS).

(wiz)

2014-03-12 10:04:58 UTC MAIN commitmail json YAML

Updated devel/readline to 6.3

(wiz)

2014-03-12 10:04:50 UTC MAIN commitmail json YAML

Update to 6.3:

This is a terse description of the new features added to readline-6.3 since
the release of readline-6.2.

New Features in Readline

a.  Readline is now more responsive to SIGHUP and other fatal signals when
    reading input from the terminal or performing word completion but no
    longer attempts to run any not-allowable functions from a signal handler
    context.

b.  There are new bindable commands to search the history for the string of
    characters between the beginning of the line and the point
    (history-substring-search-forward, history-substring-search-backward)

c.  Readline allows quoted strings as the values of variables when setting
    them with `set'.  As a side effect, trailing spaces and tabs are ignored
    when setting a string variable's value.

d.  The history library creates a backup of the history file when writing it
    and restores the backup on a write error.

e.  New application-settable variable: rl_filename_stat_hook: a function called
    with a filename before using it in a call to stat(2).  Bash uses it to
    expand shell variables so things like $HOME/Downloads have a slash
    appended.

f.  New bindable function `print-last-kbd-macro', prints the most-recently-
    defined keyboard macro in a reusable format.

g.  New user-settable variable `colored-stats', enables use of colored text
    to denote file types when displaying possible completions (colored analog
    of visible-stats).

h.  New user-settable variable `keyseq-timout', acts as an inter-character
    timeout when reading input or incremental search strings.

i.  New application-callable function: rl_clear_history. Clears the history list
    and frees all readline-associated private data.

j.  New user-settable variable, show-mode-in-prompt, adds a characters to the
    beginning of the prompt indicating the current editing mode.

k.  New application-settable variable: rl_input_available_hook; function to be
    called when readline detects there is data available on its input file
    descriptor.

l.  Readline calls an application-set event hook (rl_event_hook) after it gets
    a signal while reading input (read returns -1/EINTR but readline does not
    handle the signal immediately) to allow the application to handle or
    otherwise note it.

m.  If the user-settable variable `history-size' is set to a value less than
    0, the history list size is unlimited.

n.  New application-settable variable: rl_signal_event_hook; function that is
    called when readline is reading terminal input and read(2) is interrupted
    by a signal.  Currently not called for SIGHUP or SIGTERM.

(wiz)

2014-03-12 09:59:37 UTC MAIN commitmail json YAML

Updated textproc/py-lxml to 3.3.3

(wiz)

2014-03-12 09:59:28 UTC MAIN commitmail json YAML

Update to 3.3.3:

3.3.3 (2014-03-04)
==================

Bugs fixed
----------

* Crash when using Element subtypes with ``__slots__``.

Other changes
-------------

* The internal classes ``_LogEntry`` and ``_Attrib`` can no longer be
  subclassed from Python code.

3.3.2 (2014-02-26)
==================

Bugs fixed
----------

* The properties ``resolvers`` and ``version``, as well as the methods
  ``set_element_class_lookup()`` and ``makeelement()``, were lost from
  ``iterparse`` objects in 3.3.0.

* LP#1222132: instances of ``XMLSchema``, ``Schematron`` and ``RelaxNG``
  did not clear their local ``error_log`` before running a validation.

* LP#1238500: lxml.doctestcompare mixed up "expected" and "actual" in
  attribute values.

* Some file I/O tests were failing in MS-Windows due to non-portable temp
  file usage.  Initial patch by Gabi Davar.

* LP#910014: duplicate IDs in a document were not reported by DTD validation.

* LP#1185332: ``tostring(method="html")`` did not use HTML serialisation
  semantics for trailing tail text.  Initial patch by Sylvain Viollon.

* LP#1281139: ``.attrib`` value of Comments lost its mutation methods
  in 3.3.0.  Even though it is empty and immutable, it should still
  provide the same interface as that returned for Elements.

(wiz)

2014-03-12 09:51:57 UTC MAIN commitmail json YAML

2014-03-12 09:51:48 UTC MAIN commitmail json YAML

Update to 303:

303:

This release fixes a regression in validation against /etc/shells
and adds a check for paths which match /etc/shells via a symbolic
link.

302:

This release fixes several minor bugs and adds a new command-line
option to show colors as they are allocated.

(wiz)

2014-03-12 09:50:05 UTC MAIN commitmail json YAML

Updated devel/mercurial to 2.9.1

(wiz)

2014-03-12 09:49:56 UTC MAIN commitmail json YAML

Update to 2.9.1:

This is a regularly-scheduled bugfix release.

    coal: hgweb style adds extra blank line in file view (issue4136)
    hg.openpath: use url.islocal to tell if the path is local (issue3624)
    hgweb: hack around mimetypes encoding thinko (issue4160)
    hooks: only disable/re-enable demandimport when it's already enabled
    merge: add "other" file node in the merge state file
    merge: audit the right destination file when merging with dir rename
    merge: don't overwrite file untracked after remove, abort with 'untracked files'
    merge: record the "other" node in merge state
    pathencode: eliminate signed integer warnings
    pull: close peer repo on completion (issue2491) (issue2797)
    purge: avoid duplicate output for --print (issue4092)
    rebase: do not try to reactivate deleted divergent bookmark
    resolve: use "other" changeset from merge state (issue4163)
    verify: do not prevent verify repository containing hidden changesets

(wiz)

2014-03-12 09:48:38 UTC MAIN commitmail json YAML

2014-03-12 09:41:29 UTC pkgsrc-2013Q4 commitmail json YAML

2014-03-12 09:41:10 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4341 - requested by jym
security/stunnel: security update

Revisions pulled up:
- security/stunnel/Makefile                        1.86-1.87,1.89 via patch
- security/stunnel/distinfo                        1.38-1.39
- security/stunnel/patches/patch-ac                1.16

---
  Module Name: pkgsrc
  Committed By: tron
  Date: Sun Jan 26 15:51:54 UTC 2014

  Modified Files:
  pkgsrc/security/stunnel: Makefile

  Log Message:
  Fix permissions so that "etc/stunnel" belongs to the actual "root" user
  and not to the user that build the package. Bump package revision
  because of this fix.

---
  Module Name: pkgsrc
  Committed By: tron
  Date: Sun Jan 26 16:59:13 UTC 2014

  Modified Files:
  pkgsrc/security/stunnel: Makefile distinfo

  Log Message:
  Update "stunnel" package to version 4.56. Changes since 4.55:
  - Fixed a regression bug introduced in version 4.55 causing random
    crashes on several platforms, including Windows 7.
  - Fixed incorrect "stunnel -exit" process synchronisation.
  - Fixed FIPS detection with new versions of the OpenSSL library.
  - Failure to open the log file at startup is no longer ignored.

---
  Module Name: pkgsrc
  Committed By: jym
  Date: Wed Mar 12 00:24:35 UTC 2014

  Modified Files:
  pkgsrc/security/stunnel: Makefile distinfo
  pkgsrc/security/stunnel/patches: patch-ac

  Log Message:
  Update stunnel to 5.00.

  Of utmost importance: it fixes CVE 2014-0016.

  Thanks to jgw (Jeff W) _AT_ sdf.org for working on the same patch
  independently.

  In before the freeze! Changelog follows.

      Security bugfixes
          Added PRNG state update in fork threading (CVE-2014-0016).
      New global configuration file defaults
          Default "fips" option value is now "no", as FIPS mode is only helpful for compliance, and never for actual security.
          Default "pid" is now "", i.e. not to create a pid file at startup.
      New service-level configuration file defaults
          Default "ciphers" updated to "HIGH:MEDIUM:+3DES:+DH:!aNULL:!SSLv2" due to AlFBPPS attack and bad performance of DH ciphersuites.
          Default "libwrap" setting is now "no" to improve performance.
      New features
          OpenSSL DLLs updated to version 1.0.1f.
          zlib DLL updated to version 1.2.8.
          autoconf scripts upgraded to version 2.69.
          TLS 1.1 and TLS 1.2 are now allowed in the FIPS mode.
          New service-level option "redirect" to redirect SSL client connections on authentication failures instead of rejecting them.
          New global "engineDefault" configuration file option to control which OpenSSL tasks are delegated to the current engine. Available tasks: ALL, RSA, DSA, ECDH, ECDSA, DH, RAND, CIPHERS, DIGESTS, PKEY, PKEY_CRYPTO, PKEY_ASN1.
          New service-level configuration file option "engineId" to select the engine by identifier, e.g. "engineId = capi".
          New global configuration file option "log" to control whether to append (the default), or to overwrite log file while (re)opening.
          Different taskbar icon colors to indicate the service state.
          New global configuration file options "iconIdle", "iconActive", and "iconError" to select status icon on GUI taskbar.
          Removed the limit of 63 stunnel.conf sections on Win32 platform.
          Installation of a sample certificate was moved to a separate "cert" target in order to allow unattended (e.g. scripted) installations.
          Reduced length of the logged thread identifier. It is still based on the OS thread ID, and thus not unique over long periods of time.
          Improved readability of error messages printed when stunnel refuses to start due to a critical error.
      Bugfixes
          LD_PRELOAD Solaris compatibility bug fixed (thx to Norm Jacobs).
          CRYPTO_NUM_LOCKS replaced with CRYPTO_num_locks() to improve binary compatibility with diverse builds of OpenSSL (thx to Norm Jacobs).
          Corrected round-robin failover behavior under heavy load.
          Numerous fixes in the engine support code.
          On Win32 platform .rnd file moved from c:\ to the stunnel folder.

(tron)

2014-03-12 09:36:38 UTC MAIN commitmail json YAML

Updated finance/gnucash to 2.6.2

(wiz)

2014-03-12 09:36:28 UTC MAIN commitmail json YAML

Update to 2.6.2:

2.6.2 - 2 March 2014
      The GnuCash development team proudly announces GnuCash 2.6.1,
      the latest stable release of the GnuCash Free Accounting
      Software.

      This is a maintenance release; there are no new features, but
      Mike Alexander has extensively reworked the Advanced Portfolio
      Report.

      Mike Alexander has completed his extensive reworking of the
      Advanced Portfolio Report.

      Bugs Fixed:
      497831 - Can't change the date of a transaction with certain locales
      721472 - Fix Reconcile description column.
      721677 - Customer Summary does not include inactive customers
      722123 - Zero price entry added to price database on stock purchase
      722903 - Poor performance of account hierarchy, budgets, reconcile
                window,...
      723051 Implement gncCustomerNextID in Python bindings.
      723373 -  Don't create any sx in the since-last-run dialog if this is
              a read-only file
      723644 - Make sure that gnc_search_invoice_on_id() returns the
              correct type of object.
      724211 - Can't select march 6 date on register
      724426 - Errors in account plan
      724427 - New account plan for Sweden
      724578 - Problems clearing incompletely paid invoices
      724753 - Saved Multicolumn Report Error
      725131 - Adding Payments to Fancy Invoice

      Translations Updated: Catalan, Italian

(wiz)

2014-03-12 09:20:15 UTC MAIN commitmail json YAML

Updated sysutils/cdrtools to 3.01alpha23

(wiz)

2014-03-12 09:20:06 UTC MAIN commitmail json YAML

Update to 3.01a23:

All:

- Typo fix in README.compile for the mail address.
Thanks to Dennis Clarke for the catch!

Libschily:

- libschily/sleep.c and libschily/usleep.c have been modified to work
with MinGW.

Cdrecord:

- The timediff function now in addition prints the time diff in
hours : minutes : seconds . thausands of a second.

Thanks to a hint from Donald R Laster Jr from Slackware.

Cdda2wav (Maintained/enhanced by J�rg Schilling, originated by Heiko Ei゚feldt heiko@hexco.de):

- Cdda2wav no longer includes the new paranoia mode "c2check" in the macro
"proof". This has been done because of a report from G駻aud Meyer <graud@gmx.com>
that gives hints that the drive:
Type: ROM, Vendor 'TSSTcorp' Model 'CDDVDW SH-222AB ' Revision 'SB00' MMC+CDDA
does not handle hidden tracks when "c2check" is active.

Mkisofs (Maintained/enhanced by J�rg Schilling since 1997, originated by Eric Youngdale):

- mkisofs was slightly modified to reduce CPU time requirements.
It now reads/writes in 64kBytes chunks instead of stdio buffer
size which is typically 8 kB.

- Fixed a typo in the mkisofs man page.
Thanks to a hint from Donald R Laster Jr from Slackware.

- Mkisofs now in addition prints "-iso-level 3 or more required"
in case that a large file was skipped because of the current mkisofs settings.

Thanks to a hint from Donald R Laster Jr from Slackware.

- A problem in isoinfo has been fixed.
This problem caused "isoinfo -R -find -ls" to print Jan 1 1970 timestamps
in case that Rock Ridge was not present.

(wiz)

2014-03-12 09:18:02 UTC MAIN commitmail json YAML

Updated graphics/png to 1.6.10

(wiz)

2014-03-12 09:17:52 UTC MAIN commitmail json YAML

Update to 1.6.10:

Version 1.6.10rc02 [February 28, 2014]
  Removed unreachable return statement after png_chunk_error()
    in pngrutil.c

Version 1.6.10rc03 [March 4, 2014]
  Un-deprecated png_data_freer().

Version 1.6.10 [March 6, 2014]

(wiz)

2014-03-12 08:38:47 UTC MAIN commitmail json YAML

resolve evaluate-undefined-variable issue for old bmake.

(obache)

2014-03-12 07:23:25 UTC MAIN commitmail json YAML

note ircII 20131230nb1 update.

(mrg)

2014-03-12 07:22:34 UTC MAIN commitmail json YAML

2014-03-12 01:38:15 UTC MAIN commitmail json YAML

2014-03-12 01:37:49 UTC MAIN commitmail json YAML

Added devel/py-minimock version 1.2.8

(rodent)

2014-03-12 01:37:37 UTC MAIN commitmail json YAML

Import py27-minimock-1.2.8 as devel/py-minimock.

minimock is a simple library for doing Mock objects with doctest. When using
doctest, mock objects can be very simple.

(rodent)

2014-03-12 01:35:52 UTC MAIN commitmail json YAML

2014-03-12 01:27:55 UTC MAIN commitmail json YAML

+py-asteroid - packaged originally in pkgsrc-wip by:
kamel.derouiche@gmail.com
+py-pylint - packaged originally in pkgsrc-wip by:
helgoman@users.sourceforge.net

(rodent)

2014-03-12 01:26:16 UTC MAIN commitmail json YAML

Added devel/py-pylint version 1.1.0

(rodent)

2014-03-12 01:26:03 UTC MAIN commitmail json YAML

Import py27-pylint-1.1.0 as devel/py-pylint.

Pylint is a Python source code analyzer which looks for programming
errors, helps enforcing a coding standard and sniffs for some code
smells (as defined in Martin Fowler's Refactoring book).
Pylint can be seen as another PyChecker since nearly all tests you
can do with PyChecker can also be done with Pylint. However, Pylint
offers some more features, like checking length of lines of code,
checking if variable names are well-formed according to your coding
standard, or checking if declared interfaces are truly implemented,
and much more. . Additionally, it is possible to write plugins to
add your own checks.

(rodent)

2014-03-12 01:06:16 UTC MAIN commitmail json YAML

Added devel/py-astroid version 1.0.1

(rodent)

2014-03-12 01:06:05 UTC MAIN commitmail json YAML

Import py27-astroid-1.0.1 as devel/py-astroid.

The aim of this module is to provide a common base representation of
python source code for projects such as pychecker, pyreverse,
pylint... Well, actually the development of this library is essentially
governed by pylint's needs. It used to be called logilab-astng

(rodent)

2014-03-12 00:27:07 UTC MAIN commitmail json YAML

Updated security/stunnel to 5.00.

(jym)

2014-03-12 00:24:35 UTC MAIN commitmail json YAML

Update stunnel to 5.00.

Of utmost importance: it fixes CVE 2014-0016.

Thanks to jgw (Jeff W) _AT_ sdf.org for working on the same patch
independently.

In before the freeze! Changelog follows.

    Security bugfixes
        Added PRNG state update in fork threading (CVE-2014-0016).
    New global configuration file defaults
        Default "fips" option value is now "no", as FIPS mode is only helpful for compliance, and never for actual security.
        Default "pid" is now "", i.e. not to create a pid file at startup.
    New service-level configuration file defaults
        Default "ciphers" updated to "HIGH:MEDIUM:+3DES:+DH:!aNULL:!SSLv2" due to AlFBPPS attack and bad performance of DH ciphersuites.
        Default "libwrap" setting is now "no" to improve performance.
    New features
        OpenSSL DLLs updated to version 1.0.1f.
        zlib DLL updated to version 1.2.8.
        autoconf scripts upgraded to version 2.69.
        TLS 1.1 and TLS 1.2 are now allowed in the FIPS mode.
        New service-level option "redirect" to redirect SSL client connections on authentication failures instead of rejecting them.
        New global "engineDefault" configuration file option to control which OpenSSL tasks are delegated to the current engine. Available tasks: ALL, RSA, DSA, ECDH, ECDSA, DH, RAND, CIPHERS, DIGESTS, PKEY, PKEY_CRYPTO, PKEY_ASN1.
        New service-level configuration file option "engineId" to select the engine by identifier, e.g. "engineId = capi".
        New global configuration file option "log" to control whether to append (the default), or to overwrite log file while (re)opening.
        Different taskbar icon colors to indicate the service state.
        New global configuration file options "iconIdle", "iconActive", and "iconError" to select status icon on GUI taskbar.
        Removed the limit of 63 stunnel.conf sections on Win32 platform.
        Installation of a sample certificate was moved to a separate "cert" target in order to allow unattended (e.g. scripted) installations.
        Reduced length of the logged thread identifier. It is still based on the OS thread ID, and thus not unique over long periods of time.
        Improved readability of error messages printed when stunnel refuses to start due to a critical error.
    Bugfixes
        LD_PRELOAD Solaris compatibility bug fixed (thx to Norm Jacobs).
        CRYPTO_NUM_LOCKS replaced with CRYPTO_num_locks() to improve binary compatibility with diverse builds of OpenSSL (thx to Norm Jacobs).
        Corrected round-robin failover behavior under heavy load.
        Numerous fixes in the engine support code.
        On Win32 platform .rnd file moved from c:\ to the stunnel folder.

(jym)

2014-03-12 00:14:29 UTC MAIN commitmail json YAML

Rototill makefile without changing binary package.

Upstream does not have stable naming or location conventions;
sometimes files are in subdirectories, and sometimes not.  Sometimes
files even have spaces in their names.

To ease coping with this chaos, define more variables that can be
adjusted by the packager.  (Really, this commit is to capture partial
work before giving up for now on updating to 8.3.)

(gdt)

2014-03-11 23:51:36 UTC MAIN commitmail json YAML

Updated geography/viking to 1.5

(gdt)

2014-03-11 23:50:38 UTC MAIN commitmail json YAML

Update to 1.5.

Viking 1.5 (2013-10-13)
New features since 1.4.2
* Startup preferences for ease of use.
* Multi layer/track statistics.
* Multi layer/track or waypoint detailed lists.
* Control sorting of layers and quick show/hide all options.
* Configurable layer defaults.
* Optimizations when loading and drawing large numbers of tracks.
* Allow higher zoom levels up to 1/32 (OSM z22 equivalent but maps only requested up to z19).
* Retain internal options across sessions.
* Selectable online router service provider (now including OSRM)
* 'Via' points online route refining.
* Download a file directly from an URL.
* Datasource acquiring files from URLs related to the current view.
* Support timestamps (read only) in waypoints.
* Support naming trackpoints.
* Request downloading a region of maps over multiple zoom levels.
* Support Compressed My OSM Traces files (requires libbz2 and libmagic).
* Support opening files drag and drop on to the viewport.
* Support relative paths in Viking files.
* Add support for OSM Humanitarian (HOT) Style Map.
* Advanced preferences.
* Optional track labelling on the viewport.
* Translations for the Basque language.
* Improved Help Manual.
* Many internal improvements.

Fixes since 1.4.2
* Fix crashing if attempting to Extend a Route via the Route Finder when the route has no points.

(gdt)

2014-03-11 23:42:12 UTC MAIN commitmail json YAML

The newest nawk version is 20121220.  Note that the archive site
is moved to http://www.cs.princeton.edu/~bwk/btl.mirror/

(enami)

2014-03-11 23:27:40 UTC MAIN commitmail json YAML

2014-03-11 23:23:01 UTC MAIN commitmail json YAML

Revert rev. 1.5 and 1.6
The change introduced in rev. 1.5 disables portability check.

(ryoon)

2014-03-11 22:11:45 UTC MAIN commitmail json YAML

Remove lib/mono/2.0/mcs.exe.so.
Reported crufty by Iain Morgan <Iain.Morgan@nasa.gov> on pkgsrc-users.

(wiz)

2014-03-11 21:32:11 UTC MAIN commitmail json YAML

Fix "illegal reference to local variable word" error with lang/nawk
under Debian GNU/Linux 7.4.
lang/nawk's length(array) does not work as expected. So length(array) make
array as usual variable.

(ryoon)

2014-03-11 20:17:03 UTC MAIN commitmail json YAML

Updated math/maxima to 5.32.1

(ryoon)

2014-03-11 20:16:32 UTC MAIN commitmail json YAML

Upcate to 5.32.1

Changelog:
  Maxima 5.32 change log

  Changes not backward compatible:

* share function graph2d: removed in favor of plot2d

  New items in core:

* function limit: limits for fresnel_c and fresnel_s
* function plot2d: adaptive plotting for parametric plots
* functions round, truncate: distribute over lists and other aggregate types
* function zn_characteristic_factors: Shanks characteristic factors

  New items in share:

* new package smath: glue code for SMath Studio (notebook interface)
* new package logic: some functions for Boolean expressions
* package lapack: new function zheev (eigenvalues of Hermitian matrix)

  Changes in core:

* function labels: make 'labels' an ordinary function (not argument-quoting)
* plotting: more general color specification
* plotting: rework plot options machinery
* plotting: introduce some new options

  Other changes:

* Build and install mgnuplot.exe under windows

  Bug fixes:

2668 Bigfloat Gamma Inaccurate for Small Inputs
2666 plotdf ignores first of [x, ...] or [y, ...] if there are no other options
2662 Maxima manual adjust
2660 lapack puts binary files in binary/binary-$foo/share/lapack/binary-$foo/lapack
2659 bug_report() directions for creating ticket need updating
2649 Correction for $matrix evaluation
2639 limit asks about internal variable
2634 zgeev does not operate on real matrices
2633 ev(integrate,numer) gives strange result
2630 inverse_jacobi_cn(-2.0, 3.0) generates an error
2629 elliptic_kc(3.0) not accurate
2628 fourier elimination on equality
2624 Erroneous limit result
2615 Numeric evaluation of inverse Jacobi elliptic functions is wrong for some inputs
2282 Problem in LISP with times function in sym

unnumbered bugs:

mailing list 2013-09-26: transcendental functions and compilation
mailing list 2007-04-02: fixes a bug in plot2d-discrete
GCL bug #40646 fixed (problem actually in Maxima)
workaround GCL bug #40154 (some float literals parsed incorrectly)
ensure that 'sign' does not make any changes to assume database.
fix Postscript plotting on windows
fix limit(-(3*n^2 + 1)*(-1)^n/sqrt(n^5 + 8*n^3 + 8),n,inf);
fix bug in ldisplay and ldisp: need to display %t label
fix: inv_mod(0,1) should return false
fix cyclic-p, gf-eval, gf-irr-p
fix gf-cminus-b, gf-prim-p
fix bug in computing (.75b0+%i*1.5b0)^(%i/4)
fix "describe" returning wrong entry with texinfo version 5
plots using the dumb gnuplot terminal were not being displayed in the terminal when the gnuplot_pipes is used

  Maxima 5.31 change log

  Changes in core:

* Galois fields: revision, introduction of extension fields
* inverse_jacobi_sn: improve accuracy
* Bessel functions: integral of bessel_i, bessel_j of arbitrary order
* matrix functions: revise ModeMatrix, mat_function, dispJordan, diag, JF
* signum: do not declare signum real- or integer-valued
* carg: declare carg real-valued
* parser: add L, l, W, and w to list of exponent marker characters

  Changes in share:

* package stringproc: new functions readchar, md5sum, base64

  Other changes:

* documentation: minor changes to make Texinfo 5 happy
* build system: changes to make Maxima build correctly on Windows

  Bug fixes:

* 2622 base64 type warnings
* 2619 Function inverse_erf - error in numerical evaluation
* 2612 known_units() broken
* 2608 quad_qags(x,x) generates a lisp error
* 2607 lbfgs documentation is incomplete
* 2604 fft.dem is out of date
* 2603 fft documentation
* 2602 lu_factor regression
* 2599 cl-info error handling
* 2597 logcontract and subscripted log
* 2594 Incorrect integration of product of cosines
* 2591 risch gives Lisp error for sinh expression
* 2583 sign error for integrate(x^(8*%i-1),x);
* 2570 Make acos(cos(x)) simplify to x when on correct interval
* 2569 translate rat(1,x) and rat([1]) incorrect
* 2536 Lisp error in limit: \
* 2501 %pi/8 is definitely not an integer
* 2475 limit(x^(mu/x^g),x,inf) --> error

unnumbered bugs:

* mailing list 2013-05-22: "array-lambda error with 5.30.0"
* mailing list 2013-05-07: "defrule regression compare to version 5.29.1"
* fix rk() when the independent variable's initial value is nonzero
* fix bug in asksign
* fix wrong noun form returned for jacobi_nc(elliptic_kc(m)/n,m)

  Maxima 5.30 change log

  Changes not backward compatible:

* function gf_set: renamed to gf_set_data

  Other changes:

* function bfzeta: extend to complex plane
* function gf_set: return a structure
* function gf_exp: allow negative exponents
* functions plot2d, plot3d: accept subscripted variables as independent variables
* package dynamics: revise function rk
* package ezunits: new functions expand_dimensional, solve_dimensional, other changes
* package linearalgebra(??): revise mat_function
* ??: revise functions jordan, JF, diag

  Bug fixes:

??: limit((log(y+h)-log(y))/h,h,0,plus)
2561: limit(log(x^2),x,-20) gives 2*log(-20)
2559:
2557: abs_integrate leaks assumptions into enclosing context
2547:
2542:
2541: (FIXED??)
2540:
2531: Integration with inf
2529: limit(x^n,x,minf) gives minf for n positive
2528: imagpart etc. wrong when var declared real and complex
2527: exponent too big in limit
2517:
2509: fresnel_s incorrect for small values
2496:
2458: to_poly_solve gives a wrong solution for cos(x)=sin(3x)
2449: cabs(expr) fails when expr is 0
2442: arrayinfo gives a Lisp error
2441:
2412: Problems with integral (x/(exp(x)+1),x,0,inf)
2362:
2350:
2279:
2219: tex2ooo literals format
  472: ctrl-D causes Maxima debugger to loop endlessly (clisp only)

unnumbered bugs:

mailing list circa 2013-03-30: load_pathname unset with maxima -b
mailing list 2013-02-21: gamma_incomplete_regularized(a,0) returning the wrong noun form
mailing list 2012-12-23: "let(simp) behaves different when loaded from batch file"
mailing list 2012-12-14: "Maxima won,t pull out a constant from a linear function"
bern() with zerobern:false
clean up facts introduced by sign functions

(ryoon)

2014-03-11 17:41:45 UTC MAIN commitmail json YAML

Add patch to avoid exception in git browser.

The underlying issue seems to be a race; if the spawned git log
command finishes before trac kills it, the os.kill() throws an
exception which is not caught.  Simply catch and ignore the exception.
I sent the patch to trac-devel@.

(gdt)

2014-03-11 16:25:24 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup tickets #4338, #4339 and #4340.

(tron)

2014-03-11 16:24:53 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4340 - requested by taca
lang/php54: security update
lang/php55: security update

Revisions pulled up:
- lang/php/phpversion.mk                                        1.53-1.58
- lang/php54/Makefile                                          1.17-1.18
- lang/php54/distinfo                                          1.32-1.34
- lang/php54/patches/patch-configure                            1.5
- lang/php54/patches/patch-ext_date_lib_parse__iso__intervals.c deleted
- lang/php54/patches/patch-ext_date_lib_parse__iso__intervals.re deleted
- lang/php54/patches/patch-php.ini-development                  1.2
- lang/php54/patches/patch-php.ini-production                  1.2
- lang/php55/Makefile                                          1.8-1.9
- lang/php55/distinfo                                          1.13-1.15
- lang/php55/patches/patch-configure                            1.4
- lang/php55/patches/patch-ext_date_lib_parse__iso__intervals.c deleted
- lang/php55/patches/patch-ext_date_lib_parse__iso__intervals.re deleted
- lang/php55/patches/patch-ext_sockets_sockaddr__conv.c        deleted
- lang/php55/patches/patch-makedist                            1.2
- lang/php55/patches/patch-php.ini-development                  1.3
- lang/php55/patches/patch-php.ini-production                  1.3

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Jan 11 17:03:57 UTC 2014

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php54: distinfo
  pkgsrc/lang/php54/patches: patch-configure patch-php.ini-development
      patch-php.ini-production
  Removed Files:
  pkgsrc/lang/php54/patches: patch-ext_date_lib_parse__iso__intervals.c
      patch-ext_date_lib_parse__iso__intervals.re

  Log Message:
  Update php to 5.4.24.

  09 Jan 2014, PHP 5.4.24

  - Core:
    . Added validation of class names in the autoload process. (Dmitry)
    . Fixed invalid C code in zend_strtod.c. (Lior Kaplan)
    . Fixed bug #61645 (fopen and O_NONBLOCK). (Mike)

  - Date:
    . Fixed bug #66060 (Heap buffer over-read in DateInterval). (Remi)
    . Fixed bug #63391 (Incorrect/inconsistent day of week prior to the year
      1600). (Derick, T. Carter)
    . Fixed bug #61599 (Wrong Day of Week). (Derick, T. Carter)

  - DOM:
    . Fixed bug #65196 (Passing DOMDocumentFragment to DOMDocument::saveHTML()
      Produces invalid Markup). (Mike)

  - Exif:
    . Fixed bug #65873 (Integer overflow in exif_read_data()). (Stas)

  - Filter:
    . Fixed bug #66229 (128.0.0.0/16 isn't reserved any longer). (Adam)

  - GD:
    . Fixed bug #64405 (Use freetype-config for determining freetype2 dir(s)).
      (Adam)

  - PDO_odbc:
    . Fixed bug #66311 (Stack smashing protection kills PDO/ODBC queries).
      (michael at orlitzky dot com)

  - SNMP:
    . Fixed SNMP_ERR_TOOBIG handling for bulk walk operations. (Boris Lytochkin)

  - XSL
    . Fixed bug #49634 (Segfault throwing an exception in a XSL registered
      function). (Mike)

  - ZIP:
    . Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real). (Remi)

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Jan 11 17:05:09 UTC 2014

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php55: distinfo
  pkgsrc/lang/php55/patches: patch-configure patch-php.ini-development
      patch-php.ini-production
  Removed Files:
  pkgsrc/lang/php55/patches: patch-ext_date_lib_parse__iso__intervals.c
      patch-ext_date_lib_parse__iso__intervals.re
      patch-ext_sockets_sockaddr__conv.c

  Log Message:
  Update php55 to 5.5.8.

  9 Jan 2014, PHP 5.5.8

  - Core:
    . Disallowed JMP into a finally block. (Laruence)
    . Added validation of class names in the autoload process. (Dmitry)
    . Fixed invalid C code in zend_strtod.c. (Lior Kaplan)
    . Fixed bug #66041 (list() fails to unpack yielded ArrayAccess object).
      (Nikita)
    . Fixed bug #65764 (generators/throw_rethrow FAIL with
      ZEND_COMPILE_EXTENDED_INFO). (Nikita)
    . Fixed bug #61645 (fopen and O_NONBLOCK). (Mike)
    . Fixed bug #66218 (zend_register_functions breaks reflection). (Remi)

  - Date:
    . Fixed bug #66060 (Heap buffer over-read in DateInterval). (Remi)
    . Fixed bug #65768 (DateTimeImmutable::diff does not work). (Nikita Nefedov)

  - DOM:
    . Fixed bug #65196 (Passing DOMDocumentFragment to DOMDocument::saveHTML()
      Produces invalid Markup). (Mike)

  - Exif:
    . Fixed bug #65873 (Integer overflow in exif_read_data()). (Stas)

  - Filter:
    . Fixed bug #66229 (128.0.0.0/16 isn't reserved any longer). (Adam)

  - GD:
    . Fixed bug #64405 (Use freetype-config for determining freetype2 dir(s)).
      (Adam)

  - PDO_odbc:
    . Fixed bug #66311 (Stack smashing protection kills PDO/ODBC queries).
      (michael at orlitzky dot com)

  - MySQLi:
    . Fixed bug #65486 (mysqli_poll() is broken on win x64). (Anatol)

  - OPCache:
    . Fixed reavlidate_path=1 behavior to avoid caching of symlinks values.
      (Dmitry)
    . Fixed Issue #140: "opcache.enable_file_override" doesn't respect
      "opcache.revalidate_freq". (Dmitry).

  - SNMP:
    . Fixed SNMP_ERR_TOOBIG handling for bulk walk operations. (Boris Lytochkin)

  - SOAP
    . Fixed bug #66112 (Use after free condition in SOAP extension).
      (martin dot koegler at brz dot gv dot at)

  - Sockets:
    . Fixed bug #65923 (ext/socket assumes AI_V4MAPPED is defined). (Felipe)

  - XSL
    . Fixed bug #49634 (Segfault throwing an exception in a XSL registered
      function). (Mike)

  - ZIP:
    . Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real). (Remi)

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Feb  7 15:35:05 UTC 2014

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php55: distinfo
  pkgsrc/lang/php55/patches: patch-makedist

  Log Message:
  Update php55 to 5.5.9 (PHP 5.5.9).

  06 Feb 2014, PHP 5.5.9

  - Core:
    . Fixed bug #66509 (copy() arginfo has changed starting from 5.4). (willfitch)

  - GD:
    . Fixed bug #66356 (Heap Overflow Vulnerability in imagecrop()).
      (Laruence, Remi)

  - OPCache:
    . Fixed bug #66474 (Optimizer bug in constant string to boolean conversion).
      (Dmitry)
    . Fixed bug #66461 (PHP crashes if opcache.interned_strings_buffer=0).
      (Dmitry)
    . Fixed bug #66298 (ext/opcache/Optimizer/zend_optimizer.c has dos-style
      ^M as lineend). (Laruence)

  - PDO_pgsql:
    . Fixed bug #62479 (PDO-psql cannot connect if password contains
  spaces) (willfitch, iliaa)

  - Readline
    . Fixed Bug #66412 (readline_clear_history() with libedit causes segfault after
      #65714). (Remi)

  - Session
    . Fixed bug #66469 (Session module is sending multiple set-cookie headers when
      session.use_strict_mode=1) (Yasuo)
    . Fixed bug #66481 (Segfaults on session_name()).
      (cmcdermottroe at engineyard dot com, Yasuo)

  - Standard
    . Fixed bug #66395 (basename function doesn't remove drive letter). (Anatol)

  - Sockets:
    . Fixed bug #66381 (__ss_family was changed on AIX 5.3). (Felipe)

  - Zend Engine
    . Fixed bug #66009 (Failed compilation of PHP extension with C++ std
      library using VS 2012). (Anatol)

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Feb  7 15:36:07 UTC 2014

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php54: distinfo

  Log Message:
  Update php54 to 5.4.25.

  06 Feb 2014, PHP 5.4.25

  - Core:
    . Fixed bug #66286 (Incorrect object comparison with inheritance). (Nikita)
    . Fixed bug #66509 (copy() arginfo has changed starting from 5.4).
      (Will Fitch)

  - mysqlnd
    . Fixed bug #66283 (Segmentation fault after memory_limit). (Johannes)

  - PDO_pgsql:
    . Fixed bug #62479 (PDO-psql cannot connect if password contains spaces).
      (Will Fitch, Ilia)

  - Session:
    . Fixed bug #66481 (Calls to session_name() segfault when session.name is
      null). (Laruence)

---
  Module Name: pkgsrc
  Committed By: tron
  Date: Wed Feb 12 23:18:57 UTC 2014

  Modified Files:
  pkgsrc/archivers/ark: Makefile
  pkgsrc/archivers/dar: Makefile
  pkgsrc/archivers/libarchive: Makefile
  pkgsrc/archivers/libcomprex: Makefile buildlink3.mk
  pkgsrc/archivers/php-zlib: Makefile
  pkgsrc/audio/amarok: Makefile
  pkgsrc/audio/amarok-kde3: Makefile
  pkgsrc/audio/ario: Makefile
  pkgsrc/audio/audacious-plugins: Makefile
  pkgsrc/audio/bmp: Makefile
  pkgsrc/audio/bmp-esound: Makefile
  pkgsrc/audio/bmp-scrobbler: Makefile
  pkgsrc/audio/bsl: Makefile
  pkgsrc/audio/buzztard: Makefile
  pkgsrc/audio/flactag: Makefile
  pkgsrc/audio/gbemol: Makefile
  pkgsrc/audio/gimmix: Makefile
  pkgsrc/audio/gkrellm-volume: Makefile
  pkgsrc/audio/glyr: Makefile
  pkgsrc/audio/gnome-vfs-cdda: Makefile
  pkgsrc/audio/herrie: Makefile
  pkgsrc/audio/hydrogen: Makefile
  pkgsrc/audio/icecast: Makefile
  pkgsrc/audio/jack-rack: Makefile
  pkgsrc/audio/kid3: Makefile
  pkgsrc/audio/liblastfm: Makefile buildlink3.mk
  pkgsrc/audio/libmusicbrainz: Makefile buildlink3.mk
  pkgsrc/audio/libmusicbrainz5: Makefile buildlink3.mk
  pkgsrc/audio/libofa: Makefile
  pkgsrc/audio/libtunepimp: Makefile buildlink3.mk
  pkgsrc/audio/liteamp: Makefile
  pkgsrc/audio/lmms: Makefile
  pkgsrc/audio/mad123: Makefile
  pkgsrc/audio/moc: Makefile
  pkgsrc/audio/moc-devel: Makefile
  pkgsrc/audio/mp3diags: Makefile
  pkgsrc/audio/mp3splt-gtk: Makefile
  pkgsrc/audio/mpdas: Makefile
  pkgsrc/audio/musicpd: Makefile
  pkgsrc/audio/pulseaudio: Makefile
  pkgsrc/audio/qjackctl: Makefile
  pkgsrc/audio/rhythmbox: Makefile
  pkgsrc/audio/rtunes: Makefile
  pkgsrc/audio/sound-juicer: Makefile
  pkgsrc/audio/streamtuner: Makefile buildlink3.mk
  pkgsrc/audio/tremor-tools: Makefile
  pkgsrc/audio/vorbis-tools: Makefile
  pkgsrc/benchmarks/dnsperf: Makefile
  pkgsrc/benchmarks/postal: Makefile
  pkgsrc/cad/librecad: Makefile
  pkgsrc/cad/openscad: Makefile
  pkgsrc/chat/atheme: Makefile
  pkgsrc/chat/bitchx: Makefile
  pkgsrc/chat/bnc: Makefile
  pkgsrc/chat/centerim: Makefile
  pkgsrc/chat/climm: Makefile
  pkgsrc/chat/dircproxy: Makefile
  pkgsrc/chat/ejabberd: Makefile
  pkgsrc/chat/ekg: Makefile buildlink3.mk
  pkgsrc/chat/empathy: Makefile
  pkgsrc/chat/epic4: Makefile
  pkgsrc/chat/gale: Makefile buildlink3.mk
  pkgsrc/chat/gg2: Makefile
  pkgsrc/chat/gloox: Makefile
  pkgsrc/chat/gnomeicu: Makefile
  pkgsrc/chat/gossip: Makefile
  pkgsrc/chat/gtmess: Makefile
  pkgsrc/chat/inspircd: Makefile
  pkgsrc/chat/inspircd12: Makefile
  pkgsrc/chat/ircd-hybrid: Makefile
  pkgsrc/chat/irssi: Makefile
  pkgsrc/chat/jabberd: Makefile buildlink3.mk
  pkgsrc/chat/jabberd2: Makefile
  pkgsrc/chat/kadu: Makefile
  pkgsrc/chat/kmess: Makefile
  pkgsrc/chat/konversation: Makefile
  pkgsrc/chat/konversation-kde3: Makefile
  pkgsrc/chat/libmsn: Makefile buildlink3.mk
  pkgsrc/chat/libpurple: Makefile
  pkgsrc/chat/loudmouth: Makefile
  pkgsrc/chat/mcabber: Makefile
  pkgsrc/chat/prosody: Makefile
  pkgsrc/chat/psi: Makefile
  pkgsrc/chat/scrollz: Makefile
  pkgsrc/chat/spectrum: Makefile
  pkgsrc/chat/telepathy-gabble: Makefile
  pkgsrc/chat/telepathy-idle: Makefile
  pkgsrc/chat/unrealircd: Makefile
  pkgsrc/chat/weechat: Makefile
  pkgsrc/chat/xchat: Makefile
  pkgsrc/comms/asterisk: Makefile
  pkgsrc/comms/asterisk10: Makefile
  pkgsrc/comms/asterisk18: Makefile
  pkgsrc/comms/conserver8: Makefile
  pkgsrc/comms/deforaos-phone: Makefile
  pkgsrc/comms/gammu: Makefile
  pkgsrc/comms/gnome-pilot: Makefile buildlink3.mk
  pkgsrc/comms/jpilot: Makefile
  pkgsrc/comms/kermit: Makefile
  pkgsrc/comms/libopensync-plugin-kdepim: Makefile
  pkgsrc/converters/rss2html: Makefile
  pkgsrc/databases/couchdb: Makefile
  pkgsrc/databases/freetds: Makefile buildlink3.mk
  pkgsrc/databases/gq: Makefile
  pkgsrc/databases/gramps3: Makefile
  pkgsrc/databases/idzebra: Makefile buildlink3.mk
  pkgsrc/databases/kmysqladmin: Makefile
  pkgsrc/databases/krecipes: Makefile
  pkgsrc/databases/ldapvi: Makefile
  pkgsrc/databases/libcassandra: Makefile
  pkgsrc/databases/libgda: Makefile
  pkgsrc/databases/libgda-mysql: Makefile
  pkgsrc/databases/libgda-postgres: Makefile
  pkgsrc/databases/mysql-workbench: Makefile
  pkgsrc/databases/mysql51-client: Makefile buildlink3.mk
  pkgsrc/databases/mysql51-server: Makefile buildlink3.mk
  pkgsrc/databases/mysql55-client: Makefile buildlink3.mk
  pkgsrc/databases/mysql55-server: Makefile
  pkgsrc/databases/mysql56-client: Makefile buildlink3.mk
  pkgsrc/databases/mysql56-server: Makefile
  pkgsrc/databases/nss_ldap: Makefile
  pkgsrc/databases/odbc-postgresql: Makefile
  pkgsrc/databases/openldap: Makefile
  pkgsrc/databases/openldap-client: Makefile buildlink3.mk
  pkgsrc/databases/openldap-cloak: Makefile
  pkgsrc/databases/openldap-nops: Makefile
  pkgsrc/databases/openldap-server: Makefile
  pkgsrc/databases/openldap-smbk5pwd: Makefile
  pkgsrc/databases/p5-DBD-Sybase: Makefile
  pkgsrc/databases/p5-sybperl: Makefile
  pkgsrc/databases/pgadmin3: Makefile
  pkgsrc/databases/pgbouncer: Makefile
  pkgsrc/databases/php-ldap: Makefile
  pkgsrc/databases/php-mssql: Makefile
  pkgsrc/databases/poco-data: Makefile buildlink3.mk
  pkgsrc/databases/poco-data-mysql: Makefile buildlink3.mk
  pkgsrc/databases/poco-data-odbc: Makefile buildlink3.mk
  pkgsrc/databases/poco-data-sqlite: Makefile buildlink3.mk
  pkgsrc/databases/postgresql-uuid: Makefile.common
  pkgsrc/databases/postgresql84: Makefile
  pkgsrc/databases/postgresql84-adminpack: Makefile
  pkgsrc/databases/postgresql84-client: Makefile buildlink3.mk
  pkgsrc/databases/postgresql84-dblink: Makefile
  pkgsrc/databases/postgresql84-pgcrypto: Makefile
  pkgsrc/databases/postgresql84-plperl: Makefile
  pkgsrc/databases/postgresql84-plpython: Makefile
  pkgsrc/databases/postgresql84-pltcl: Makefile
  pkgsrc/databases/postgresql84-server: Makefile
  pkgsrc/databases/postgresql84-uuid: Makefile
  pkgsrc/databases/postgresql90: Makefile
  pkgsrc/databases/postgresql90-adminpack: Makefile
  pkgsrc/databases/postgresql90-client: Makefile buildlink3.mk
  pkgsrc/databases/postgresql90-datatypes: Makefile
  pkgsrc/databases/postgresql90-dblink: Makefile
  pkgsrc/databases/postgresql90-fuzzystrmatch: Makefile
  pkgsrc/databases/postgresql90-monitoring: Makefile
  pkgsrc/databases/postgresql90-pgcrypto: Makefile
  pkgsrc/databases/postgresql90-plperl: Makefile
  pkgsrc/databases/postgresql90-plpython: Makefile
  pkgsrc/databases/postgresql90-pltcl: Makefile
  pkgsrc/databases/postgresql90-replicationtools: Makefile
  pkgsrc/databases/postgresql90-server: Makefile
  pkgsrc/databases/postgresql90-upgrade: Makefile
  pkgsrc/databases/postgresql90-uuid: Makefile
  pkgsrc/databases/postgresql91: Makefile
  pkgsrc/databases/postgresql91-adminpack: Makefile
  pkgsrc/databases/postgresql91-client: Makefile buildlink3.mk
  pkgsrc/databases/postgresql91-datatypes: Makefile
  pkgsrc/databases/postgresql91-dblink: Makefile
  pkgsrc/databases/postgresql91-fuzzystrmatch: Makefile
  pkgsrc/databases/postgresql91-monitoring: Makefile
  pkgsrc/databases/postgresql91-pgcrypto: Makefile
  pkgsrc/databases/postgresql91-plperl: Makefile
  pkgsrc/databases/postgresql91-plpython: Makefile
  pkgsrc/databases/postgresql91-pltcl: Makefile
  pkgsrc/databases/postgresql91-replicationtools: Makefile
  pkgsrc/databases/postgresql91-server: Makefile
  pkgsrc/databases/postgresql91-upgrade: Makefile
  pkgsrc/databases/postgresql92: Makefile
  pkgsrc/databases/postgresql92-adminpack: Makefile
  pkgsrc/databases/postgresql92-client: Makefile buildlink3.mk
  pkgsrc/databases/postgresql92-datatypes: Makefile
  pkgsrc/databases/postgresql92-dblink: Makefile
  pkgsrc/databases/postgresql92-fuzzystrmatch: Makefile
  pkgsrc/databases/postgresql92-monitoring: Makefile
  pkgsrc/databases/postgresql92-pgcrypto: Makefile
  pkgsrc/databases/postgresql92-plperl: Makefile
  pkgsrc/databases/postgresql92-plpython: Makefile
  pkgsrc/databases/postgresql92-pltcl: Makefile
  pkgsrc/databases/postgresql92-replicationtools: Makefile
  pkgsrc/databases/postgresql92-server: Makefile
  pkgsrc/databases/postgresql92-upgrade: Makefile
  pkgsrc/databases/postgresql93: Makefile
  pkgsrc/databases/postgresql93-adminpack: Makefile
  pkgsrc/databases/postgresql93-client: Makefile buildlink3.mk
  pkgsrc/databases/postgresql93-datatypes: Makefile
  pkgsrc/databases/postgresql93-dblink: Makefile
  pkgsrc/databases/postgresql93-fuzzystrmatch: Makefile
  pkgsrc/databases/postgresql93-monitoring: Makefile
  pkgsrc/databases/postgresql93-pgcrypto: Makefile
  pkgsrc/databases/postgresql93-plperl: Makefile
  pkgsrc/databases/postgresql93-plpython: Makefile
  pkgsrc/databases/postgresql93-pltcl: Makefile
  pkgsrc/databases/postgresql93-replicationtools: Makefile
  pkgsrc/databases/postgresql93-server: Makefile
  pkgsrc/databases/postgresql93-upgrade: Makefile
  pkgsrc/databases/py-ldap: Makefile
  pkgsrc/databases/py-mssql: Makefile
  pkgsrc/databases/py-sybase: Makefile
  pkgsrc/databases/ruby-ldap: Makefile
  pkgsrc/databases/sqlitebrowser: Makefile
  pkgsrc/databases/sqlrelay: Makefile
  pkgsrc/databases/sqsh: Makefile
  pkgsrc/databases/virtuoso: Makefile
  pkgsrc/devel/SOPE: Makefile
  pkgsrc/devel/aegis: Makefile
  pkgsrc/devel/anjuta: Makefile
  pkgsrc/devel/apr-util: Makefile buildlink3.mk
  pkgsrc/devel/apr0: Makefile buildlink3.mk
  pkgsrc/devel/automoc4: Makefile
  pkgsrc/devel/cervisia: Makefile
  pkgsrc/devel/cmake: Makefile
  pkgsrc/devel/compizconfig-backend-gconf: Makefile
  pkgsrc/devel/cppcheck: Makefile
  pkgsrc/devel/cvsync: Makefile
  pkgsrc/devel/darcs: Makefile
  pkgsrc/devel/distccmon-gnome: Makefile
  pkgsrc/devel/dolphin-plugins: Makefile
  pkgsrc/devel/ecore: Makefile buildlink3.mk
  pkgsrc/devel/eet: Makefile buildlink3.mk
  pkgsrc/devel/eio: Makefile buildlink3.mk
  pkgsrc/devel/eric4: Makefile
  pkgsrc/devel/fossil: Makefile
  pkgsrc/devel/frama-c: Makefile
  pkgsrc/devel/gearmand: Makefile
  pkgsrc/devel/git-base: Makefile
  pkgsrc/devel/glade3: Makefile
  pkgsrc/devel/grantlee: Makefile buildlink3.mk
  pkgsrc/devel/gsoap: Makefile
  pkgsrc/devel/guile-gnome: Makefile
  pkgsrc/devel/isect: Makefile
  pkgsrc/devel/java-subversion: Makefile
  pkgsrc/devel/kapptemplate: Makefile
  pkgsrc/devel/kcachegrind: Makefile
  pkgsrc/devel/kdbg: Makefile
  pkgsrc/devel/kde-dev-scripts: Makefile
  pkgsrc/devel/kde-dev-utils: Makefile
  pkgsrc/devel/kdesdk-kioslaves: Makefile
  pkgsrc/devel/kdesdk-strigi-analyzers: Makefile
  pkgsrc/devel/kdesdk-thumbnailers: Makefile
  pkgsrc/devel/kdesdk3: Makefile buildlink3.mk
  pkgsrc/devel/kdevelop-base: Makefile
  pkgsrc/devel/kdevelop4: Makefile
  pkgsrc/devel/kdevplatform: Makefile
  pkgsrc/devel/kdiff3: Makefile
  pkgsrc/devel/kdiff3-kde3: Makefile
  pkgsrc/devel/kompare: Makefile
  pkgsrc/devel/kscope: Makefile
  pkgsrc/devel/libbonoboui: Makefile buildlink3.mk
  pkgsrc/devel/libcompizconfig: Makefile
  pkgsrc/devel/libdbusmenu-qt: Makefile buildlink3.mk
  pkgsrc/devel/libdnsres: Makefile
  pkgsrc/devel/libevent: Makefile buildlink3.mk
  pkgsrc/devel/libgail-gnome: Makefile buildlink3.mk
  pkgsrc/devel/libgnome: Makefile buildlink3.mk
  pkgsrc/devel/libgnomemm: Makefile buildlink3.mk
  pkgsrc/devel/libgnomeui: Makefile buildlink3.mk
  pkgsrc/devel/libgnomeuimm: Makefile buildlink3.mk
  pkgsrc/devel/libthrift: Makefile buildlink3.mk
  pkgsrc/devel/libxenserver: Makefile buildlink3.mk
  pkgsrc/devel/log4cxx: Makefile
  pkgsrc/devel/lokalize: Makefile
  pkgsrc/devel/mad-flute: Makefile
  pkgsrc/devel/memcached: Makefile
  pkgsrc/devel/mono-tools: Makefile
  pkgsrc/devel/monodevelop: Makefile buildlink3.mk
  pkgsrc/devel/monodevelop-database: Makefile
  pkgsrc/devel/monotone-viz: Makefile
  pkgsrc/devel/netcdf: Makefile buildlink3.mk
  pkgsrc/devel/netcdf-fortran: Makefile buildlink3.mk
  pkgsrc/devel/ocaml-lwt: Makefile
  pkgsrc/devel/okteta: Makefile
  pkgsrc/devel/opal: Makefile buildlink3.mk
  pkgsrc/devel/opencm: Makefile
  pkgsrc/devel/opengrok: Makefile
  pkgsrc/devel/p5-Gnome2: Makefile
  pkgsrc/devel/p5-subversion: Makefile
  pkgsrc/devel/poco: Makefile buildlink3.mk
  pkgsrc/devel/poxml: Makefile
  pkgsrc/devel/ptlib: Makefile buildlink3.mk
  pkgsrc/devel/pwlib: Makefile buildlink3.mk
  pkgsrc/devel/py-compizconfig: Makefile
  pkgsrc/devel/py-pysvn: Makefile
  pkgsrc/devel/py-subversion: Makefile
  pkgsrc/devel/py-subvertpy: Makefile
  pkgsrc/devel/qconf: Makefile
  pkgsrc/devel/qjson: Makefile
  pkgsrc/devel/qtscriptgenerator: Makefile buildlink3.mk
  pkgsrc/devel/rapidsvn: Makefile
  pkgsrc/devel/ruby-eet: Makefile
  pkgsrc/devel/ruby-eventmachine: Makefile
  pkgsrc/devel/ruby-subversion: Makefile
  pkgsrc/devel/ruby-thrift: Makefile
  pkgsrc/devel/ruby-thrift_client: Makefile
  pkgsrc/devel/rudiments: Makefile buildlink3.mk
  pkgsrc/devel/sofia-sip: Makefile buildlink3.mk
  pkgsrc/devel/subversion-base: Makefile buildlink3.mk
  pkgsrc/devel/subversion16-base: Makefile buildlink3.mk
  pkgsrc/devel/swt: Makefile
  pkgsrc/devel/ucommon: Makefile buildlink3.mk
  pkgsrc/devel/umbrello: Makefile
  pkgsrc/devel/xulrunner10: Makefile buildlink3.mk
  pkgsrc/devel/xulrunner17: Makefile buildlink3.mk
  pkgsrc/devel/xulrunner192: Makefile buildlink3.mk
  pkgsrc/devel/xulrunner24: Makefile buildlink3.mk
  pkgsrc/editors/Sigil: Makefile
  pkgsrc/editors/TeXmacs-devel: Makefile
  pkgsrc/editors/conglomerate: Makefile
  pkgsrc/editors/dasher: Makefile
  pkgsrc/editors/emacs-snapshot: Makefile
  pkgsrc/editors/ghex: Makefile
  pkgsrc/editors/gobby: Makefile
  pkgsrc/editors/kate: Makefile
  pkgsrc/editors/kdissert: Makefile
  pkgsrc/editors/kile: Makefile
  pkgsrc/editors/kile-kde3: Makefile
  pkgsrc/editors/lyx: Makefile
  pkgsrc/editors/mlview: Makefile
  pkgsrc/editors/notecase: Makefile
  pkgsrc/editors/qgoogletranslator: Makefile
  pkgsrc/editors/tea: Makefile
  pkgsrc/editors/texmaker: Makefile
  pkgsrc/editors/texworks: Makefile
  pkgsrc/editors/tomboy: Makefile
  pkgsrc/editors/vim-gtk2: Makefile
  pkgsrc/editors/xemacs: Makefile
  pkgsrc/editors/xemacs-current: Makefile
  pkgsrc/emulators/gambatte: Makefile
  pkgsrc/emulators/kenigma: Makefile
  pkgsrc/emulators/qemu0: Makefile
  pkgsrc/emulators/wine: Makefile
  pkgsrc/emulators/wine-devel: Makefile
  pkgsrc/emulators/yabause: Makefile
  pkgsrc/filesystems/cloudfuse: Makefile
  pkgsrc/filesystems/fuse-curlftpfs: Makefile
  pkgsrc/filesystems/fuse-encfs: Makefile
  pkgsrc/filesystems/fuse-svnfs: Makefile
  pkgsrc/filesystems/fuse-wdfs: Makefile
  pkgsrc/finance/gkrellm-stock: Makefile
  pkgsrc/finance/gnucash: Makefile
  pkgsrc/finance/kmymoney2: Makefile
  pkgsrc/finance/libofx: Makefile
  pkgsrc/fonts/ghostscript-cidfonts-ryumin: Makefile
  pkgsrc/games/amor: Makefile
  pkgsrc/games/atomix: Makefile
  pkgsrc/games/blinken: Makefile
  pkgsrc/games/bomber: Makefile
  pkgsrc/games/boson: Makefile
  pkgsrc/games/bovo: Makefile
  pkgsrc/games/bzflag: Makefile
  pkgsrc/games/crossfire-client: Makefile
  pkgsrc/games/crossfire-client-gtk: Makefile
  pkgsrc/games/crossfire-client-gtk2: Makefile
  pkgsrc/games/crossfire-server: Makefile
  pkgsrc/games/flightgear: Makefile
  pkgsrc/games/gamazons: Makefile
  pkgsrc/games/gcompris: Makefile
  pkgsrc/games/gnome-games: Makefile
  pkgsrc/games/granatier: Makefile
  pkgsrc/games/grhino: Makefile
  pkgsrc/games/gtetrinet: Makefile
  pkgsrc/games/gturing: Makefile
  pkgsrc/games/kajongg: Makefile
  pkgsrc/games/kanagram: Makefile
  pkgsrc/games/kapman: Makefile
  pkgsrc/games/katomic: Makefile
  pkgsrc/games/kblackbox: Makefile
  pkgsrc/games/kblocks: Makefile
  pkgsrc/games/kbounce: Makefile
  pkgsrc/games/kbreakout: Makefile
  pkgsrc/games/kdegames3: Makefile buildlink3.mk
  pkgsrc/games/kdetoys3: Makefile
  pkgsrc/games/kdiamond: Makefile
  pkgsrc/games/kfourinline: Makefile
  pkgsrc/games/kgoldrunner: Makefile
  pkgsrc/games/khangman: Makefile
  pkgsrc/games/kigo: Makefile
  pkgsrc/games/killbots: Makefile
  pkgsrc/games/kiriki: Makefile
  pkgsrc/games/kjumpingcube: Makefile
  pkgsrc/games/klavaro: Makefile
  pkgsrc/games/klickety: Makefile
  pkgsrc/games/klines: Makefile
  pkgsrc/games/kmahjongg: Makefile
  pkgsrc/games/kmines: Makefile
  pkgsrc/games/knavalbattle: Makefile
  pkgsrc/games/knetwalk: Makefile
  pkgsrc/games/knights: Makefile
  pkgsrc/games/kolf: Makefile
  pkgsrc/games/kollision: Makefile
  pkgsrc/games/konquest: Makefile
  pkgsrc/games/kpat: Makefile
  pkgsrc/games/kreversi: Makefile
  pkgsrc/games/kshisen: Makefile
  pkgsrc/games/ksirk: Makefile
  pkgsrc/games/ksnakeduel: Makefile
  pkgsrc/games/kspaceduel: Makefile
  pkgsrc/games/ksquares: Makefile
  pkgsrc/games/ksudoku: Makefile
  pkgsrc/games/ktuberling: Makefile
  pkgsrc/games/kubrick: Makefile
  pkgsrc/games/libkdegames: Makefile
  pkgsrc/games/libkmahjongg: Makefile
  pkgsrc/games/lskat: Makefile
  pkgsrc/games/palapeli: Makefile
  pkgsrc/games/picmi: Makefile
  pkgsrc/games/pioneers: Makefile
  pkgsrc/games/simgear: Makefile
  pkgsrc/games/sirius: Makefile
  pkgsrc/games/six: Makefile
  pkgsrc/games/supertuxkart: Makefile
  pkgsrc/games/teg: Makefile
  pkgsrc/games/ufoai: Makefile
  pkgsrc/games/warmux: Makefile
  pkgsrc/geography/gdal-lib: Makefile buildlink3.mk
  pkgsrc/geography/mapserver: Makefile
  pkgsrc/geography/merkaartor: Makefile
  pkgsrc/geography/qgis: Makefile
  pkgsrc/geography/qlandkartegt: Makefile
  pkgsrc/geography/qlandkartem: Makefile
  pkgsrc/geography/viking: Makefile
  pkgsrc/graphics/GMT: Makefile
  pkgsrc/graphics/GraphicsMagick: Makefile buildlink3.mk
  pkgsrc/graphics/ImageMagick: Makefile buildlink3.mk
  pkgsrc/graphics/aqsis: Makefile
  pkgsrc/graphics/autotrace: Makefile
  pkgsrc/graphics/blender: Makefile
  pkgsrc/graphics/cairo: Makefile
  pkgsrc/graphics/camlimages: Makefile
  pkgsrc/graphics/darktable: Makefile
  pkgsrc/graphics/dia: Makefile
  pkgsrc/graphics/digikam: Makefile
  pkgsrc/graphics/digikam-doc-kde3: Makefile
  pkgsrc/graphics/digikam-kde3: Makefile
  pkgsrc/graphics/djview4: Makefile
  pkgsrc/graphics/dx: Makefile
  pkgsrc/graphics/edje: Makefile buildlink3.mk
  pkgsrc/graphics/evas: Makefile buildlink3.mk
  pkgsrc/graphics/evas-buffer: Makefile
  pkgsrc/graphics/evas-edb: Makefile buildlink3.mk
  pkgsrc/graphics/evas-eet: Makefile buildlink3.mk
  pkgsrc/graphics/evas-gif: Makefile buildlink3.mk
  pkgsrc/graphics/evas-jpeg: Makefile buildlink3.mk
  pkgsrc/graphics/evas-pmaps: Makefile buildlink3.mk
  pkgsrc/graphics/evas-png: Makefile buildlink3.mk
  pkgsrc/graphics/evas-software-x11: Makefile
  pkgsrc/graphics/evas-svg: Makefile buildlink3.mk
  pkgsrc/graphics/evas-tiff: Makefile buildlink3.mk
  pkgsrc/graphics/evas-xpm: Makefile buildlink3.mk
  pkgsrc/graphics/f-spot: Makefile
  pkgsrc/graphics/feh: Makefile
  pkgsrc/graphics/flphoto: Makefile
  pkgsrc/graphics/gimmage: Makefile
  pkgsrc/graphics/gnuplot: Makefile
  pkgsrc/graphics/graphviz: Makefile
  pkgsrc/graphics/gri: Makefile
  pkgsrc/graphics/gwenview: Makefile
  pkgsrc/graphics/gwenview-i18n-kde3: Makefile
  pkgsrc/graphics/gwenview-kde3: Makefile
  pkgsrc/graphics/inkscape: Makefile
  pkgsrc/graphics/kamera: Makefile
  pkgsrc/graphics/kbarcode: Makefile
  pkgsrc/graphics/kcolorchooser: Makefile
  pkgsrc/graphics/kde-base-artwork: Makefile
  pkgsrc/graphics/kdegraphics-mobipocket: Makefile
  pkgsrc/graphics/kdegraphics-strigi-analyzer: Makefile
  pkgsrc/graphics/kdegraphics-thumbnailers: Makefile
  pkgsrc/graphics/kdegraphics3: Makefile buildlink3.mk
  pkgsrc/graphics/kgamma: Makefile
  pkgsrc/graphics/kipi-plugins: Makefile
  pkgsrc/graphics/kipi-plugins-calendar-kde3: Makefile
  pkgsrc/graphics/kipi-plugins-kde3: Makefile
  pkgsrc/graphics/kolourpaint: Makefile
  pkgsrc/graphics/koverartist: Makefile
  pkgsrc/graphics/kphotoalbum: Makefile
  pkgsrc/graphics/kphotobook: Makefile
  pkgsrc/graphics/kphotools: Makefile
  pkgsrc/graphics/kruler: Makefile
  pkgsrc/graphics/ksaneplugin: Makefile
  pkgsrc/graphics/ksnapshot: Makefile
  pkgsrc/graphics/libkdcraw: Makefile buildlink3.mk
  pkgsrc/graphics/libkdcraw-kde3: Makefile buildlink3.mk
  pkgsrc/graphics/libkexif: Makefile buildlink3.mk
  pkgsrc/graphics/libkexiv2: Makefile
  pkgsrc/graphics/libkexiv2-kde3: Makefile buildlink3.mk
  pkgsrc/graphics/libkface: Makefile buildlink3.mk
  pkgsrc/graphics/libkipi: Makefile buildlink3.mk
  pkgsrc/graphics/libkipi-kde3: Makefile buildlink3.mk
  pkgsrc/graphics/libksane: Makefile buildlink3.mk
  pkgsrc/graphics/ncview: Makefile
  pkgsrc/graphics/openimageio: Makefile buildlink3.mk
  pkgsrc/graphics/osg: Makefile buildlink3.mk
  pkgsrc/graphics/p5-GraphicsMagick: Makefile
  pkgsrc/graphics/p5-PerlMagick: Makefile
  pkgsrc/graphics/pfstools: Makefile
  pkgsrc/graphics/pstoedit: Makefile
  pkgsrc/graphics/qcomicbook: Makefile
  pkgsrc/graphics/qimageblitz: Makefile buildlink3.mk
  pkgsrc/graphics/qiviewer: Makefile
  pkgsrc/graphics/ruby-RMagick: Makefile
  pkgsrc/graphics/scidavis: Makefile
  pkgsrc/graphics/showimg: Makefile
  pkgsrc/graphics/svgpart: Makefile
  pkgsrc/graphics/tango-icon-theme: Makefile
  pkgsrc/graphics/veusz: Makefile
  pkgsrc/graphics/zphoto: Makefile
  pkgsrc/ham/fldigi: Makefile
  pkgsrc/ham/gmfsk: Makefile
  pkgsrc/ham/gpredict: Makefile
  pkgsrc/ham/trustedQSL: Makefile
  pkgsrc/ham/xlog: Makefile
  pkgsrc/inputmethod/ibus-mozc: Makefile
  pkgsrc/inputmethod/ibus-qt: Makefile
  pkgsrc/inputmethod/im-ja: Makefile
  pkgsrc/inputmethod/imhangul_status_applet: Makefile
  pkgsrc/inputmethod/kimera: Makefile
  pkgsrc/inputmethod/mozc-elisp: Makefile
  pkgsrc/inputmethod/mozc-renderer: Makefile
  pkgsrc/inputmethod/mozc-server: Makefile
  pkgsrc/inputmethod/mozc-tool: Makefile
  pkgsrc/inputmethod/qt5-uim: Makefile
  pkgsrc/inputmethod/scim: Makefile
  pkgsrc/inputmethod/uim: Makefile
  pkgsrc/inputmethod/uim-mozc: Makefile
  pkgsrc/lang/basic256: Makefile
  pkgsrc/lang/coq: Makefile
  pkgsrc/lang/erlang: Makefile
  pkgsrc/lang/konoha: Makefile
  pkgsrc/lang/nodejs: Makefile
  pkgsrc/lang/openjdk7: Makefile
  pkgsrc/lang/php53: Makefile
  pkgsrc/lang/php54: Makefile
  pkgsrc/lang/php55: Makefile
  pkgsrc/lang/python26: Makefile
  pkgsrc/lang/python27: Makefile
  pkgsrc/lang/python33: Makefile
  pkgsrc/lang/ruby18-base: Makefile
  pkgsrc/lang/ruby193-base: Makefile
  pkgsrc/lang/ruby200-base: Makefile
  pkgsrc/lang/swi-prolog-packages: Makefile
  pkgsrc/mail/akonadi: Makefile buildlink3.mk
  pkgsrc/mail/alpine: Makefile
  pkgsrc/mail/balsa: Makefile
  pkgsrc/mail/claws-mail: Makefile
  pkgsrc/mail/cone: Makefile
  pkgsrc/mail/courier-mta: Makefile
  pkgsrc/mail/cue: Makefile
  pkgsrc/mail/cyrus-imapd: Makefile
  pkgsrc/mail/cyrus-imapd23: Makefile
  pkgsrc/mail/cyrus-imapd24: Makefile
  pkgsrc/mail/dbmail: Makefile
  pkgsrc/mail/deforaos-mailer: Makefile
  pkgsrc/mail/dk-milter: Makefile
  pkgsrc/mail/dkim-milter: Makefile buildlink3.mk
  pkgsrc/mail/dovecot: Makefile
  pkgsrc/mail/dovecot2: Makefile buildlink3.mk
  pkgsrc/mail/dovecot2-pigeonhole: Makefile
  pkgsrc/mail/elmo: Makefile
  pkgsrc/mail/enma: Makefile
  pkgsrc/mail/esmtp: Makefile
  pkgsrc/mail/etpan: Makefile
  pkgsrc/mail/evolution: Makefile
  pkgsrc/mail/evolution-data-server: Makefile
  pkgsrc/mail/evolution-exchange: Makefile
  pkgsrc/mail/exim: Makefile
  pkgsrc/mail/fdm: Makefile
  pkgsrc/mail/fetchmail: Makefile
  pkgsrc/mail/freepops: Makefile
  pkgsrc/mail/heirloom-mailx: Makefile
  pkgsrc/mail/imap-uw: Makefile buildlink3.mk
  pkgsrc/mail/imap-uw-utils: Makefile
  pkgsrc/mail/imapfilter: Makefile
  pkgsrc/mail/isync: Makefile
  pkgsrc/mail/kbiff: Makefile
  pkgsrc/mail/libesmtp: Makefile buildlink3.mk
  pkgsrc/mail/libetpan: Makefile buildlink3.mk
  pkgsrc/mail/libsylph: Makefile buildlink3.mk
  pkgsrc/mail/mail-notification: Makefile
  pkgsrc/mail/mailsync: Makefile
  pkgsrc/mail/milter-greylist: Makefile
  pkgsrc/mail/mpop: Makefile
  pkgsrc/mail/msmtp: Makefile
  pkgsrc/mail/mutt: Makefile
  pkgsrc/mail/mutt-devel: Makefile
  pkgsrc/mail/netbiff: Makefile
  pkgsrc/mail/nmh: Makefile
  pkgsrc/mail/opendkim: Makefile
  pkgsrc/mail/opendmarc: Makefile
  pkgsrc/mail/opensmtpd: Makefile
  pkgsrc/mail/p5-Mail-ClamAV: Makefile
  pkgsrc/mail/perdition: Makefile
  pkgsrc/mail/perdition-ldap: Makefile
  pkgsrc/mail/php-imap: Makefile
  pkgsrc/mail/pine: Makefile
  pkgsrc/mail/postfix: Makefile
  pkgsrc/mail/prayer: Makefile
  pkgsrc/mail/pulsar: Makefile
  pkgsrc/mail/qmail: Makefile
  pkgsrc/mail/qpopper: Makefile
  pkgsrc/mail/re-alpine: Makefile
  pkgsrc/mail/rspamd: Makefile
  pkgsrc/mail/sendmail: Makefile
  pkgsrc/mail/sid-milter: Makefile
  pkgsrc/mail/spamassassin: Makefile
  pkgsrc/mail/spamdyke: Makefile
  pkgsrc/mail/ssmtp: Makefile
  pkgsrc/mail/sylpheed: Makefile
  pkgsrc/mail/sympa: Makefile
  pkgsrc/mail/teapop: Makefile
  pkgsrc/mail/thunderbird: Makefile
  pkgsrc/mail/thunderbird10: Makefile
  pkgsrc/mail/thunderbird17: Makefile
  pkgsrc/mail/up-imapproxy: Makefile
  pkgsrc/mail/wl: Makefile
  pkgsrc/mail/wl-snapshot: Makefile
  pkgsrc/math/R-CGIwithR: Makefile
  pkgsrc/math/R-ncdf: Makefile
  pkgsrc/math/analitza: Makefile buildlink3.mk
  pkgsrc/math/cantor: Makefile
  pkgsrc/math/cgal: Makefile buildlink3.mk
  pkgsrc/math/extcalc: Makefile
  pkgsrc/math/grace: Makefile
  pkgsrc/math/kalgebra: Makefile
  pkgsrc/math/kcalc: Makefile
  pkgsrc/math/octave: Makefile
  pkgsrc/math/pspp: Makefile
  pkgsrc/math/py-Scientific: Makefile
  pkgsrc/math/qalculate-gtk: Makefile
  pkgsrc/math/qalculate-kde: Makefile
  pkgsrc/math/speedcrunch: Makefile
  pkgsrc/math/xmgr: Makefile
  pkgsrc/meta-pkgs/xfce4: Makefile buildlink3.mk
  pkgsrc/meta-pkgs/xfce4-extras: Makefile
  pkgsrc/misc/attica: Makefile buildlink3.mk
  pkgsrc/misc/basket: Makefile
  pkgsrc/misc/calibre: Makefile
  pkgsrc/misc/celestia: Makefile
  pkgsrc/misc/deskbar-applet: Makefile
  pkgsrc/misc/esniper: Makefile
  pkgsrc/misc/fbreader: Makefile
  pkgsrc/misc/gkrellm-flynn: Makefile
  pkgsrc/misc/gkrellm-launch: Makefile
  pkgsrc/misc/gkrellm-leds: Makefile
  pkgsrc/misc/gkrellm-moon: Makefile
  pkgsrc/misc/gkrellm-weather: Makefile
  pkgsrc/misc/gnome-utils: Makefile
  pkgsrc/misc/gwaei: Makefile
  pkgsrc/misc/kaccessible: Makefile
  pkgsrc/misc/kalzium: Makefile
  pkgsrc/misc/kbruch: Makefile
  pkgsrc/misc/kcharselect: Makefile
  pkgsrc/misc/kchm: Makefile
  pkgsrc/misc/kchmviewer: Makefile
  pkgsrc/misc/kde-wallpapers4: Makefile
  pkgsrc/misc/kdeaccessibility3: Makefile
  pkgsrc/misc/kdeaddons3: Makefile
  pkgsrc/misc/kdeadmin3: Makefile
  pkgsrc/misc/kdeartwork3: Makefile
  pkgsrc/misc/kdeartwork4: Makefile
  pkgsrc/misc/kdeedu3: Makefile
  pkgsrc/misc/kdepim-runtime4: Makefile
  pkgsrc/misc/kdepim3: Makefile buildlink3.mk
  pkgsrc/misc/kdepim4: Makefile
  pkgsrc/misc/kdepimlibs4: Makefile buildlink3.mk
  pkgsrc/misc/kdeplasma-addons4: Makefile
  pkgsrc/misc/kdeutils3: Makefile
  pkgsrc/misc/kgeography: Makefile
  pkgsrc/misc/kig: Makefile
  pkgsrc/misc/kiten: Makefile
  pkgsrc/misc/klettres: Makefile
  pkgsrc/misc/kmag: Makefile
  pkgsrc/misc/kmousetool: Makefile
  pkgsrc/misc/kmouth: Makefile
  pkgsrc/misc/koffice: Makefile
  pkgsrc/misc/kremotecontrol: Makefile
  pkgsrc/misc/kstars: Makefile
  pkgsrc/misc/kteatime: Makefile
  pkgsrc/misc/ktouch: Makefile
  pkgsrc/misc/kturtle: Makefile
  pkgsrc/misc/ktux: Makefile
  pkgsrc/misc/kwordquiz: Makefile
  pkgsrc/misc/libcarddav: Makefile
  pkgsrc/misc/libkdeedu: Makefile buildlink3.mk
  pkgsrc/misc/libkgeomap: Makefile buildlink3.mk
  pkgsrc/misc/libkvkontakte: Makefile buildlink3.mk
  pkgsrc/misc/libreoffice: Makefile
  pkgsrc/misc/libreoffice4: Makefile
  pkgsrc/misc/marble: Makefile buildlink3.mk
  pkgsrc/misc/mousetweaks: Makefile
  pkgsrc/misc/nepomuk-core: Makefile
  pkgsrc/misc/nepomuk-widgets: Makefile
  pkgsrc/misc/openoffice3: Makefile
  pkgsrc/misc/parley: Makefile
  pkgsrc/misc/qbrew: Makefile
  pkgsrc/misc/rocs: Makefile
  pkgsrc/misc/root: Makefile
  pkgsrc/misc/stellarium: Makefile
  pkgsrc/misc/step: Makefile
  pkgsrc/misc/superkaramba: Makefile
  pkgsrc/misc/sweeper: Makefile
  pkgsrc/misc/taskjuggler: Makefile
  pkgsrc/misc/tellico: Makefile
  pkgsrc/misc/tellico-kde3: Makefile
  pkgsrc/misc/tmux: Makefile
  pkgsrc/misc/usbprog: Makefile
  pkgsrc/misc/vym: Makefile
  pkgsrc/misc/yelp: Makefile
  pkgsrc/misc/zyGrib: Makefile
  pkgsrc/multimedia/audiocd-kio: Makefile
  pkgsrc/multimedia/dragon: Makefile
  pkgsrc/multimedia/dvdauthor: Makefile
  pkgsrc/multimedia/ffmpegthumbs: Makefile
  pkgsrc/multimedia/fuppes: Makefile
  pkgsrc/multimedia/gecko-mediaplayer: Makefile
  pkgsrc/multimedia/gmencoder: Makefile
  pkgsrc/multimedia/gnash: Makefile
  pkgsrc/multimedia/gnome-mplayer: Makefile
  pkgsrc/multimedia/gpac: Makefile
  pkgsrc/multimedia/gst-plugins0.10-bad: Makefile
  pkgsrc/multimedia/gst-plugins1-bad: Makefile
  pkgsrc/multimedia/gxine: Makefile
  pkgsrc/multimedia/juk: Makefile
  pkgsrc/multimedia/kaffeine: Makefile
  pkgsrc/multimedia/kdemultimedia3: Makefile buildlink3.mk
  pkgsrc/multimedia/kdenlive: Makefile
  pkgsrc/multimedia/kmix: Makefile
  pkgsrc/multimedia/kmplayer: Makefile
  pkgsrc/multimedia/kmplayer-kde3: Makefile
  pkgsrc/multimedia/kscd: Makefile
  pkgsrc/multimedia/libkcddb: Makefile
  pkgsrc/multimedia/libkcompactdisc: Makefile
  pkgsrc/multimedia/mediatomb: Makefile
  pkgsrc/multimedia/mkvtoolnix: Makefile
  pkgsrc/multimedia/mlt: Makefile
  pkgsrc/multimedia/mplayer-plugin: Makefile
  pkgsrc/multimedia/mplayerthumbs: Makefile
  pkgsrc/multimedia/phonon: Makefile buildlink3.mk
  pkgsrc/multimedia/phonon-backend-gstreamer: Makefile
  pkgsrc/multimedia/phonon-backend-vlc: Makefile
  pkgsrc/multimedia/transcode: Makefile
  pkgsrc/multimedia/vlc: Makefile
  pkgsrc/multimedia/vlc2: Makefile
  pkgsrc/multimedia/xine-lib: Makefile
  pkgsrc/multimedia/xine-ui: Makefile
  pkgsrc/net/aria2: Makefile
  pkgsrc/net/avahi: Makefile buildlink3.mk
  pkgsrc/net/bind96: Makefile
  pkgsrc/net/bind98: Makefile
  pkgsrc/net/bind99: Makefile
  pkgsrc/net/btget: Makefile
  pkgsrc/net/btpd: Makefile
  pkgsrc/net/cclive: Makefile
  pkgsrc/net/ccrtp: Makefile buildlink3.mk
  pkgsrc/net/choqok: Makefile
  pkgsrc/net/couriertcpd: Makefile
  pkgsrc/net/csup: Makefile
  pkgsrc/net/dc_gui2: Makefile
  pkgsrc/net/dcsharp: Makefile
  pkgsrc/net/dtcpclient: Makefile
  pkgsrc/net/dtorrent: Makefile
  pkgsrc/net/echoping: Makefile
  pkgsrc/net/ekiga: Makefile
  pkgsrc/net/etherape: Makefile
  pkgsrc/net/ettercap: Makefile
  pkgsrc/net/ettercap-NG: Makefile
  pkgsrc/net/fetch: Makefile
  pkgsrc/net/flickcurl: Makefile
  pkgsrc/net/freeradius: Makefile
  pkgsrc/net/freeradius2: Makefile
  pkgsrc/net/freerdp: Makefile
  pkgsrc/net/ftplibpp: Makefile
  pkgsrc/net/gkrellm-multiping: Makefile
  pkgsrc/net/gkrellm-snmp: Makefile
  pkgsrc/net/gkrellm-wireless: Makefile
  pkgsrc/net/gnome-netstatus: Makefile
  pkgsrc/net/gnome-vfs-smb: Makefile
  pkgsrc/net/gnugk: Makefile
  pkgsrc/net/gst-plugins0.10-rtmp: Makefile
  pkgsrc/net/gst-plugins1-rtmp: Makefile
  pkgsrc/net/httping: Makefile
  pkgsrc/net/isc-dhclient4: Makefile
  pkgsrc/net/isc-dhcp4: Makefile
  pkgsrc/net/isc-dhcpd4: Makefile
  pkgsrc/net/isc-dhcrelay4: Makefile
  pkgsrc/net/jigdo: Makefile
  pkgsrc/net/kdenetwork-filesharing: Makefile
  pkgsrc/net/kdenetwork-strigi-analyzers: Makefile
  pkgsrc/net/kdenetwork3: Makefile buildlink3.mk
  pkgsrc/net/kdnssd: Makefile
  pkgsrc/net/kftpgrabber: Makefile
  pkgsrc/net/kget: Makefile
  pkgsrc/net/kismet: Makefile
  pkgsrc/net/kmldonkey: Makefile
  pkgsrc/net/kmldonkey-kde3: Makefile
  pkgsrc/net/kopete: Makefile
  pkgsrc/net/kphone: Makefile
  pkgsrc/net/kppp: Makefile
  pkgsrc/net/krdc: Makefile
  pkgsrc/net/krfb: Makefile
  pkgsrc/net/ktorrent: Makefile
  pkgsrc/net/ktorrent-kde3: Makefile
  pkgsrc/net/ldns: Makefile
  pkgsrc/net/lftp: Makefile
  pkgsrc/net/libcmis: Makefile
  pkgsrc/net/libdmapsharing: Makefile
  pkgsrc/net/libdmapsharing3: Makefile
  pkgsrc/net/libexosip: Makefile buildlink3.mk
  pkgsrc/net/libfetch: Makefile buildlink3.mk
  pkgsrc/net/libktorrent: Makefile buildlink3.mk
  pkgsrc/net/libquvi: Makefile
  pkgsrc/net/libtorrent: Makefile buildlink3.mk
  pkgsrc/net/libzrtpcpp: Makefile buildlink3.mk
  pkgsrc/net/linc: Makefile buildlink3.mk
  pkgsrc/net/lldpd: Makefile
  pkgsrc/net/logjam: Makefile
  pkgsrc/net/mirall: Makefile
  pkgsrc/net/mldonkey-gui: Makefile
  pkgsrc/net/monsoon: Makefile
  pkgsrc/net/mosh: Makefile
  pkgsrc/net/mydns-mysql: Makefile
  pkgsrc/net/mydns-pgsql: Makefile
  pkgsrc/net/nagios-nrpe: Makefile
  pkgsrc/net/nagios-plugin-ldap: Makefile
  pkgsrc/net/nagios-plugin-mysql: Makefile
  pkgsrc/net/nagios-plugin-pgsql: Makefile
  pkgsrc/net/nagios-plugin-radius: Makefile
  pkgsrc/net/nagios-plugin-snmp: Makefile
  pkgsrc/net/nagios-plugins: Makefile
  pkgsrc/net/nagstamon: Makefile
  pkgsrc/net/net-snmp: Makefile
  pkgsrc/net/netatalk: Makefile
  pkgsrc/net/nmap: Makefile
  pkgsrc/net/nsd: Makefile
  pkgsrc/net/ntop: Makefile
  pkgsrc/net/ntp4: Makefile
  pkgsrc/net/ocamlnet: Makefile
  pkgsrc/net/ocsync: Makefile buildlink3.mk
  pkgsrc/net/openh323: Makefile buildlink3.mk
  pkgsrc/net/openntpd: Makefile
  pkgsrc/net/openslp: Makefile
  pkgsrc/net/openvpn: Makefile
  pkgsrc/net/p5-Net-Z3950-ZOOM: Makefile
  pkgsrc/net/pchar: Makefile
  pkgsrc/net/pen: Makefile
  pkgsrc/net/php-ftp: Makefile
  pkgsrc/net/php-yaz: Makefile
  pkgsrc/net/podcastdl: Makefile
  pkgsrc/net/polsms: Makefile
  pkgsrc/net/powerdns-ldap: Makefile
  pkgsrc/net/proftpd: Makefile
  pkgsrc/net/proxytunnel: Makefile
  pkgsrc/net/pure-ftpd: Makefile
  pkgsrc/net/quvi: Makefile
  pkgsrc/net/rabbitmq-c: Makefile
  pkgsrc/net/rdesktop: Makefile
  pkgsrc/net/remmina: Makefile
  pkgsrc/net/remmina-plugins: Makefile
  pkgsrc/net/rtmpdump: Makefile buildlink3.mk
  pkgsrc/net/rtorrent: Makefile
  pkgsrc/net/samba: Makefile
  pkgsrc/net/samba35: Makefile
  pkgsrc/net/sdig: Makefile
  pkgsrc/net/sipsak: Makefile
  pkgsrc/net/socat: Makefile
  pkgsrc/net/spreadlogd: Makefile
  pkgsrc/net/sysmon: Makefile
  pkgsrc/net/tcpdump: Makefile
  pkgsrc/net/tightvnc: Makefile
  pkgsrc/net/tinc: Makefile
  pkgsrc/net/tor: Makefile
  pkgsrc/net/transmission: Makefile Makefile
  pkgsrc/net/transmission-gtk: Makefile
  pkgsrc/net/transmission-qt: Makefile
  pkgsrc/net/trickle: Makefile
  pkgsrc/net/tsclient: Makefile
  pkgsrc/net/ucspi-ssl: Makefile
  pkgsrc/net/uftp: Makefile
  pkgsrc/net/unbound: Makefile
  pkgsrc/net/unison: Makefile
  pkgsrc/net/unison2.32: Makefile
  pkgsrc/net/unworkable: Makefile
  pkgsrc/net/urlgfe: Makefile
  pkgsrc/net/vinagre: Makefile
  pkgsrc/net/vino: Makefile
  pkgsrc/net/vpnc: Makefile
  pkgsrc/net/vsftpd: Makefile
  pkgsrc/net/vtun: Makefile
  pkgsrc/net/wget: Makefile
  pkgsrc/net/wireshark: Makefile
  pkgsrc/net/wmget: Makefile
  pkgsrc/net/wpa_gui: Makefile
  pkgsrc/net/wpa_supplicant: Makefile
  pkgsrc/net/xorp: Makefile
  pkgsrc/net/xymon: Makefile
  pkgsrc/net/yaz: Makefile buildlink3.mk
  pkgsrc/news/inn: Makefile
  pkgsrc/news/nntpcache: Makefile
  pkgsrc/news/slrn: Makefile
  pkgsrc/news/suck: Makefile
  pkgsrc/parallel/gridscheduler: Makefile
  pkgsrc/parallel/sge: Makefile
  pkgsrc/parallel/slurm: Makefile
  pkgsrc/pkgtools/pkg_install: Makefile
  pkgsrc/pkgtools/pkgin: Makefile
  pkgsrc/print/advi: Makefile
  pkgsrc/print/cups: Makefile buildlink3.mk
  pkgsrc/print/cups-drivers-Magicolor5440DL: Makefile
  pkgsrc/print/diffpdf: Makefile
  pkgsrc/print/electrix: Makefile
  pkgsrc/print/epdfview: Makefile
  pkgsrc/print/evince: Makefile
  pkgsrc/print/evince-nautilus: Makefile
  pkgsrc/print/evince3: Makefile
  pkgsrc/print/foomatic4-db-engine: Makefile
  pkgsrc/print/foomatic4-filters: Makefile
  pkgsrc/print/ghostscript: Makefile buildlink3.mk
  pkgsrc/print/ghostscript-agpl: Makefile buildlink3.mk
  pkgsrc/print/ghostscript-gpl: Makefile buildlink3.mk
  pkgsrc/print/glabels: Makefile
  pkgsrc/print/gtklp: Makefile
  pkgsrc/print/gutenprint-lib: Makefile
  pkgsrc/print/hplip: Makefile
  pkgsrc/print/ja-vfxdvik: Makefile
  pkgsrc/print/kbibtex: Makefile
  pkgsrc/print/kbibtex-kde3: Makefile
  pkgsrc/print/libgnomecups: Makefile buildlink3.mk
  pkgsrc/print/libgnomeprint: Makefile buildlink3.mk
  pkgsrc/print/libgnomeprintui: Makefile buildlink3.mk
  pkgsrc/print/libgxps: Makefile
  pkgsrc/print/libspectre: Makefile buildlink3.mk
  pkgsrc/print/mupdf: Makefile
  pkgsrc/print/okular: Makefile
  pkgsrc/print/p5-Net-CUPS: Makefile
  pkgsrc/print/pdf2djvu: Makefile
  pkgsrc/print/podofo: Makefile
  pkgsrc/print/poppler-qt4: Makefile
  pkgsrc/print/py-cups: Makefile
  pkgsrc/print/qpdfview: Makefile
  pkgsrc/print/scribus: Makefile
  pkgsrc/print/scribus-qt4: Makefile
  pkgsrc/print/xfce4-print: Makefile buildlink3.mk
  pkgsrc/print/xpp: Makefile
  pkgsrc/security/CSP: Makefile
  pkgsrc/security/MyPasswordSafe: Makefile
  pkgsrc/security/amap: Makefile
  pkgsrc/security/ap-modsecurity2: Makefile
  pkgsrc/security/courier-authlib: Makefile
  pkgsrc/security/cy2-digestmd5: Makefile
  pkgsrc/security/cy2-gssapi: Makefile
  pkgsrc/security/cy2-ldapdb: Makefile
  pkgsrc/security/cy2-ntlm: Makefile
  pkgsrc/security/cy2-otp: Makefile
  pkgsrc/security/cy2-saml: Makefile
  pkgsrc/security/cy2-scram: Makefile
  pkgsrc/security/cyrus-saslauthd: Makefile
  pkgsrc/security/dirb: Makefile
  pkgsrc/security/dirmngr: Makefile
  pkgsrc/security/dnssec-tools: Makefile
  pkgsrc/security/engine-pkcs11: Makefile
  pkgsrc/security/fragroute: Makefile
  pkgsrc/security/fwbuilder: Makefile
  pkgsrc/security/gnome-keyring-manager: Makefile
  pkgsrc/security/gnupg: Makefile
  pkgsrc/security/gnupg-pkcs11-scd: Makefile
  pkgsrc/security/gnupg2: Makefile
  pkgsrc/security/gpass: Makefile
  pkgsrc/security/gsasl: Makefile
  pkgsrc/security/guardtime: Makefile
  pkgsrc/security/heimdal: Makefile buildlink3.mk
  pkgsrc/security/honeyd: Makefile
  pkgsrc/security/honeyd-arpd: Makefile
  pkgsrc/security/hydan: Makefile
  pkgsrc/security/hydra: Makefile
  pkgsrc/security/ike-scan: Makefile
  pkgsrc/security/ipsec-tools: Makefile
  pkgsrc/security/isakmpd: Makefile
  pkgsrc/security/keepassx: Makefile
  pkgsrc/security/kgpg: Makefile
  pkgsrc/security/kssh: Makefile
  pkgsrc/security/kth-krb4: Makefile
  pkgsrc/security/kwallet: Makefile
  pkgsrc/security/lasso: Makefile buildlink3.mk
  pkgsrc/security/libfprint: Makefile
  pkgsrc/security/libfwbuilder: Makefile buildlink3.mk
  pkgsrc/security/libguardtime: Makefile buildlink3.mk
  pkgsrc/security/liboauth: Makefile buildlink3.mk
  pkgsrc/security/libp11: Makefile buildlink3.mk
  pkgsrc/security/libssh: Makefile buildlink3.mk
  pkgsrc/security/libssh2: Makefile buildlink3.mk
  pkgsrc/security/libtcpa: Makefile buildlink3.mk
  pkgsrc/security/lua-sec: Makefile
  pkgsrc/security/mit-krb5: Makefile
  pkgsrc/security/mit-krb5-appl: Makefile
  pkgsrc/security/mixminion: Makefile
  pkgsrc/security/munge: Makefile
  pkgsrc/security/netpgp: Makefile
  pkgsrc/security/oath-toolkit: Makefile
  pkgsrc/security/ocaml-ssl: Makefile buildlink3.mk
  pkgsrc/security/opendnssec: Makefile
  pkgsrc/security/opensaml: Makefile buildlink3.mk
  pkgsrc/security/opensc: Makefile
  pkgsrc/security/openssh: Makefile
  pkgsrc/security/openvas-client: Makefile
  pkgsrc/security/otptool: Makefile
  pkgsrc/security/p5-Crypt-OpenSSL-AES: Makefile
  pkgsrc/security/p5-Crypt-OpenSSL-Bignum: Makefile
  pkgsrc/security/p5-Crypt-OpenSSL-DSA: Makefile
  pkgsrc/security/p5-Crypt-OpenSSL-RSA: Makefile
  pkgsrc/security/p5-Crypt-OpenSSL-Random: Makefile
  pkgsrc/security/p5-Crypt-SSLeay: Makefile
  pkgsrc/security/p5-Net-SSLeay: Makefile
  pkgsrc/security/p5-OpenSSL: Makefile
  pkgsrc/security/pam-ldap: Makefile
  pkgsrc/security/pam-mysql: Makefile
  pkgsrc/security/pam-p11: Makefile
  pkgsrc/security/pam-saml: Makefile
  pkgsrc/security/pam-yubico: Makefile
  pkgsrc/security/php-oauth: Makefile
  pkgsrc/security/pinentry-qt4: Makefile
  pkgsrc/security/pkcs11-helper: Makefile buildlink3.mk
  pkgsrc/security/polkit-qt: Makefile buildlink3.mk
  pkgsrc/security/pwsafe: Makefile
  pkgsrc/security/py-OpenSSL: Makefile
  pkgsrc/security/py-SSLCrypto: Makefile
  pkgsrc/security/py-crypto: Makefile
  pkgsrc/security/py-lasso: Makefile
  pkgsrc/security/py-m2crypto: Makefile
  pkgsrc/security/py-xmlsec: Makefile
  pkgsrc/security/qca-tls: Makefile
  pkgsrc/security/qca2: Makefile buildlink3.mk
  pkgsrc/security/qca2-gnupg: Makefile
  pkgsrc/security/qca2-ossl: Makefile
  pkgsrc/security/qoauth: Makefile buildlink3.mk
  pkgsrc/security/racoon2: Makefile
  pkgsrc/security/rainbowcrack: Makefile
  pkgsrc/security/scanssh: Makefile
  pkgsrc/security/seahorse: Makefile
  pkgsrc/security/seahorse-plugins: Makefile
  pkgsrc/security/sfs: Makefile
  pkgsrc/security/sign: Makefile
  pkgsrc/security/ssldump: Makefile
  pkgsrc/security/sslproxy: Makefile
  pkgsrc/security/sslscan: Makefile
  pkgsrc/security/sslwrap: Makefile
  pkgsrc/security/starttls: Makefile
  pkgsrc/security/stud: Makefile
  pkgsrc/security/stunnel: Makefile
  pkgsrc/security/sudo: Makefile
  pkgsrc/security/tcl-tls: Makefile
  pkgsrc/security/tkpasman: Makefile
  pkgsrc/security/xml-security-c: Makefile buildlink3.mk
  pkgsrc/security/xmlsec1: Makefile buildlink3.mk
  pkgsrc/security/ykclient: Makefile buildlink3.mk
  pkgsrc/security/zebedee: Makefile
  pkgsrc/security/zoneminder: Makefile
  pkgsrc/sysutils/adtool: Makefile
  pkgsrc/sysutils/bacula: Makefile
  pkgsrc/sysutils/bacula-clientonly: Makefile
  pkgsrc/sysutils/bacula-qt-console: Makefile
  pkgsrc/sysutils/boxbackup-client: Makefile
  pkgsrc/sysutils/boxbackup-server: Makefile
  pkgsrc/sysutils/btpin-qt: Makefile
  pkgsrc/sysutils/cfengine2: Makefile
  pkgsrc/sysutils/cfengine3: Makefile
  pkgsrc/sysutils/conky: Makefile
  pkgsrc/sysutils/dmg2img: Makefile
  pkgsrc/sysutils/edbus: Makefile buildlink3.mk
  pkgsrc/sysutils/efreet: Makefile buildlink3.mk
  pkgsrc/sysutils/filelight: Makefile
  pkgsrc/sysutils/filelight-kde3: Makefile
  pkgsrc/sysutils/ftwin: Makefile
  pkgsrc/sysutils/gcdmaster: Makefile
  pkgsrc/sysutils/gkrellm: Makefile buildlink3.mk
  pkgsrc/sysutils/gkrellm-est: Makefile
  pkgsrc/sysutils/gnome-commander: Makefile
  pkgsrc/sysutils/gnome-device-manager: Makefile
  pkgsrc/sysutils/gnome-pkgview: Makefile
  pkgsrc/sysutils/gnome-power-manager: Makefile
  pkgsrc/sysutils/gnome-vfs: Makefile buildlink3.mk
  pkgsrc/sysutils/gnome-vfs-monikers: Makefile
  pkgsrc/sysutils/gnome-vfsmm: Makefile buildlink3.mk
  pkgsrc/sysutils/gnome-volume-manager: Makefile
  pkgsrc/sysutils/gst-plugins0.10-gnomevfs: Makefile
  pkgsrc/sysutils/gtk-send-pr: Makefile
  pkgsrc/sysutils/gvfs: Makefile
  pkgsrc/sysutils/ipmitool: Makefile
  pkgsrc/sysutils/k3b: Makefile
  pkgsrc/sysutils/k3b-kde3: Makefile
  pkgsrc/sysutils/k4dirstat: Makefile
  pkgsrc/sysutils/kcron: Makefile
  pkgsrc/sysutils/kdf: Makefile
  pkgsrc/sysutils/kdirstat: Makefile
  pkgsrc/sysutils/kfloppy: Makefile
  pkgsrc/sysutils/krusader: Makefile
  pkgsrc/sysutils/ksystemlog: Makefile
  pkgsrc/sysutils/kuser: Makefile
  pkgsrc/sysutils/libvirt: Makefile
  pkgsrc/sysutils/monit: Makefile
  pkgsrc/sysutils/open-vm-tools: Makefile
  pkgsrc/sysutils/p5-Gnome2-VFS: Makefile buildlink3.mk
  pkgsrc/sysutils/radmind: Makefile
  pkgsrc/sysutils/rox: Makefile
  pkgsrc/sysutils/strigi: Makefile
  pkgsrc/sysutils/syslog-ng: Makefile
  pkgsrc/sysutils/virt-manager: Makefile
  pkgsrc/sysutils/webmin: Makefile
  pkgsrc/sysutils/xentools20: Makefile
  pkgsrc/sysutils/xentools3: Makefile
  pkgsrc/textproc/FlightCrew: Makefile
  pkgsrc/textproc/dikt: Makefile
  pkgsrc/textproc/gnome-spell: Makefile buildlink3.mk
  pkgsrc/textproc/gnome-subtitles: Makefile
  pkgsrc/textproc/groonga: Makefile
  pkgsrc/textproc/jansson: Makefile buildlink3.mk
  pkgsrc/textproc/liblrdf: Makefile buildlink3.mk
  pkgsrc/textproc/libnxml: Makefile buildlink3.mk
  pkgsrc/textproc/raptor: Makefile buildlink3.mk
  pkgsrc/textproc/raptor2: Makefile buildlink3.mk
  pkgsrc/textproc/rasqal: Makefile buildlink3.mk
  pkgsrc/textproc/redland: Makefile buildlink3.mk
  pkgsrc/textproc/soprano: Makefile buildlink3.mk
  pkgsrc/textproc/xmlrpc-c: Makefile buildlink3.mk
  pkgsrc/textproc/xmltooling: Makefile
  pkgsrc/time/gnotime: Makefile
  pkgsrc/time/gtodo: Makefile
  pkgsrc/time/gtodo-applet: Makefile
  pkgsrc/time/hamster-applet: Makefile
  pkgsrc/time/ktimer: Makefile
  pkgsrc/time/libgcal: Makefile buildlink3.mk
  pkgsrc/time/planner: Makefile
  pkgsrc/time/rsibreak: Makefile
  pkgsrc/time/rsibreak-kde3: Makefile
  pkgsrc/wm/compiz: Makefile buildlink3.mk
  pkgsrc/wm/compiz-fusion-plugins-extra: Makefile
  pkgsrc/wm/compiz-fusion-plugins-main: Makefile
  pkgsrc/www/SOGo: Makefile
  pkgsrc/www/amaya: Makefile
  pkgsrc/www/ap-auth-ldap: Makefile
  pkgsrc/www/ap-ssl: Makefile
  pkgsrc/www/ap-xslt: Makefile
  pkgsrc/www/ap2-auth-ldap: Makefile
  pkgsrc/www/ap2-auth-mellon: Makefile
  pkgsrc/www/ap2-auth-radius: Makefile
  pkgsrc/www/ap2-authn-otp: Makefile
  pkgsrc/www/ap2-subversion: Makefile
  pkgsrc/www/ap22-authz-ldap: Makefile
  pkgsrc/www/ap22-dnssd: Makefile
  pkgsrc/www/ap22-limitipconn: Makefile
  pkgsrc/www/ap22-vhost-ldap: Makefile
  pkgsrc/www/apache2: Makefile buildlink3.mk
  pkgsrc/www/apache22: Makefile buildlink3.mk
  pkgsrc/www/apache24: Makefile buildlink3.mk
  pkgsrc/www/aws: Makefile
  pkgsrc/www/aws-demos: Makefile
  pkgsrc/www/bozohttpd: Makefile
  pkgsrc/www/browser-bookmarks-menu: Makefile
  pkgsrc/www/c-icap: Makefile
  pkgsrc/www/cadaver: Makefile
  pkgsrc/www/cherokee: Makefile
  pkgsrc/www/cppcms: Makefile
  pkgsrc/www/crawl: Makefile
  pkgsrc/www/curl: Makefile buildlink3.mk
  pkgsrc/www/dillo: Makefile
  pkgsrc/www/drivel: Makefile
  pkgsrc/www/elinks: Makefile
  pkgsrc/www/eliom: Makefile
  pkgsrc/www/epiphany: Makefile
  pkgsrc/www/firefox: Makefile
  pkgsrc/www/firefox10: Makefile
  pkgsrc/www/firefox17: Makefile
  pkgsrc/www/firefox24: Makefile
  pkgsrc/www/firefox36: Makefile
  pkgsrc/www/htmldoc: Makefile
  pkgsrc/www/http_load: Makefile
  pkgsrc/www/icedtea-web: Makefile
  pkgsrc/www/kdewebdev3: Makefile
  pkgsrc/www/kdewebdev4: Makefile
  pkgsrc/www/lhs: Makefile
  pkgsrc/www/libmediawiki: Makefile buildlink3.mk
  pkgsrc/www/libmicrohttpd: Makefile
  pkgsrc/www/libmrss: Makefile buildlink3.mk
  pkgsrc/www/libwww: Makefile buildlink3.mk
  pkgsrc/www/lighttpd: Makefile
  pkgsrc/www/links: Makefile
  pkgsrc/www/links-gui: Makefile
  pkgsrc/www/litmus: Makefile
  pkgsrc/www/lua-curl: Makefile
  pkgsrc/www/lynx: Makefile
  pkgsrc/www/mini_httpd: Makefile
  pkgsrc/www/neon: Makefile buildlink3.mk
  pkgsrc/www/netsurf: Makefile
  pkgsrc/www/nginx: Makefile
  pkgsrc/www/nspluginwrapper: Makefile
  pkgsrc/www/ocaml-curl: Makefile
  pkgsrc/www/ocsigen: Makefile
  pkgsrc/www/p5-WWW-Curl: Makefile
  pkgsrc/www/php-curl: Makefile
  pkgsrc/www/php-http: Makefile
  pkgsrc/www/pound: Makefile
  pkgsrc/www/py-curl: Makefile
  pkgsrc/www/py-uwsgi: Makefile
  pkgsrc/www/ruby-patron: Makefile
  pkgsrc/www/screws: Makefile
  pkgsrc/www/seamonkey: Makefile
  pkgsrc/www/serf: Makefile buildlink3.mk
  pkgsrc/www/serf0: Makefile buildlink3.mk
  pkgsrc/www/shibboleth-sp: Makefile
  pkgsrc/www/sitecopy: Makefile
  pkgsrc/www/snownews: Makefile
  pkgsrc/www/squid3: Makefile
  pkgsrc/www/tinyproxy: Makefile
  pkgsrc/www/w3m: Makefile
  pkgsrc/www/w3m-img: Makefile
  pkgsrc/x11/alacarte: Makefile
  pkgsrc/x11/appmenu-qt: Makefile
  pkgsrc/x11/elementary: Makefile buildlink3.mk
  pkgsrc/x11/enlightenment: Makefile buildlink3.mk
  pkgsrc/x11/fast-user-switch-applet: Makefile
  pkgsrc/x11/gnome-applets: Makefile
  pkgsrc/x11/gnome-control-center: Makefile buildlink3.mk
  pkgsrc/x11/gnome-desktop-sharp: Makefile buildlink3.mk
  pkgsrc/x11/gnome-mag: Makefile
  pkgsrc/x11/gnome-panel: Makefile buildlink3.mk
  pkgsrc/x11/gnome-session: Makefile
  pkgsrc/x11/gnome-sharp: Makefile
  pkgsrc/x11/gnome-terminal: Makefile
  pkgsrc/x11/gnome-themes-extras: Makefile
  pkgsrc/x11/gnopernicus: Makefile
  pkgsrc/x11/grandr_applet: Makefile
  pkgsrc/x11/gtk2: Makefile
  pkgsrc/x11/gtk3: Makefile
  pkgsrc/x11/gtksourceview: Makefile
  pkgsrc/x11/gtksourceview-sharp2: Makefile
  pkgsrc/x11/kactivities: Makefile buildlink3.mk
  pkgsrc/x11/kde-baseapps4: Makefile
  pkgsrc/x11/kde-runtime4: Makefile buildlink3.mk
  pkgsrc/x11/kde-workspace4: Makefile buildlink3.mk
  pkgsrc/x11/kde3-i18n-af: Makefile
  pkgsrc/x11/kde3-i18n-ar: Makefile
  pkgsrc/x11/kde3-i18n-az: Makefile
  pkgsrc/x11/kde3-i18n-bg: Makefile
  pkgsrc/x11/kde3-i18n-bn: Makefile
  pkgsrc/x11/kde3-i18n-br: Makefile
  pkgsrc/x11/kde3-i18n-bs: Makefile
  pkgsrc/x11/kde3-i18n-ca: Makefile
  pkgsrc/x11/kde3-i18n-cs: Makefile
  pkgsrc/x11/kde3-i18n-cy: Makefile
  pkgsrc/x11/kde3-i18n-da: Makefile
  pkgsrc/x11/kde3-i18n-de: Makefile
  pkgsrc/x11/kde3-i18n-el: Makefile
  pkgsrc/x11/kde3-i18n-en_GB: Makefile
  pkgsrc/x11/kde3-i18n-eo: Makefile
  pkgsrc/x11/kde3-i18n-es: Makefile
  pkgsrc/x11/kde3-i18n-et: Makefile
  pkgsrc/x11/kde3-i18n-eu: Makefile
  pkgsrc/x11/kde3-i18n-fa: Makefile
  pkgsrc/x11/kde3-i18n-fi: Makefile
  pkgsrc/x11/kde3-i18n-fr: Makefile
  pkgsrc/x11/kde3-i18n-fy: Makefile
  pkgsrc/x11/kde3-i18n-ga: Makefile
  pkgsrc/x11/kde3-i18n-gl: Makefile
  pkgsrc/x11/kde3-i18n-he: Makefile
  pkgsrc/x11/kde3-i18n-hi: Makefile
  pkgsrc/x11/kde3-i18n-hr: Makefile
  pkgsrc/x11/kde3-i18n-hu: Makefile
  pkgsrc/x11/kde3-i18n-is: Makefile
  pkgsrc/x11/kde3-i18n-it: Makefile
  pkgsrc/x11/kde3-i18n-ja: Makefile
  pkgsrc/x11/kde3-i18n-kk: Makefile
  pkgsrc/x11/kde3-i18n-km: Makefile
  pkgsrc/x11/kde3-i18n-ko: Makefile
  pkgsrc/x11/kde3-i18n-lt: Makefile
  pkgsrc/x11/kde3-i18n-lv: Makefile
  pkgsrc/x11/kde3-i18n-mk: Makefile
  pkgsrc/x11/kde3-i18n-mn: Makefile
  pkgsrc/x11/kde3-i18n-ms: Makefile
  pkgsrc/x11/kde3-i18n-nb: Makefile
  pkgsrc/x11/kde3-i18n-nds: Makefile
  pkgsrc/x11/kde3-i18n-nl: Makefile
  pkgsrc/x11/kde3-i18n-nn: Makefile
  pkgsrc/x11/kde3-i18n-pa: Makefile
  pkgsrc/x11/kde3-i18n-pl: Makefile
  pkgsrc/x11/kde3-i18n-pt: Makefile
  pkgsrc/x11/kde3-i18n-pt_BR: Makefile
  pkgsrc/x11/kde3-i18n-ro: Makefile
  pkgsrc/x11/kde3-i18n-ru: Makefile
  pkgsrc/x11/kde3-i18n-rw: Makefile
  pkgsrc/x11/kde3-i18n-se: Makefile
  pkgsrc/x11/kde3-i18n-sk: Makefile
  pkgsrc/x11/kde3-i18n-sl: Makefile
  pkgsrc/x11/kde3-i18n-sr: Makefile
  pkgsrc/x11/kde3-i18n-sr_Latn: Makefile
  pkgsrc/x11/kde3-i18n-ss: Makefile
  pkgsrc/x11/kde3-i18n-sv: Makefile
  pkgsrc/x11/kde3-i18n-ta: Makefile
  pkgsrc/x11/kde3-i18n-tg: Makefile
  pkgsrc/x11/kde3-i18n-tr: Makefile
  pkgsrc/x11/kde3-i18n-uk: Makefile
  pkgsrc/x11/kde3-i18n-uz: Makefile
  pkgsrc/x11/kde3-i18n-vi: Makefile
  pkgsrc/x11/kde3-i18n-zh_CN: Makefile
  pkgsrc/x11/kde3-i18n-zh_TW: Makefile
  pkgsrc/x11/kdebase3: Makefile
  pkgsrc/x11/kdebindings-ruby: Makefile
  pkgsrc/x11/kdelibdocs3: Makefile
  pkgsrc/x11/kdelibs3: Makefile
  pkgsrc/x11/kdelibs4: Makefile
  pkgsrc/x11/kkbswitch: Makefile
  pkgsrc/x11/kmessage: Makefile
  pkgsrc/x11/konsole: Makefile
  pkgsrc/x11/lablgtk: Makefile
  pkgsrc/x11/modular-xorg-server: Makefile
  pkgsrc/x11/py-gnome2: Makefile buildlink3.mk
  pkgsrc/x11/py-gnome2-desktop: Makefile buildlink3.mk
  pkgsrc/x11/py-gnome2-extras: Makefile buildlink3.mk
  pkgsrc/x11/py-kde4: Makefile
  pkgsrc/x11/py-qt4: Makefile
  pkgsrc/x11/py-qt4-qscintilla: Makefile buildlink3.mk
  pkgsrc/x11/qt3: Makefile
  pkgsrc/x11/qt3-docs: Makefile
  pkgsrc/x11/qt3-libs: Makefile
  pkgsrc/x11/qt3-mysql: Makefile
  pkgsrc/x11/qt3-pgsql: Makefile
  pkgsrc/x11/qt3-tools: Makefile
  pkgsrc/x11/qt4-creator: Makefile
  pkgsrc/x11/qt4-docs: Makefile
  pkgsrc/x11/qt4-libs: Makefile buildlink3.mk
  pkgsrc/x11/qt4-mng: Makefile
  pkgsrc/x11/qt4-mysql: Makefile
  pkgsrc/x11/qt4-pgsql: Makefile
  pkgsrc/x11/qt4-qdbus: Makefile buildlink3.mk
  pkgsrc/x11/qt4-qscintilla: Makefile buildlink3.mk
  pkgsrc/x11/qt4-sqlite3: Makefile
  pkgsrc/x11/qt4-tiff: Makefile
  pkgsrc/x11/qt4-tools: Makefile buildlink3.mk
  pkgsrc/x11/qt5: Makefile
  pkgsrc/x11/qt5-dbus: Makefile
  pkgsrc/x11/qt5-mysql: Makefile
  pkgsrc/x11/qt5-odbc: Makefile
  pkgsrc/x11/qt5-psql: Makefile
  pkgsrc/x11/qt5-qtbase: Makefile
  pkgsrc/x11/qt5-qtdeclarative: Makefile
  pkgsrc/x11/qt5-qtdoc: Makefile
  pkgsrc/x11/qt5-qtgraphicaleffects: Makefile
  pkgsrc/x11/qt5-qtimageformats: Makefile
  pkgsrc/x11/qt5-qtlocation: Makefile
  pkgsrc/x11/qt5-qtmultimedia: Makefile
  pkgsrc/x11/qt5-qtquick1: Makefile
  pkgsrc/x11/qt5-qtquickcontrols: Makefile
  pkgsrc/x11/qt5-qtscript: Makefile
  pkgsrc/x11/qt5-qtsensors: Makefile
  pkgsrc/x11/qt5-qtserialport: Makefile
  pkgsrc/x11/qt5-qtsvg: Makefile
  pkgsrc/x11/qt5-qttools: Makefile
  pkgsrc/x11/qt5-qttranslations: Makefile
  pkgsrc/x11/qt5-qtwebkit: Makefile
  pkgsrc/x11/qt5-qtx11extras: Makefile
  pkgsrc/x11/qt5-qtxmlpatterns: Makefile
  pkgsrc/x11/qt5-sqlite3: Makefile
  pkgsrc/x11/qwt-qt4: Makefile
  pkgsrc/x11/qwt6-qt4: Makefile
  pkgsrc/x11/qwtplot3d-qt4: Makefile
  pkgsrc/x11/razor-qt: Makefile
  pkgsrc/x11/wmweather: Makefile
  pkgsrc/x11/x11vnc: Makefile
  pkgsrc/x11/x3270: Makefile
  pkgsrc/x11/xlockmore: Makefile

  Log Message:
  Recursive PKGREVISION bump for OpenSSL API version bump.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  9 14:08:17 UTC 2014

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php54: Makefile distinfo

  Log Message:
  Update php54 to 5.4.26 (PHP 5.4.26).

  Version 5.4.26

  06-Mar-2014

  * JSON:

    - Fixed bug #65753 (JsonSerializeable couldn't implement on module extension)

  * Fileinfo:

    - Fixed bug #66731 (file: infinite recursion) (CVE-2014-1943).
    - Fixed bug #66820 (out-of-bounds memory access in fileinfo) (CVE-2014-2270).

  * LDAP:

    - Implemented ldap_modify_batch (https://wiki.php.net/rfc/ldap_modify_batch).

  * Openssl:

    - Fixed bug #66501 (Add EC key support to php_openssl_is_private_key).

  * Pgsql:

    - Added warning for dangerous client encoding and remove possible injections
      for pg_insert()/pg_update()/pg_delete()/pg_select().

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  9 14:09:20 UTC 2014

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php55: Makefile distinfo

  Log Message:
  Update php55 to 5.5.10 (PHP 5.5.10).

  Version 5.5.10

  6-Mar-2014

  * Core:

    - Fixed bug #66574 (Allow multiple paths in php_ini_scanned_path).

  * Date:

    - Fixed bug #45528 (Allow the DateTimeZone constructor to accept timezones
      per offset too).

  * Fileinfo:

    - Fixed bug #66731 (file: infinite recursion (CVE-2014-1943)).
    - Fixed bug #66820 (out-of-bounds memory access in fileinfo (CVE-2014-2270)).

  * GD:

    - Fixed bug #66815 (imagecrop(): insufficient fix for NULL defer
      (CVE-2013-7327)).

  * JSON:

    - Fixed bug #65753 (JsonSerializeable couldn't implement on module extension).
  * LDAP:
    - Implemented ldap_modify_batch (https://wiki.php.net/rfc/ldap_modify_batch).
  * Openssl:
    - Fixed bug #66501 (Add EC key support to php_openssl_is_private_key).

  * PCRE:

    - Upgraded to PCRE 8.34.

  * Pgsql:

    - Added warning for dangerous client encoding and remove possible injections
      for pg_insert()/pg_update()/pg_delete()/pg_select().

(tron)

2014-03-11 15:13:14 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4339 - requested by taca
databases/ruby-activerecord32: security update
devel/ruby-activemodel32: security update
devel/ruby-activesupport32: security update
devel/ruby-railties32: security update
mail/ruby-actionmailer32: security update
www/ruby-actionpack32: security update
www/ruby-activeresource32: security update
www/ruby-rails32: security update

Revisions pulled up:
- databases/ruby-activerecord32/distinfo                        1.15
- devel/ruby-activemodel32/distinfo                            1.15
- devel/ruby-activesupport32/distinfo                          1.15
- devel/ruby-railties32/distinfo                                1.15
- lang/ruby/rails.mk                                            1.47
- mail/ruby-actionmailer32/distinfo                            1.15
- www/ruby-actionpack32/distinfo                                1.15
- www/ruby-activeresource32/distinfo                            1.15
- www/ruby-rails32/distinfo                                    1.15

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  2 14:59:25 UTC 2014

  Modified Files:
  pkgsrc/lang/ruby: rails.mk

  Log Message:
  Start update of Ruby on Rails to 3.2.17.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  2 15:00:23 UTC 2014

  Modified Files:
  pkgsrc/devel/ruby-activesupport32: distinfo

  Log Message:
  Update ruby-activesupport32 to 3.2.17.

  Update of version number only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  2 15:00:59 UTC 2014

  Modified Files:
  pkgsrc/devel/ruby-activemodel32: distinfo

  Log Message:
  Update ruby-activemodel32 to 3.2.17.

  Update of version number only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  2 15:01:36 UTC 2014

  Modified Files:
  pkgsrc/databases/ruby-activerecord32: distinfo

  Log Message:
  Update ruby-activerecord32 to 3.2.17.

  Update of version number only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  2 15:02:17 UTC 2014

  Modified Files:
  pkgsrc/www/ruby-activeresource32: distinfo

  Log Message:
  Update ruby-activeresource32 to 3.2.17.

  Update of version number only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  2 15:03:02 UTC 2014

  Modified Files:
  pkgsrc/www/ruby-actionpack32: distinfo

  Log Message:
  Update ruby-actionpack32 to 3.2.17.

  *  Use the reference for the mime type to get the format

      Fixes: CVE-2014-0082

  *  Escape format, negative_format and units options of number helpers

      Fixes: CVE-2014-0081

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  2 15:03:37 UTC 2014

  Modified Files:
  pkgsrc/mail/ruby-actionmailer32: distinfo

  Log Message:
  Update ruby-actionmailer32 to 3.2.17.

  Update of version number only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  2 15:04:04 UTC 2014

  Modified Files:
  pkgsrc/devel/ruby-railties32: distinfo

  Log Message:
  Update ruby-railties32 to 3.2.17.

  Update of version number only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Mar  2 15:04:29 UTC 2014

  Modified Files:
  pkgsrc/www/ruby-rails32: distinfo

  Log Message:
  Update ruby-rails32 to 3.2.17.

  Update of version number only.

(tron)

2014-03-11 14:34:41 UTC MAIN commitmail json YAML

2014-03-11 14:07:04 UTC MAIN commitmail json YAML

Introduce infrastructure support for SMF.

SMF is the Service Management Facility, the default init system in
Solaris and derivatives since version 10.  This adds "smf" to the list
of supported INIT_SYSTEM types, and makes it the default init system on
platforms where it is available.

Packages can introduce SMF support by providing a manifest file, by
default located in ${FILESDIR}/smf/manifest.xml but manifests under
${WRKSRC} can be used too if the package source includes one.

SMF method scripts are supported too if required, using SMF_METHODS in a
similar manner to RCD_SCRIPTS.

Many parts of the SMF infrastructure are configurable, see mk/smf.mk for
the full details.

(jperkin)

2014-03-11 14:05:19 UTC MAIN commitmail json YAML

2014-03-11 13:45:07 UTC MAIN commitmail json YAML

Add initial support for alternative init systems.

This commit introduces an INIT_SYSTEM variable which will determine the
type of init system to be used on the target system, supporting "rc.d"
at this time.

The pkginstall infrastructure is changed to only install RCD_SCRIPTS if
INIT_SYSTEM is set to "rc.d", and PLIST entries for rc.d scripts are
now handled automatically based on RCD_SCRIPTS.

(jperkin)

2014-03-11 12:47:11 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4338 - requested by taca
www/curl: security update

Revisions pulled up:
- www/curl/Makefile                                            1.133-1.134
- www/curl/PLIST                                                1.43
- www/curl/distinfo                                            1.91-1.92
- www/curl/patches/patch-aa                                    1.25

---
  Module Name: pkgsrc
  Committed By: adam
  Date: Tue Dec 31 11:48:03 UTC 2013

  Modified Files:
  pkgsrc/www/curl: Makefile PLIST distinfo

  Log Message:
  Changes 7.34.0:
  SSL: protocol version can be specified more precisely
  imap/pop3/smtp: Added graceful cancellation of SASL authentication
  Add "Happy Eyeballs" for IPv4/IPv6 dual connect attempts
  base64: Added validation of base64 input strings when decoding
  curl_easy_setopt: Added the ability to set the login options separately
  smtp: Added support for additional SMTP commands
  curl_easy_getinfo: Added CURLINFO_TLS_SESSION for accessing TLS internals
  nss: allow to use TLS > 1.0 if built against recent NSS
  SECURITY: added this document to describe our security processes
  parseconfig: warn if unquoted white spaces are detected

  Bugfixes:
  SECURITY VULNERABILITY: libcurl cert name check ignore with GnuTLS
  darwinssl: un-break iOS build after PKCS/12 feature added
  tool: use XFERFUNCTION to save some casts
  usercertinmem: fix memory leaks
  ssh: Handle successful SSH_USERAUTH_NONE
  NSS: acknowledge the --no-sessionid/CURLOPT_SSL_SESSIONID_CACHE option
  test906: Fixed failing test on some platforms
  sasl: initialize NSS before using NTLM crypto
  sasl: Fixed memory leak in OAUTH2 message creation
  imap/pop3/smtp: Fixed QUIT / LOGOUT being sent when SSL connect fails
  cmake: unbreak for non-Windows platforms
  ssh: initialize per-handle data in ssh_connect()
  glob: fix broken URLs
  configure: check for long long when building with cyassl
  CURLOPT_RESOLVE: mention they don't time-out
  docs/examples/httpput.c: fix build for MSVC
  FTP: make the data connection work when going through proxy
  NSS: support for CERTINFO feature
  curl_multi_wait: accept 0 from multi_timeout() as valid timeout
  glob_range: pass the closing bracket for a-z ranges
  tool_help: Updated --list-only description to include POP3
  Curl_ssl_push_certinfo_len: don't %.*s non-zero-terminated string
  cmake: fix Windows build with IPv6 support
  ares: Fixed compilation under Visual Studio 2012
  curl_easy_setopt.3: clarify CURLOPT_SSL_VERIFYHOST documentation
  curl.1: mention that -O does no URL decoding
  darwinssl: PKCS/12 import feature now requires Lion or later
  darwinssl: check for SSLSetSessionOption() presence when toggling BEAST
  configure: Fix test with -Werror=implicit-function-declaration
  sigpipe: factor out sigpipe_reset from easy.c
  curl_multi_cleanup: ignore SIGPIPE
  globbing: curl glob counter mismatch with {} list use
  parseconfig: dash options can't specified with colon or equals
  digest: fix CURLAUTH_DIGEST_IE
  curl.h: for OpenBSD
  darwinssl: Fix #if 10.6.0 for SecKeychainSearch
  TFTP: fix return codes for connect timeout
  login options: remove the ;[options] support from CURLOPT_USERPWD
  imap: Fixed incorrect fallback to clear text authentication
  parsedate: avoid integer overflow
  curl.1: document -J doesn't %-decode
  multi: add timer inaccuracy margin to timeout/connecttimeout

---
  Module Name: pkgsrc
  Committed By: adam
  Date: Sat Feb  1 11:07:14 UTC 2014

  Modified Files:
  pkgsrc/www/curl: Makefile distinfo
  pkgsrc/www/curl/patches: patch-aa

  Log Message:
  Changes 7.35.0:
  imap/pop3/smtp: Added support for SASL authentication downgrades
  imap/pop3/smtp: Extended the login options to support multiple auth mechanisms
  TheArtOfHttpScripting: major update, converted layout and more
  mprintf: Added support for I, I32 and I64 size specifiers
  makefile: Added support for VC7, VC11 and VC12

  Bugfixes:
  SECURITY ADVISORY: re-use of wrong HTTP NTLM connection
  curl_easy_setopt: Fixed OAuth 2.0 Bearer option name
  pop3: Fixed APOP being determined by CAPA response rather than by timestamp
  Curl_pp_readresp: zero terminate line
  FILE: don't wait due to CURLOPT_MAX_RECV_SPEED_LARGE
  docs: mention CURLOPT_MAX_RECV/SEND_SPEED_LARGE don't work for FILE://
  pop3: Fixed auth preference not being honored when CAPA not supported
  imap: Fixed auth preference not being honored when CAPABILITY not supported
  threaded resolver: Use pthread_t * for curl_thread_t
  FILE: we don't support paused transfers using this protocol
  connect: Try all addresses in first connection attempt
  curl_easy_setopt.3: Added SMTP information to CURLOPT_INFILESIZE_LARGE
  OpenSSL: Fix forcing SSLv3 connections
  openssl: allow explicit sslv2 selection
  FTP parselist: fix "total" parser
  conncache: fix possible dereference of null pointer
  multi.c: fix possible dereference of null pointer
  mk-ca-bundle: introduces -d and warns about using this script
  ConnectionExists: fix NTLM check for new connection
  trynextip: fix build for non-IPV6 capable systems
  Curl_updateconninfo: don't do anything for UDP "connections"
  darwinssl: un-break Leopard build after PKCS-12 change
  threaded-resolver: never use NULL hints with getaddrinf
  multi_socket: remind app if timeout didn't run
  OpenSSL: deselect weak ciphers by default
  error message: Sensible message on timeout when transfer size unknown
  curl_easy_setopt.3: mention how to unset CURLOPT_INFILESIZE*
  win32: Fixed use of deprecated function 'GetVersionInfoEx' for VC12
  configure: fix gssapi linking on HP-UX
  chunked-parser: abort on overflows, allow 64 bit chunks
  chunked parsing: relax the CR strictness
  cookie: max-age fixes
  progress bar: always update when at 100%
  progress bar: increase update frequency to 10Hz
  tool: Fixed incorrect return code if command line parser runs out of memory
  tool: Fixed incorrect return code if password prompting runs out of memory
  HTTP POST: omit Content-Length if data size is unknown
  GnuTLS: disable insecure ciphers
  GnuTLS: honor --slv2 and the --tlsv1[.N] switches
  multi: Fixed a memory leak on OOM condition
  netrc: Fixed a memory and file descriptor leak on OOM
  getpass: fix password parsing from console
  TFTP: fix crash on time-out
  hostip: don't remove DNS entries that are in use
  tests: lots of tests fixed to pass the OOM torture tests

(tron)

2014-03-11 12:16:49 UTC MAIN commitmail json YAML

Updated net/mikutter to 0.2.2.1537

(obache)

2014-03-11 12:16:39 UTC MAIN commitmail json YAML

Update mikutter to 0.2.2.1537.

* update gtk2 gem to 2.2.2
* fixes startup with broken cache
* fixes open embeded URL longer than 140 characters

(obache)

2014-03-11 12:14:17 UTC MAIN commitmail json YAML

Note update of ruby-gnom2 packages.

(obache)

2014-03-11 12:11:46 UTC MAIN commitmail json YAML

Update ruby-gnome2 to 2.2.0.

== Ruby-GNOME2 2.2.0: 2014-03-09

It is a release that Ruby/GIO2 is migrated to
Ruby/GObjectIntrospection based bindings.

Some API changes in Ruby/GIO2 are expected but unexpected API changes
may exist. If you find API change, please report it. If the API change
provides non Rubyish API, it will be a bug.

=== Changes

==== Ruby/GLib2

  * Improvements
    * Stopped to use deprecated API internally in G_REPLACE_SET_PROPERTY.
    * Added RG_REPLACE_SET_PROPERTY.
    * Reduced locking on object creation.
    * Exported rbg_inspect().
    * Created code level error.
    * Raised code level error instead of domain level error.

  * Fixes
    * Fixed a bug that wrong error code may be used.

==== Ruby/GTK2

  * Improvements
    * Suppressed warnings on startup.

  * Fixes
    * [windows] Suppressed IME related warnings.
      [Reported by OBATA Akio]
    * [GitHub#222] Fixed a bug that Gdk::EventAny related methods
      aren't used by other Gdk::Event classes.
      [Reported by mtasaka]

==== Ruby/GDK3

  * Improvements
    * Added Gdk::Display#device_manager.
    * Added Gdk::Window#display.
    * Suppressed warnings on startup.
    * Added Gdk::Event::PROPAGATE.
    * Added Gdk::Event::STOP.

  * Fixes
    * [windows] Suppressed IME related warnings.
    * Fixed a bug that Gdk::DeviceManager is wrong object.
    * [GitHub#222] Fixed a bug that Gdk::EventAny related methods
      aren't used by other Gdk::Event classes.
      [Reported by mtasaka]

==== Ruby/GTK3

  * Improvements
    * Added Gtk::MenuButton.
    * [GitHub#219] Added Gtk::LevelBar. [Patch by cosmo0920]
    * Added Gtk::IconView.
    * [GitHub#206] Added Gtk::HeaderBar. [Reported by dark-yux]
    * [GitHub#223] Added Gtk::Stack. [Patch by cosmo0920]
    * Suppressed warnings on startup.
    * Added Gtk::Revealer.
    * Updated sample scripts.
    * [GitHub#227] Added Gtk::SearchBar. [patch by cosmo0920]

==== Ruby/GIO2

  * Improvements
    * Migrated to Ruby/GObjectIntrospection based bindings.
    * [SF.net#187] Supported Gio::ContentType.guess.
      [Reported by neversleep1911]
    * Added Gio::Resources.lookup_data.
    * Added Gio::Resources.open_stream.
    * Added Gio::Resources.enumerate_children.
    * Added Gio::Resources.get_info.
    * Added Gio::Resources.register.
    * Added Gio::Resources.unregister.

  * Changes
    * Removed Gio::Socket#create_source. Use
      Gio::InputStream#create_source or
      Gio::OutputStream#create_source instead.
    * Removed Gio::InetAddress.new_from_string. Use
      Gio::InetAddress.new instead.
    * Removed Gio::InetAddress.new_any. Use
      Gio::InetAddress.any instead.
    * Removed Gio::InetAddress.new_l. Use
      Gio::InetAddress.any instead.

  * Fixes
    * [SF.net#186] Fixed a bug that Gio::ContentType module functions
      raises "no implicit conversion" error.
      [Reported by neversleep1911]

==== Ruby/Pango

  * Improvements
    * [ruby-gnome2-devel-en] Re-supported build on CentOS 5.
      [Reported by Grant Schoep]

==== Ruby/Poppler

  * Improvements
    * Suppressed a warning on startup.

==== Ruby/GtkSourceView2

  * Improvements
    * [GitHub#226] Suppressed warnings.
      [Patch by cosmo0920]

  * Fixes
    * [GitHub#215] Fixed a return value for
      GtkSource#get_mark_category_background.
      [Reported by mtasaka]

==== Ruby/GObjectIntrospection

  * Improvements
    * [GitHub#216] Suppressed warnings on armv7hl.
      [Reported by mtasaka]
    * Supported freeing interface.
    * Supported freeing struct.
    * Supported String as void * value for value.
    * Supported freeing array of int8.
    * Supported freeing array of uint8.
    * Supported defining errors.
    * Improved guessing target method for overloaded method.
    * Supported array length.
    * Supported inout array.
    * Converted GBytes to String instead of wrapped GBytes.
    * Supported all exception types rather than GLib::Error.

  * Changes
    * Changed returned value of inout array to an array from an array
      and array length.

  * Fixes
    * [GitHub#216] Fixed test failures on i686 environment.
      [Reported by mtasaka]

==== Ruby/ClutterGTK

  * Improvements
    * Added duplicated Clutter.init check.

=== Thanks

  * OBATA Akio
  * mtasaka
  * cosmo0920
  * Grant Schoep
  * dark-yux
  * neversleep1911

(obache)

2014-03-11 12:06:54 UTC MAIN commitmail json YAML

Add forgotten ruby-naught, fixes bulk builds.

(jperkin)

2014-03-11 11:56:23 UTC MAIN commitmail json YAML

Updated mail/msmtp to 1.4.32

(ryoon)

2014-03-11 11:55:39 UTC MAIN commitmail json YAML

Update to 1.4.32

Changelog:
Version 1.4.32:
- A recipient list on the command line is now parsed as if it appeared in a
  mail header.

(ryoon)

2014-03-11 11:51:23 UTC MAIN commitmail json YAML

+ eric5-5.4.2, ingo-3.1.4, kronolith-4.1.5, libmodplug-0.8.8.5,
  lynx-2.8.8rel2, mit-krb5-1.12.1, mpop-1.0.29, msmtp-1.4.32,
  socat-1.7.2.4, sudo-1.8.10, turba-4.1.4.

(wiz)

2014-03-11 11:50:48 UTC MAIN commitmail json YAML

Updated devel/xulrunner24 to 24.3.0

(ryoon)

2014-03-11 11:50:13 UTC MAIN commitmail json YAML

Update to 24.3.0

Changelog:
Fixed in Firefox ESR 24.3
MFSA 2014-13 Inconsistent JavaScript handling of access to Window objects
MFSA 2014-12 NSS ticket handling issues
MFSA 2014-09 Cross-origin information leak through web workers
MFSA 2014-08 Use-after-free with imgRequestProxy and image proccessing
MFSA 2014-04 Incorrect use of discarded images by RasterImage
MFSA 2014-02 Clone protected content with XBL scopes
MFSA 2014-01 Miscellaneous memory safety hazards (rv:27.0 / rv:24.3)

(ryoon)

2014-03-11 10:29:46 UTC MAIN commitmail json YAML

Updated lang/ocaml to 4.01.0nb2

(jperkin)

2014-03-11 10:29:30 UTC MAIN commitmail json YAML

Don't limit the stub functions to x86_64 only on newer Darwin, i386
needs them too.  Fixes various dependencies.

Bump PKGREVISION.

(jperkin)

2014-03-11 10:26:22 UTC MAIN commitmail json YAML

Updated multimedia/ffmpeg to 20140305.1.2.6

(adam)

2014-03-11 10:25:22 UTC MAIN commitmail json YAML

Changes 1.2.6:
* avcodec/utvideoenc: fix slice_bits size
* avcodec/snow: split block clipping checks
* avcodec/ansi: fix integer overflow
* avcodec/msrle: use av_image_get_linesize() to calculate the linesize
* avformat/mpegtsenc: Check data array size in mpegts_write_pmt()
* avcodec/wmalosslessdec: fix mclms_coeffs* array size
* samplefmt: avoid integer overflow in av_samples_get_buffer_size()
* avcodec/vc1: reset fcm/field_mode in non advanced header parsing
* avcodec/takdec: always check bits_per_raw_sample
* avcodec/vmnc: Check  that rectangles are within the picture
* dnxhdenc: fix mb_rc size
* pthread_frame: flush all threads on flush, not just the first one
* rtpdec_asf: Copy the need_parsing field from the chained demuxer
* Fix compilation on ARM with android gcc 4.7
* Allow decoding of slightly broken Nikon avi files.

(adam)

2014-03-11 10:03:55 UTC MAIN commitmail json YAML

Updated graphics/rabbit to 2.1.2

(obache)

2014-03-11 10:03:46 UTC MAIN commitmail json YAML

Update rabbit to 2.1.2.

== 2.1.2: 2014-03-08

A bug fix release of 2.1.1.

=== Improvements

==== rabbit

  * Supported auto source reloading in information window.
    [GitHub#23] [Reported by Kazuhiro NISHIYAMA]
  * Add ((%--check-syntax%)) option that checks source syntax and exits.
    [GitHub#27] [Reported by HAYASHI Kentaro]
  * Supported inline code markup "(({`...`}))" in Markdown.
    [GitHub#29] [Patch by KITAITI Makoto]
  * Supported newline markup "(({\\}))" in Markdown.
    [GitHub#29] [Patch by KITAITI Makoto]

==== rabbit-slide

  * Supported README written in Markdown.
  * Added "tag" task that tags by Git.
  * Supported auto adding "theme.rb" file to gem if the file exists.
  * Supported (({youtube_id})) parameter in config.yaml.
    You can specify YouTube video that is associated with your
    presentation. You will find a link at slide.rabbit-shocker.org
    when you specify it.

==== Document

  * Updated install document for Homebrew.
    [Yutaro Sugai]
  * Updated install document on Windows.
    [Masafumi Yokoyama]

=== Fixes

==== rabbit

  * Fixed a bug that configuration dialog for graffiti mode can't be opened.
    [shocker-en:63] [Reported by Enrico Rivarola]

==== rabbit-slide

  * Fixed a bug that gem can be created without PDF.

=== Thanks

  * Kazuhiro NISHIYAMA
  * Yutaro Sugai
  * Masafumi Yokoyama
  * HAYASHI Kentaro
  * Enrico Rivarola
  * KITAITI Makoto

== 2.1.1: 2013-06-26

A bug fix release of 2.1.0.

=== Fixes

==== rabbit

  * Fixed a bug that rabbit can't start by NameError.
    [GitHub#25] [Reported by Yoshihide Chubachi]

=== Thanks

  * Yoshihide Chubachi

(obache)

2014-03-11 10:00:30 UTC MAIN commitmail json YAML

Updated devel/ruby-gettext to 3.1.1

(obache)

2014-03-11 10:00:21 UTC MAIN commitmail json YAML

Update ruby-gettext to 3.1.1.

# News

## 3.1.1: 2014-02-23

### Improvements

  * `rmsgcat`: Added `--remove-header-field` option.

### Fixes

  * `rmsgcat`: Fixed a bug that fuzzy entries are remained when
    `--no-fuzzy` option is used with `--no-all-comments`.

## 3.1.0: 2014-02-09

### Improvements

  * `rmsgcat`: Added `--no-obsolete-entries` option.

## 3.0.9: 2014-02-09

### Improvements

  * `rmsgmerge`: Improves fuzzy matching speed.

## 3.0.8: 2014-02-09

### Fixes

  * `rmsginit`: Fixed a typo.

## 3.0.7: 2014-02-09

### Improvements

  * `rmsginit`: Added `--no-translator`.
  * `rmsginit`: Added `--translator-name`.
  * `rmsginit`: Added `--translator-email`.

## 3.0.6: 2014-02-02

### Improvements

  * Added {GetText::POEntry#translated?}.
  * `rmsgcat` chooses translated entry if it exists.
  * `rmsgmerge`: Added `--no-obsolete-entries` option.

## 3.0.5: 2014-02-02

### Fixes

  * Added missing `require` for {GetText::Tools::MsgCat}.

## 3.0.4: 2014-02-02

### Improvements

  * Supported `Module#prepend`. [GitHub#29] [Reported by akira yamada]
  * Added {GetText::POEntry#fuzzy?}.
  * Added {GetText::Tools::MsgCat}.
  * Added `rmsgcat` command. [GitHub#23] [Requested by Andreas Loupasakis]
  * Changed `:references` {GetText::PO#order} value to `:reference`.
    `:references` is still usable but it is deprecated. It will be
    remove at 4.0.0. Don't use it for newly written code.
  * Removed `--no-sort-by-msgid` of `rmsgmerge` feature. It is not
    straightforward behavior.
  * Removed `--no-sort-by-file` of `rmsgmerge` feature. It is not
    straightforward behavior.
  * Added `--sort-by-location` to `rmsgmerge`.
  * Added `:include_translator_comment` option to
    {GetText::POEntry#to_s} options.
  * Added `:include_extracted_comment` option to
    {GetText::POEntry#to_s} options.
  * Added `:include_flag_comment` option to {GetText::POEntry#to_s}
    options.
  * Added `:include_previous_comment` option to
    {GetText::POEntry#to_s} options.
  * Added `:include_all_comments` option to {GetText::POEntry#to_s}
    options.
  * Added {GetText::POEntry#flags} and
    {GetText::POEntry#flags=}. {GetText::POEntry#flag} and
    {GetText::POEntry#flag=} are deprecated. Don't use them for newly
    written code.

### Fixes

  * Fixed `--sort-output` of `rmsgmerge` behavior. It used location for
    sort key but it was not GNU gettext compatible behavior. GNU
    gettext uses msgid for sort key. Now, `--sort-output` uses
    msgid like GNU gettext.

### Thanks

  * akira yamada
  * Andreas Loupasakis

## 3.0.3: 2013-12-15

### Improvements

  * Documented {GetText::Tools::Task#namespace_prefix}.
  * Added `--copyright-year` option to {GetText::Tools::XGetText}.
    [GitHub#25] [Debian #726941] [Reported by Francesco Poli]
    [Reported by 375gnu]
  * {GetText::Tools::XGetText} respects new lines in translate target
    message.
  * Added {GetText::POEntry#header?}.
  * Added {GetText::POEntry#obsolete?}.
  * Added `--no-fuzzy-matching` option to {GetText::Tools::MsgMerge}.
    [GitHub#28] [Reported by Sam Lown]

### Fixes

  * Fixed cache key hash conflict on armv7hl. Memoization feature is
    removed for this fix. If you get performance issue. Please report
    it. We will solve the issue. See also locale gem's GitHub issue #3.
    [GitHub#22] [Reported by mtasaka]
  * Fixed a bug that obsolete comment misses the last new line.

### Thanks

  * Francesco Poli
  * 375gnu
  * Sam Lown
  * mtasaka

## 3.0.2: 2013-09-29

### Improvements

  * Added {GetText::PO#empty?}.
  * Added `:encoding` option to {GetText::POEntry#to_s}.
  * xgettext: Added `--no-location` option.
  * xgettext: Added `--sort-output` option.
  * xgettext: Added `--sort-by-file` option.
  * xgettext: Added `--sort-by-msgid` option.
  * xgettext: Added `--width` option.
  * xgettext: Added `--no-wrap` option.

## 3.0.1: 2013-09-20

### Improvements

  * Removed an unused file. [GitHub#19] [Reported by Ladislav Slez叩k]
  * msginit: Added full user name guessing by /etc/passwd.
  * incompatible: {GetText::Tools::Task} no longer require spec.
  * Added {GetText::Tools::Task.define}. It is the recommended API
    rather than {GetText::Tools::Task.new}.
  * Supported "utf8" as a valid charset.
    [GitHub#20][Reported by Antonio Terceiro]
  * Added {GetText::Tools::Task#enable_description=}.
  * Added {GetText::Tools::Task#enable_description?}.
  * Added {GetText::Tools::Task#enable_po=}.
  * Added {GetText::Tools::Task#enable_po?}.
  * Added {GetText::Tools::Task#msgmerge_options=}.
  * Added {GetText::Tools::Task#msgmerge_options}.
  * task: Added `gettext:po:add[LOCALE]` task.
  * msgmerge: add `--sort-output` option.
  * msgmerge: add `--sort-by-file` option.
  * msgmerge: add `--sort-by-msgid` option.
  * msgmerge: add `--no-location` option.
  * msgmerge: add `--width` option.
  * msgmerge: add `--no-wrap` option.
  * msgmerge: add `--update` option.

### Thanks

  * Ladislav Slez叩k
  * Antonio Terceiro

(obache)

2014-03-11 09:51:00 UTC MAIN commitmail json YAML

Updated devel/ruby-locale to 2.1.0

(obache)

2014-03-11 09:50:50 UTC MAIN commitmail json YAML

Update ruby-locale to 2.1.0.

## 2.1.0: 2013-12-15

### Fixes

  * Fixed a bug that memoization key hash collision on armv7hl.
    Memoization feature is removed for this fix. If you get
    performance issue. Please report it. We will solve the issue.
    [GitHub#3] [Reported by mtasaka]

### Thanks

  * mtasaka

## 2.0.9: 2013-09-20

Locale handling fix release.

### Improvements

  * Added license metadata to gem package.
    [GitHub#1] [Suggested by jordimassaguerpla]

### Fixes

  * Added missing .yardopts file.
  * Fixed a bug that wrong environment value is used.
    [Debian:#520181][Debian:#690572][GitHub#2]
    [Reported by Stefano Zacchiroli][Reported by Hleb Valoshka]

### Thanks

  * jordimassaguerpla
  * Stefano Zacchiroli
  * Hleb Valoshka

(obache)

2014-03-11 09:43:15 UTC MAIN commitmail json YAML

Updated textproc/cabocha to 0.68

(obache)

2014-03-11 09:43:06 UTC MAIN commitmail json YAML

Update cabocha to 0.68.

2014/03/10 0.68
* remove tournament model
* add -u option (same as MeCab)

(obache)

2014-03-11 09:16:58 UTC MAIN commitmail json YAML

fixes for old bmake, undefined variable is not treated as empty.

(obache)

2014-03-11 09:11:36 UTC MAIN commitmail json YAML

Updated net/zeromq to 4.0.4

(obache)

2014-03-11 09:11:25 UTC MAIN commitmail json YAML

Update zeromq to 4.0.4.

0MQ version 4.0.4 stable, released on 2014/03/10
================================================

Bug Fixes
---------

* Fixed #909; out of tree build issue on Linux.

* Fixed #888; hangs on terminate when inproc connected but never bound.

* Fixed #868; assertion failure at ip.cpp:137 when using port scanner.

* Fixed #818; fix timestamp counter on s390/s390x.

* Fixed #817; only export zmq_* symbols.

* Fixed #797; fixed setting TCP keepalive on Windows.

* Fixed #775; compile error on Windows.

* Fixed #763; when talking to a ZMTP v1 peer (libzmq 2.2), a socket would
  send an extra identity frame at the start of the connection.

* Fixed LIBZMQ-576 - Crash closing a socket after zmq_msg_send returns
  EAGAIN (reverts LIBZMQ-497)

* Fixed LIBZMQ-584; subscription filters getting lost on reconnection.

(obache)

2014-03-10 23:14:35 UTC MAIN commitmail json YAML

Force the use of clang on Snow Leopard, the llvm-backed gcc is unable to
compile Python 3.3 correctly, and as per http://bugs.python.org/issue13241
the Python developers are uninterested in fixing this.

(jperkin)

2014-03-10 20:52:07 UTC MAIN commitmail json YAML

Update to 24.3.0

* Sync with firefox24-24.3.0

(ryoon)

2014-03-10 20:50:35 UTC MAIN commitmail json YAML

Detect Clang and apply proper compiler settings.
This fixes bootstrapping on FreeBSD 10 where cc is Clang
pretending poorly to be GCC.

(asau)

2014-03-10 20:40:28 UTC MAIN commitmail json YAML

Updated www/firefox24 to 24.3.0

(ryoon)

2014-03-10 20:39:38 UTC MAIN commitmail json YAML

2014-03-10 20:39:20 UTC MAIN commitmail json YAML

Update to 24.3.0

Changelog:
Fixed in Firefox ESR 24.3
MFSA 2014-13 Inconsistent JavaScript handling of access to Window objects
MFSA 2014-12 NSS ticket handling issues
MFSA 2014-09 Cross-origin information leak through web workers
MFSA 2014-08 Use-after-free with imgRequestProxy and image proccessing
MFSA 2014-04 Incorrect use of discarded images by RasterImage
MFSA 2014-02 Clone protected content with XBL scopes
MFSA 2014-01 Miscellaneous memory safety hazards (rv:27.0 / rv:24.3)

(ryoon)

2014-03-10 20:34:29 UTC MAIN commitmail json YAML

Updated databases/sqlite3 to 3.8.4

(adam)

2014-03-10 19:52:26 UTC MAIN commitmail json YAML

devel/nss 3.15.4 or later is required.
Fix build.
>From Matthias Ferdinand.

(ryoon)

2014-03-10 19:48:06 UTC MAIN commitmail json YAML

Updated devel/cvs-fast-export to 1.9

(ryoon)

2014-03-10 19:47:34 UTC MAIN commitmail json YAML

Update to 1.9

* Add dependency to python for cvssync script

Changelog:
1.9 @ 2014-03-08
    RCS/CVS usernames may now begin with a digit (patch by Jesse Weinstein).
    Cleaned up a mess around keyword expansion; it had been misdocumented.
    Fixed some minor bugs in the test suite.
    Fixed a signedness issue on 64-bit machines.

1.8 @ 2014-02-19
    Processing of hardlinks field was incorrect, is now fixed.

1.7 @ 2014-02-18
    Allow # in symbol names.  Addresses a corner case in the NetBSD repository.

1.6 @ 2014-02-17
    Fix a brown-paper-bag bug in cvssync.

1.5 @ 2014-02-16
    Skip a hardlinks field, if present.
    Add a -c option to cvssync that makes mirrors with CVSROOTs.

1.4 @ 2014-02-04
    Optimization to call sbrk() less often needs to be conditioned on GCC.

1.3 @ 2014-01-23
    Improved performance on masters with lots of symbols; thank Jens Bethkowsky.

1.2 @ 2014-01-04
    Smarter blob directory creation to reduce search overhead for blobs.

1.1 @ 2014-01-03
    Cope with CVS-NT kopt strings containing garbage binary data.

1.0 @ 2013-12-28
    Bug fix: Non-top-level .cvsignores are now converted.
    More speed and significant lowering of memory usage.
    Most error messages are now explained on the manual page.

0.8 @ 2013-12-16
    Processing speed has approximately tripled since last release.
    cvs-fast-export has save progress metering again.
    cvssync can now take a CVS URL argument.

0.7 @ 2013-12-15
    -i option for incremental dumping.
    -p option for enabling load status reports.
    Many documentation improvements.
    There is now a regression-test suite for the package.
    cvssync tool for mirroring remote CVS repos added.

0.6 @ 2013-12-10
    Improvements for CVS-NT support.
    Improve timing of missing-commitids message

(ryoon)

2014-03-10 18:56:58 UTC MAIN commitmail json YAML

Updated mail/thunderbird-l10n to 24.3.0

(ryoon)

2014-03-10 18:56:29 UTC MAIN commitmail json YAML

2014-03-10 18:43:03 UTC MAIN commitmail json YAML

Updated devel/nss to 3.15.5

(ryoon)

2014-03-10 18:42:34 UTC MAIN commitmail json YAML

Update to 3.15.5

Changelog:
From: https://developer.mozilla.org/en-US/docs/NSS/NSS_3.15.5_release_notes

Network Security Services (NSS) 3.15.5 is a patch release for NSS 3.15.

New functionality:
* Added support for the TLS application layer protocol negotiation
  (ALPN) extension. Two SSL socket options, SSL_ENABLE_NPN and
  SSL_ENABLE_ALPN, can be used to control whether NPN or ALPN (or both)
  should be used for application layer protocol negotiation.
* Added the TLS padding extension. The extension type value is 35655,
  which may change when an official extension type value is assigned
  by IANA. NSS automatically adds the padding extension to ClientHello
  when necessary.
* Added a new macro CERT_LIST_TAIL, defined in certt.h, for getting
  the tail of a CERTCertList.

Notable Changes:
* Bug 950129: Improve the OCSP fetching policy when verifying OCSP
  responses
* Bug 949060: Validate the iov input argument (an array of PRIOVec
  structures) of ssl_WriteV (called via PR_Writev). Applications should
  still take care when converting struct iov to PRIOVec because the
  iov_len members of the two structures have different types
  (size_t vs. int). size_t is unsigned and may be larger than int.

(ryoon)

2014-03-10 18:03:35 UTC MAIN commitmail json YAML

pkgsrc/x11/kdebase3/Makefile@1.185 / diff
pkgsrc/x11/kdebase3/PLIST@1.54 / diff
pkgsrc/x11/kdebase3/distinfo@1.118 / diff
pkgsrc/x11/kdebase3/patches/patch-kcontrol_arts_hardwaretab.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kcontrol_ebrowsing_plugins_ikws_ikwsopts_ui.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kcontrol_kio_cache_ui.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kcontrol_kio_envvarproxy_ui.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kcontrol_kio_kcookiesmanagementdlg_ui.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kcontrol_kio_kproxydlg_ui.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kcontrol_kio_manualproxy_ui.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kcontrol_kio_policydlg_ui.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kcontrol_smserver_smserverconfigdlg.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kdepasswd_kcm_main_widget.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kicker_kicker_ui_nonKDEButtonSettings.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kpersonalizer_keyecandypagedlg.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-ksysguard_gui_SensorDisplayLib_ListViewSettingsWidget.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-ksysguard_gui_SensorDisplayLib_LogFileSettings.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-ksysguard_gui_SensorDisplayLib_SensorLoggerSettingsWidget.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kwin_kcmkwin_kwinrules_editshortcutbase.ui@1.1 / diff
pkgsrc/x11/kdebase3/patches/patch-kwin_kcmkwin_kwinrules_ruleslistbase.ui@1.1 / diff

Pull in necessary includes.  Fixes build on older compilers, notably the one
shipped with OS X Snow Leopard.

(jperkin)

2014-03-10 17:03:56 UTC MAIN commitmail json YAML

Changes 3.8.4:
Code optimization and refactoring for improved performance.
Add the ".clone" and ".save" commands to the command-line shell.
Update the banner on the command-line shell to alert novice users when they are using an ephemeral in-memory database.
Fix editline support in the command-line shell.
Add support for coverage testing of VDBE programs using the SQLITE_TESTCTRL_VDBE_COVERAGE verb of sqlite3_test_control().
Update the _FILE_OFFSET_BITS macro so that builds work again on QNX.
Change the datatype of SrcList.nSrc from type u8 to type int to work around an issue in the C compiler on AIX.
Get extension loading working on Cygwin.
Bug fix: Fix the char() SQL function so that it returns an empty string rather than an "out of memory" error when called with zero arguments.
Bug fix: DISTINCT now recognizes that a zeroblob and a blob of all 0x00 bytes are the same thing. Ticket [fccbde530a]
Bug fix: Compute the correct answer for queries that contain an IS NOT NULL term in the WHERE clause and also contain an OR term in the WHERE clause and are compiled with SQLITE_ENABLE_STAT4. Ticket [4c86b126f2]
Bug fix: Make sure "rowid" columns are correctly resolved in joins between normal tables and WITHOUT ROWID tables. Ticket [c34d0557f7]
Bug fix: Make sure the same temporary registers are not used in concurrent co-routines used to implement compound SELECT statements containing ORDER BY clauses, as such use can lead to incorrect answers. Ticket [8c63ff0eca]
Bug fix: Ensure that "ORDER BY random()" clauses do not get optimized out. Ticket [65bdeb9739]
Bug fix: Repair a name-resolution error that can occur in sub-select statements contained within a TRIGGER. Ticket [4ef7e3cfca]
Bug fix: Fix column default values expressions of the form "DEFAULT(-(-9223372036854775808))" so that they work correctly, initializing the column to a floating point value approximately equal to +9223372036854775808.0.

(adam)

2014-03-10 17:03:30 UTC MAIN commitmail json YAML

Changes 3.8.4:
Code optimization and refactoring for improved performance.
Add the ".clone" and ".save" commands to the command-line shell.
Update the banner on the command-line shell to alert novice users when they are using an ephemeral in-memory database.
Fix editline support in the command-line shell.
Add support for coverage testing of VDBE programs using the SQLITE_TESTCTRL_VDBE_COVERAGE verb of sqlite3_test_control().
Update the _FILE_OFFSET_BITS macro so that builds work again on QNX.
Change the datatype of SrcList.nSrc from type u8 to type int to work around an issue in the C compiler on AIX.
Get extension loading working on Cygwin.
Bug fix: Fix the char() SQL function so that it returns an empty string rather than an "out of memory" error when called with zero arguments.
Bug fix: DISTINCT now recognizes that a zeroblob and a blob of all 0x00 bytes are the same thing. Ticket [fccbde530a]
Bug fix: Compute the correct answer for queries that contain an IS NOT NULL term in the WHERE clause and also contain an OR term in the WHERE clause and are compiled with SQLITE_ENABLE_STAT4. Ticket [4c86b126f2]
Bug fix: Make sure "rowid" columns are correctly resolved in joins between normal tables and WITHOUT ROWID tables. Ticket [c34d0557f7]
Bug fix: Make sure the same temporary registers are not used in concurrent co-routines used to implement compound SELECT statements containing ORDER BY clauses, as such use can lead to incorrect answers. Ticket [8c63ff0eca]
Bug fix: Ensure that "ORDER BY random()" clauses do not get optimized out. Ticket [65bdeb9739]
Bug fix: Repair a name-resolution error that can occur in sub-select statements contained within a TRIGGER. Ticket [4ef7e3cfca]
Bug fix: Fix column default values expressions of the form "DEFAULT(-(-9223372036854775808))" so that they work correctly, initializing the column to a floating point value approximately equal to +9223372036854775808.0.

(adam)

2014-03-10 15:42:19 UTC MAIN commitmail json YAML

Grab maintainership

(fhajny)

2014-03-10 15:28:58 UTC MAIN commitmail json YAML

+ libgee-0.12.1, libsecret-0.18, python33-3.3.5.

(wiz)

2014-03-10 14:24:48 UTC MAIN commitmail json YAML

Note update of x11/ruby-tk package to 1.9.3p545nb3.

(taca)

2014-03-10 14:23:51 UTC MAIN commitmail json YAML

Switch to use lang/tcl85 and x11/tk85 instead of lang/tcl and x11/tk.

Bump PKGREVISION.

(taca)

2014-03-10 14:23:04 UTC MAIN commitmail json YAML

Note addtion of lang/tcl85 and x11/tk85 packages 8.5.15nb1.

(taca)

2014-03-10 14:22:30 UTC MAIN commitmail json YAML

Add and enable tk85.

(taca)

2014-03-10 14:22:01 UTC MAIN commitmail json YAML

2014-03-10 14:21:12 UTC MAIN commitmail json YAML

Add and enable tcl85.

(taca)

2014-03-10 14:20:44 UTC MAIN commitmail json YAML

2014-03-10 13:55:26 UTC MAIN commitmail json YAML

2014-03-10 13:44:37 UTC MAIN commitmail json YAML

2014-03-10 13:24:24 UTC MAIN commitmail json YAML

Updated databases/redis to 2.8.7

(fhajny)

2014-03-10 13:24:13 UTC MAIN commitmail json YAML

Update redis to 2.8.7.

--[ Redis 2.8.7 ] Release date: 5 Mar 2014

# UPGRADE URGENCY: LOW for Redis, LOW for Sentinel. However this release adds
                  new features so users may want to upgrade in order to
                  exploit the new functionalities.

* [FIX] Sometimes the absolute config file path was obtained in a wrong way.
        This happened when there was a "dir" directive inside the config file
        and at the same time the configuration file was given as a relative
        path to redis-server or redis-sentinel executables.
* [FIX] redis-cli: Automatically enter --slave mode when SYNC or PSYNC are
        called during an interactive session.
* [FIX] Sentinel "IDONTKNOW" error removed as it does not made sense with the
        new Sentinel design. This error was actually a fix for a design error
        in the first implementation of Sentinel.
* [FIX] Sentinel: added a missing exit() call to abort after config file
        checks at startup. This error was introduced with an improvement in
        a previous 2.8 release.
* [FIX] BITCOUNT: fixed unaligned access causing issues in sparc and other
        archs not capable of dealing with unaligned accesses. This also makes
        the code faster in archs where unaligned accesses are allowed.
* [FIX] Sentinel: better nodes fail over start time desynchronization to avoid
        split-brain during the voting process needed to get authorization to
        fail over. This means the system is less likely to need to retry
        and will fail over faster. No changes in behavior / correctness.
* [FIX] Force INFO used_memory_peak to match peak memory. This generated some
        confusion among users even if it was not an actual bug.

* [NEW] Sentinel unit tests and framework. More tests needed and units must
        be improved in order to have less false positives, but it is a start
        and features a debugging console that is useful to fix tests or to
        inspect bugs causing tests failures.
* [NEW] New Sentinel events: +/-monitor and +set used to monitor when an
        instance to monitor is added or removed, or when a configuration
        is modified via SENTINEL SET.
* [NEW] Redis-cli updated to use SCAN instead of random sampling via
        RANDOMKEY in order to implement --bigkeys feature. Moreover the
        implementation now supports pipelining and reports more information
        at the end of the scan. Much faster, much better. A special thank
        you to Michael Grunder for this improvement.
* [NEW] redis-cli now supports a new --intrinsic-latency mode that is able
        to meter the latency of a system due to kernel / hypervisor.
        How to use it is explained at http://redis.io/topics/latency.
* [NEW] New command BITPOS: find first bit set or clear in a bitmap.
* [NEW] CONFIG REWRITE calls are now logged.

--[ Redis 2.8.6 ] Release date: 13 Feb 2014

# UPGRADE URGENCY: HIGH for Redis, LOW for Sentinel. Redis users using Lua
                  scripts with EVALSHA and attached slaves and/or AOF
                  persistence should consider upgrading ASAP.

* [FIX] Fixed an critical EVALSHA script cache bug: scripts executed may not
        propagate to AOF / Slaves correctly under certain conditions.
        See issue #1549 at Github for more information.
* [FIX] Fixed multiple bugs resulting into closing the link with master or slave
        during replication without good reasons. This will result in useless
        resynchronizations, or infinite loops where the replication link can't
        be established.
* [FIX] Don't count the time needed to populate the buffers of clients waiting
        in MONITOR mode when populating the Slow Log entries.

* [NEW] AOF write errors (like no space on device) no longer abort Redis if the
        fsync policy is none or every second. The database enters a read-only
        mode where every write is refused with an error. Normal operations are
        restored as soon as Redis is able to append again data to the AOF file.
* [NEW] Sentinel now accepts SHUTDOWN command.

--[ Redis 2.8.5 ] Release date: 4 Feb 2014

# UPGRADE URGENCY: HIGH for Redis, LOW for Sentinel. Redis users using Lua
                  scripts with expires, and Redis users relying on the
                  ability of Redis to block writes on RDB saving errors
                  should plan to upgrade ASAP.

* [FIX] Fixed a replication bug caused by Lua scripts + expired keys: keys could
        expire in the middle of scripts causing non-deterministic behavior.
* [FIX] MISCONFIG error if condition fixed, the server was no longer able
        to stop writes on RDB misconfiguration after this error was introduced.
* [FIX] REDIS_AOF_REWRITE_MIN_SIZE is now 64mb like example redis.conf default.
* [FIX] Perform fflush() before fsync() in rio.c (bug without actual effects).
* [FIX] Don't log MONITOR clients as disconnecting slaves.
* [FIX] SENTINEL MASTER arity check fixed. Crashed the Sentinel instance when
        the command was given without arguments.

* [NEW] Allow CONFIG and SHUTDOWN while in stale-slave state.
* [NEW] Support for configurable TCP listen(2) backlog size.
* [NEW] redis-cli supports SCAN via the --scan and --pattern options.
* [NEW] SENTINEL SET master quorum via runtime API implemented.

--[ Redis 2.8.4 ] Release date: 13 Jan 2014

# UPGRADE URGENCY: MODERATE for Redis and Sentinel.

* [FIX] Makefile compatibility with non common make variants improved.
* [FIX] SDIFF crash in very unlikely to trigger state fixed.
* [FIX] Config rewriting fixed: don't wipe options unknown to the rewrite
        process.
* [FIX] Set TCP port to 0 works again to disable TCP networking.
* [FIX] Fixed replication with old Redis instances as masters by not
        sending REPLCONF ACK to them.
* [FIX] Fix keyspace notifications rewrite and CONFIG GET output.
* [FIX] Fix RESTORE TTL handling in 32 bit systems (32 bit overflow).

* [NEW] Sentinel now has a run time configuration API.
* [NEW] Log when we lost connection with master or slave.
* [NEW] When instance is turned from slave to master now inherits the
        old master replication offset when possible. This improves the
        Sentinel failover procedure.

(fhajny)