Commit graph

147442 commits

Author SHA1 Message Date
sno
a455a977c5 Updated www/p5-Template-Toolkit to 2.22nb1 2009-08-26 17:39:15 +00:00
sno
7d1e46223c Adding a bug-fix which supresses same function is installed multiple times.
See http://rt.cpan.org/Ticket/Display.html?id=48989 for details.
2009-08-26 17:39:01 +00:00
hasso
25d2ad6bde Updated games/warzone2100 to 2.2.2. 2009-08-26 17:37:55 +00:00
sno
bf80d16fc5 Adding a bug-fix which supresses same function is installed multiple times.
See http://rt.cpan.org/Ticket/Display.html?id=48989 for details.
2009-08-26 17:36:53 +00:00
hasso
b5465b0061 Update to 2.2.2. Upstream changes:
General:
- Change: Add the ability of allied players to share sensors (ticket:636,
  r7900)
- Change: Stop rotation when "Continue" is pressed after winning a
  multiplayer/skirmish game (r7887)
- Change: Show when a game was saved in a tooltip on the loading screen.
  (r7864, ticket:682)
- Fix: Cannot display more than one game from lobby. Also fix a lobby display
  issue. (r7839, ticket:691)
- Fix: Various checks and workarounds to make game run more stable (r7836,
  r7894, r7889, r7883, r7881, r7851, r7847, r7842, r7822, r7910 / ticket:759)
- Fix: Crash due to path length overflow (r7916, ticket:738, ticket:765)
- Fix: Bug that caused some keyboard shortcuts to be unusable in multiplayer
  since they were considered cheats (r7856)
- Fix: Verify that our "target" is still around before doing fire support
  with it. (r7910, ticket:759)
- Fix: Fix crash length overflow by capping path lengths to max 255 nodes.
  (r7916, ticket:738)
- Fix: Fix a typo, we wanted to display "???" when ping is >=2000 (r7922)
- Fix: Fix camera bug in warcam code. Patch by i-NoD (r7924, ticket:757)
- Fix: General order/action code cleanup (r7926)
- Fix: Fix segfault when trying to read target of droid with no target in
  aiUpdateStructure (r7928)
- Fix: Use _NSIG in the exceptionhandler if available for *BSD compatibility.
  (r7972, ticket:818)
- Fix: Add correct linker flags for openbsd to configure. (r7974, ticket:819)
- Fix: Disable locales without translation. (r7969, ticket:813)
- Fix: NTW updated to 1.8.7 (r7998 - r8009)
- Fix: When babas are burning, we always play the scream now. (r8025,
  ticket:830)
- Fix: Make sure we have a valid color choice for our SP game, when we are
  coming from a MP game. (r8032)

Translations:
- Fix: Commit Portuguese translation. (r7943, ticket:783)
- Fix: Updated translations (r7880, r7877, r7875, r7871, r7868, r7863, r7861)


Graphics:
- Fix: Increase video buffer size from 4K to 256K. This fixes playback of
  videos with a bitrate larger than ~2000kbps. (r7981)
- Change: Add a north pointer for the rotating radar. (r8013, ticket:769)

Sound:
- Fix: Fixes the removal of unused (sound) sources. (r8012, r8026, ticket:770)
2009-08-26 17:36:45 +00:00
seb
8b82da4512 Note initial addition of p5-AutoXS-Header version 1.02 as
devel/p5-AutoXS-Header into The NetBSD Packages Collection.

The Perl 5 module AutoXS::Header a simple container for the newest
version of the AutoXS header file AutoXS.h.
2009-08-26 17:24:14 +00:00
seb
7bc71ffb5e Add & enable p5-AutoXS-Header 2009-08-26 17:23:51 +00:00
seb
0217456fc6 Initial import of p5-AutoXS-Header version 1.02 in the NetBSD
Packages Collection.

The Perl 5 module AutoXS::Header a simple container for the newest
version of the AutoXS header file AutoXS.h.
2009-08-26 17:23:30 +00:00
sno
63327f6d3b Updated graphics/jpeg to 7 2009-08-26 16:51:00 +00:00
sno
7c1df3d139 Updating package graphics/jpeg from version 6bnb4 to 7
pkgsrc changes:
  - update MASTER_SITES
  - bump ApI_DEPENDS in buildlink3.mk

Upstream changes:
- The new features added with version 6bnb4 are now added upstream (except
  exifautotran and jpegexiforient)

Version 7  27-Jun-2009
----------------------

New scaled DCTs implemented.
djpeg now supports scalings N/8 with all N from 1 to 16.
cjpeg now supports scalings 8/N with all N from 1 to 16.
Scaled DCTs with size larger than 8 are now also used for resolving the
common 2x2 chroma subsampling case without additional spatial resampling.
Separate spatial resampling for those kind of files is now only necessary
for N>8 scaling cases.
Furthermore, separate scaled DCT functions are provided for direct resolving
of the common asymmetric subsampling cases (2x1 and 1x2) without additional
spatial resampling.

cjpeg -quality option has been extended for support of separate quality
settings for luminance and chrominance (or in general, for every provided
quantization table slot).
New API function jpeg_default_qtables() and q_scale_factor array in library.

Added -nosmooth option to cjpeg, complementary to djpeg.
New variable "do_fancy_downsampling" in library, complement to fancy
upsampling.  Fancy upsampling now uses direct DCT scaling with sizes
larger than 8.  The old method is not reversible and has been removed.

Support arithmetic entropy encoding and decoding.
Added files jaricom.c, jcarith.c, jdarith.c.

Straighten the file structure:
Removed files jidctred.c, jcphuff.c, jchuff.h, jdphuff.c, jdhuff.h.

jpegtran has a new "lossless" cropping feature.

Implement -perfect option in jpegtran, new API function
jtransform_perfect_transform() in transupp. (DP 204_perfect.dpatch)

Better error messages for jpegtran fopen failure.
(DP 203_jpegtran_errmsg.dpatch)

Fix byte order issue with 16bit PPM/PGM files in rdppm.c/wrppm.c:
according to Netpbm, the de facto standard implementation of the PNM formats,
the most significant byte is first. (DP 203_rdppm.dpatch)

Add -raw option to rdjpgcom not to mangle the output.
(DP 205_rdjpgcom_raw.dpatch)

Make rdjpgcom locale aware. (DP 201_rdjpgcom_locale.dpatch)

Add extern "C" to jpeglib.h.
This avoids the need to put extern "C" { ... } around #include "jpeglib.h"
in your C++ application.  Defining the symbol DONT_USE_EXTERN_C in the
configuration prevents this. (DP 202_jpeglib.h_c++.dpatch)
2009-08-26 16:50:46 +00:00
seb
6d52203105 Note update of devel/p5-Bit-Vector to version 7.0 2009-08-26 16:03:45 +00:00
seb
81f12f59dc Update p5-Bit-Vector from version 6.9 to version 7.0.
Upstream changes:
What's new in version 7.0:
--------------------------
+  Fixed a bug in "GCD2()" in "BitVector.c" with null-size vectors
+  Added more test cases for "GCD()" in "t/17_________gcd.t"
+  Almost completely rewrote "BitVector_Boot()" in "BitVector.c"
   in order to fix the problem that it calculated an unsigned
   long to have 33 bits under MacOS X (Darwin), leading to
   failing tests in "t/28___chunklist.t"
+  BEWARE that the type "ErrCode", which is part of the inter-
   face of the C library "BitVector.c", has been changed!
+  Added more tests and a debugging aid to "t/28___chunklist.t"
+  Removed the two example files showing how to freeze/thaw
   "Bit::Vector" objects using "Data::Dumper", because after
   closer inspection this proved to be a can of worms
2009-08-26 16:03:32 +00:00
snj
35e8c6c662 Updated sysutils/grun to 0.9.3. 2009-08-26 15:56:03 +00:00
snj
165d252736 Update to 0.9.3. This version kills win32 support, pulls in a bunch of
patches from Debian, and now uses gtk2.

While here, PKG_DESTDIR=user-destdir'ify and use the proper framework
for handling configuration files instead of just sticking them in
share/grun as they were before.
2009-08-26 15:55:14 +00:00
seb
ad196de7c3 Note initial addition of p5-MooseX-Attributes-Curried version 0.03
as devel/p5-MooseX-Attributes-Curried into The NetBSD Packages
Collection.

The Perl 5 module MooseX::Attributes::Curried lets you define curried
versions of "has" in Moose. If many of your attributes share the
same options, especially across multiple classes, then you can
refactor those options away into a curried has.
2009-08-26 15:30:35 +00:00
seb
6c44f79833 Add & enable p5-MooseX-Attributes-Curried 2009-08-26 15:29:56 +00:00
seb
c7636f2ae5 Initial import of p5-MooseX-Attributes-Curried version 0.03 in the
NetBSD Packages Collection.

The Perl 5 module MooseX::Attributes::Curried lets you define curried
versions of "has" in Moose. If many of your attributes share the
same options, especially across multiple classes, then you can
refactor those options away into a curried has.
2009-08-26 15:29:32 +00:00
sno
6324331e83 - Adding a minimum required version of devel/p5-Clone (is checked in source)
- Correcting license
2009-08-26 13:21:46 +00:00
tron
3fa860ecf9 Note update of the "squirrelmail" package to version 1.4.20rc2. 2009-08-26 12:47:53 +00:00
tron
31a542907c Note update of the "libxml2" package to version 2.7.3nb1. 2009-08-26 12:47:42 +00:00
tron
fc0e5cf769 Update "squirremail" package to version 1.4.20rc2. Changes since 1.4.19:
- Protect message deletion with security token system.
  (Secunia Advisory SA346)
- Removed the shut down DSBL blocklists (#2796734).
- Fixed broken RFC1918 reference in contrib/.htaccess and doc/.htaccess
  (#2798839).
- Updated INSTALL doc to remove possible bad system admin typos (#2827153).
- PHP 5.3 deprecates ereg functions (#2820952).
- Filters plugin uses badly formatted literals request (#2805201).
- Provide option for complete removal of usernames and user IP addresses
  from message headers, and remove personal data from Message ID seed.
  (#880029/847107)
- Implemented page referal verification mechanism.
  (Secunia Advisory SA34627)
- Implemented security token system. (Secunia Advisory SA34627)

Approved by Martti Kuparinen.
2009-08-26 12:47:17 +00:00
wiz
4b93fe68c2 Updated x11/xcb-util to 0.3.6 2009-08-26 12:17:38 +00:00
wiz
6a087fd3f6 Update to 0.3.6:
Arnaud Fontaine (5):
      icccm: use xcb_gravity_t when possible and cosmetic changes
      Check for ssize_t in configure for xcb-util-common.h
      event: update to libxcb 1.4
      event: fix compiler warning due to missing include for memset
      Bump version to 0.3.6

Julien Danjou (4):
      icccm: fix atoms_len with new libxcb
      xcb-property: fix bad comment
      icccm: typo fix
      icccm: add xcb_get_wm_protocols_from_reply

Mikhail Gusarov (1):
      Typo in configure.ac
2009-08-26 12:17:28 +00:00
wiz
a72ab55ef1 Updated x11/resourceproto to 1.1.0 2009-08-26 12:06:11 +00:00
wiz
e951448925 Update to 1.1.0:
Nothing exciting, only packaging changes.

Alan Coopersmith (1):
      renamed: .cvsignore -> .gitignore

James Cloos (2):
      Add *~ to .gitignore to skip patch/emacs droppings
      Replace static ChangeLog with dist-hook to generate from git log

Paulo Cesar Pereira de Andrade (1):
      Janitor: Correct make distcheck and dont distribute autogen.sh

Peter Hutterer (2):
      Remove RCS tags.
      resourceproto 1.1.0
2009-08-26 12:06:01 +00:00
wiz
9d5c3234be Updated x11/libXScrnSaver to 1.2.0 2009-08-26 11:54:57 +00:00
wiz
4d1de63e6a Update to 1.2.0:
A few long-waiting packaging fixes, one man page fix.
The screensaver.h header file was moved from the scrnsaverproto module to
here, clients should not be affected though.
2009-08-26 11:54:46 +00:00
wiz
2086e15b69 Updated x11/scrnsaverproto to 1.2.0 2009-08-26 11:54:12 +00:00
wiz
13e48cf5ff Update to 1.2.0:
Packaging-only update, no changes to the protocol itself since version
1.1.0. Notably is the removal of the scrnsaver.h header which was moved to
the libXScrnSaver module.
2009-08-26 11:53:59 +00:00
wiz
2d26a2f628 + enca-1.10, f-spot-0.6.1.0, ghostscript-8.70, gtranslator-1.9.6,
kmymoney2-1.0, libXScrnSaver-1.2.0, libgda-4.0.3 [GNOME 2.26],
  librep-0.90.2, libsigc++-2.2.4, mp3diags-0.99.05.032,
  mysql5-client-5.0.85, mysql5-server-5.0.85, py-gtk2-2.16.0,
  resourceproto-1.1.0, rhythmbox-0.12.4, scrnsaverproto-1.2.0,
  t-prot-2.7, transcode-1.1.4, xcb-util-0.3.6, xextproto-7.1.1
  xf86-video-intel-2.8.1.
2009-08-26 11:49:57 +00:00
wiz
ba27720000 Updated devel/doxygen to 1.6.1 2009-08-26 11:48:34 +00:00
wiz
6eb346168d Update to 1.6.1:
A couple of issues found in the previous release were fixed.
2009-08-26 11:48:24 +00:00
hasso
fbf06a7326 Updated devel/rt-mysql to 2.0.15nb7
Updated devel/rt-pgsql to 2.0.15nb7
2009-08-26 11:25:21 +00:00
hasso
d50d1d591d Fix PLIST and bump PKGREVISION. 2009-08-26 11:23:46 +00:00
hasso
2003236952 Needs msgfmt. 2009-08-26 11:19:30 +00:00
hasso
ac56483ced Needs msgfmt and pkg-config. Add workaround for a problem which is probably
a bug in cmake.
2009-08-26 10:58:11 +00:00
tron
14a249445e Add patch to fix the security vulnerabilites reported in CVE-2009-2414
and CVE-2009-2416.

The patch was taken from the latest Fedora 11 "libxml2" source RPM.
2009-08-26 10:20:57 +00:00
dsainty
a6bcba5aee The patches are gone, garbage collect the hashes too. 2009-08-26 05:04:15 +00:00
seb
f7a996d3e0 Note update of devel/p5-Module-CoreList to version 2.18 2009-08-26 01:48:03 +00:00
seb
8b2ec54ebb Update p5-Module-CoreList from version 0.17 to version 0.18.
Upstream changes:
2.18	Mon Aug 24 2009
	- Update for perl 5.10.1
	- Remove %patchlevel hash (now that perl uses git and not perforce)
	- Add %upstream and %bug_tracker data (Nicholas Clark)
2009-08-26 01:47:52 +00:00
seb
04dda91574 Note update of devel/p5-local-lib to version 1.4.5 2009-08-26 01:40:53 +00:00
seb
b24ae03961 Update from version 1.4.4 (upstream 1.004004) to version 1.4.5 (upstream
1.004005).

Upstream changes:
1.004005 2009-08-23
        - Add the --no-manpages option to bootstraping to tell EUMM / MB to not
          generate manpages from POD. Thanks to RKITOVER for providing the
          necessary values for CPAN.pm's configuration.
2009-08-26 01:40:41 +00:00
seb
c79b96e714 Note update of devel/p5-Devel-Cycle to version 1.11 2009-08-26 01:30:14 +00:00
seb
2224cf9519 Update p5-Devel-Cycle from version 1.10nb1 to version 1.11.
Pkgsrc changes:
- Set USE_LANGUAGES

Upstream changes:
1.11 Mon Aug 24 08:50:25 EDT 2009
     - Florian Ragwitz fixed bug 47389
2009-08-26 01:30:03 +00:00
seb
1de58e300c Note update of devel/p5-Class-InsideOut to version 1.10 2009-08-26 01:14:39 +00:00
seb
6f73317e6d Update p5-Class-InsideOut from version 1.09 to version 1.10.
Pkgsrc changes:
- Set LICENSE

Upstream changes:
1.10 Mon Aug 24 20:44:46 EDT 2009

    Bug fixes:
    - changed method of calling Exporter::import() to avoid confusing DProf
    - fixed detection of missing 'weaken' function in newer Scalar::Util
      (fixes test t/15_no_weaken_fallback.t) (RT#47623)

    Other:
    - cleanup: eliminate test warning from bogus superclass in a test class
    - docs: Noted that set_hooks aren't called by new() (RT#48106)
2009-08-26 01:14:23 +00:00
seb
721a3ff1df Note update of math/p5-Spreadsheet-ParseExcel to version 0.5400 2009-08-26 00:55:15 +00:00
seb
70ea7a82f3 Update from version 0.5200 to version 0.5400 (upstream 0.54)
Upstream changes:
0.54 August 25 2009

    ! Fix for height/width of hidden rows/columns with additional.
      tests in 05_regression.t. Thanks to Greger Leijonhufvud.
      http://rt.cpan.org/Public/Bug/Display.html?id=48450

    ! Fix for mal-formed Print_Title Name block.
      Reported by Marc Elser.

0.53 August 24 2009

    + Made perl 5.8.0 a requirement for proper Unicode handling.

    ! Fixed minor int2col() bug thanks to David Black.
      Added 28_int2col.t test for above.
      http://rt.cpan.org/Public/Bug/Display.html?id=48967

    + Refactored Workbook API and docs.
2009-08-26 00:54:57 +00:00
hasso
8a2aeb50df Updated devel/cflow to 1.3nb1
Updated devel/qof to 0.7.5nb3
2009-08-25 20:12:22 +00:00
hasso
1c3e9d595f Doxygen bump. 2009-08-25 20:11:01 +00:00