Commit graph

137368 commits

Author SHA1 Message Date
joerg
be993ceea9 Don't use INSTALLATION_DIRS to define other variables. This package has
no relation to X11BASE, so don't say so.
2009-02-07 19:49:15 +00:00
joerg
6f49283c57 DESTDIR supported. 2009-02-07 19:11:04 +00:00
jakllsch
a3192a9bcc forgot options.mk in last commit. 2009-02-07 18:45:15 +00:00
joerg
4999eface7 Fix patch to actually work by using the right name of the version macro.
Fixes build on NetBSD 4.99.24+.
2009-02-07 18:39:20 +00:00
jakllsch
a828cd9997 Updated audio/ncmpc to 0.13 [jakllsch 2009-02-07] 2009-02-07 18:39:11 +00:00
jakllsch
3325fd4eff Update to ncmpc-0.13.
Changes for versions since 0.11.1:

ncmpc 0.13 - 2009-01-09
  * added output configuration screen, default hotkey F8
  * new --disable-locale configure option
  * new --disable-multibyte configure option; this allows you to
    disable wide character support, retaining multibyte character
    support
  * search with regular expressions


ncmpc 0.12 - 2008-12-05
  * added artist screen (tag browser)
  * added highly experimental lyrics screen (disabled by default)
  * removed clock screen
  * support wide characters
  * optimized memory usage
  * always try to reconnect after server failure
  * support unix domain sockets for the MPD connection
  * added compile-time "mini" option which produces the smallest
    possible ncmpc binary
  * added LIRC support
  * scroll long song names in the playlist
  * added command "locate" ('G') which locates a song in the database browser
  * added "song" screen ('i') which displays song information
2009-02-07 18:38:05 +00:00
joerg
45037cadaa DESTDIR support. 2009-02-07 18:24:06 +00:00
adrianp
0958897b31 Updated lang/php5 to 5.2.8nb1 2009-02-07 18:03:15 +00:00
adrianp
dcdf5e79f6 Get SSL support working on OpenSolaris. Unfortunately on OpenSolairs the
OpenSSL install is split between /lib and /usr/include/openssl with plays
havoc with the php ./configure as it assumes both have the same base
directory (e.g. /usr).  This patch uses a modified inbuilt check for
OpenSSL instead of explicitly specifying a base using --with-openssl.
2009-02-07 18:03:00 +00:00
adam
cf654417dc Updated databases/postgresql 2009-02-07 17:56:07 +00:00
adam
99d022ccc5 Changes 8.3.6:
* Make "DISCARD ALL" release advisory locks, in addition to
  everything it already did
  This was decided to be the most appropriate behavior. This could
  affect existing applications, however.
* Fix whole-index GiST scans to work correctly
  This error could cause rows to be lost if a table is clustered on a
  GiST index.
* Fix crash of xmlconcat(NULL)
* Fix possible crash in ispell dictionary if high-bit-set characters
  are used as flags
  This is known to be done by one widely available Norwegian
  dictionary, and the same condition may exist in others.
* Fix misordering of pg_dump output for composite types
  The most likely problem was for user-defined operator classes to be
  dumped after indexes or views that needed them.
* Improve handling of URLs in headline() function
* Improve handling of overlength headlines in headline() function
* Prevent possible Assert failure or misconversion if an encoding
  conversion is created with the wrong conversion function for the
  specified pair of encodings
* Fix possible Assert failure if a statement executed in PL/pgSQL is
  rewritten into another kind of statement, for example if an
  "INSERT" is rewritten into an "UPDATE"
* Ensure that a snapshot is available to datatype input functions
* Make it safer for SPI-using functions to be used within datatype
  I/O; in particular, to be used in domain check constraints
* Avoid unnecessary locking of small tables in "VACUUM"
* Fix a problem that sometimes kept "ALTER TABLE ENABLE/DISABLE RULE"
  from being recognized by active sessions
* Fix a problem that made UPDATE RETURNING tableoid return zero
  instead of the correct OID
* Allow functions declared as taking ANYARRAY to work on the
  pg_statistic columns of that type
  This used to work, but was unintentionally broken in 8.3.
* Fix planner misestimation of selectivity when transitive equality
  is applied to an outer-join clause
  This could result in bad plans for queries like ... from a left
  join b on a.a1 = b.b1 where a.a1 = 42 ...
* Improve optimizer's handling of long IN lists
  This change avoids wasting large amounts of time on such lists when
  constraint exclusion is enabled.
* Prevent synchronous scan during GIN index build
  Because GIN is optimized for inserting tuples in increasing TID
  order, choosing to use a synchronous scan could slow the build by a
  factor of three or more.
* Ensure that the contents of a holdable cursor don't depend on the
  contents of TOAST tables
* Fix memory leak when a set-returning function is terminated without
  reading its whole result
* Fix encoding conversion problems in XML functions when the database
  encoding isn't UTF-8
* Fix "contrib/dblink"'s dblink_get_result(text,bool) function
* Fix possible garbage output from "contrib/sslinfo" functions
* Fix incorrect behavior of "contrib/tsearch2" compatibility trigger
  when it's fired more than once in a command
* Fix possible mis-signaling in autovacuum
* Support running as a service on Windows 7 beta
* Fix ecpg's handling of varchar structs
* Fix configure script to properly report failure when unable to
  obtain linkage information for PL/Perl
* Make all documentation reference pgsql-bugs and/or pgsql-hackers as
  appropriate, instead of the now-decommissioned pgsql-ports and
  pgsql-patches mailing lists
* Update time zone data files to tzdata release 2009a (for Kathmandu
  and historical DST corrections in Switzerland, Cuba)
2009-02-07 17:55:42 +00:00
joerg
583ab85693 DESTDIR support 2009-02-07 17:51:59 +00:00
adam
11b7398b36 Changes 8.2.12:
* Improve handling of URLs in headline() function
* Improve handling of overlength headlines in headline() function
* Prevent possible Assert failure or misconversion if an encoding
  conversion is created with the wrong conversion function for the
  specified pair of encodings
* Fix possible Assert failure if a statement executed in PL/pgSQL is
  rewritten into another kind of statement, for example if an
  "INSERT" is rewritten into an "UPDATE"
* Ensure that a snapshot is available to datatype input functions
* Make it safer for SPI-using functions to be used within datatype
  I/O; in particular, to be used in domain check constraints
* Avoid unnecessary locking of small tables in "VACUUM"
* Fix a problem that made UPDATE RETURNING tableoid return zero
  instead of the correct OID
* Fix planner misestimation of selectivity when transitive equality
  is applied to an outer-join clause
  This could result in bad plans for queries like ... from a left
  join b on a.a1 = b.b1 where a.a1 = 42 ...
* Improve optimizer's handling of long IN lists
  This change avoids wasting large amounts of time on such lists when
  constraint exclusion is enabled.
* Ensure that the contents of a holdable cursor don't depend on the
  contents of TOAST tables
* Fix memory leak when a set-returning function is terminated without
  reading its whole result
* Fix "contrib/dblink"'s dblink_get_result(text,bool) function
* Fix possible garbage output from "contrib/sslinfo" functions
* Fix configure script to properly report failure when unable to
  obtain linkage information for PL/Perl
* Make all documentation reference pgsql-bugs and/or pgsql-hackers as
  appropriate, instead of the now-decommissioned pgsql-ports and
  pgsql-patches mailing lists
* Update time zone data files to tzdata release 2009a (for Kathmandu
  and historical DST corrections in Switzerland, Cuba)
2009-02-07 17:44:40 +00:00
adam
0ac3dc3896 Changes 8.1.16:
* Fix crash in autovacuum
  The crash occurs only after vacuuming a whole database for
  anti-transaction-wraparound purposes, which means that it occurs
  infrequently and is hard to track down.
* Improve handling of URLs in headline() function
* Improve handling of overlength headlines in headline() function
* Prevent possible Assert failure or misconversion if an encoding
  conversion is created with the wrong conversion function for the
  specified pair of encodings
* Avoid unnecessary locking of small tables in "VACUUM"
* Ensure that the contents of a holdable cursor don't depend on the
  contents of TOAST tables
* Fix uninitialized variables in "contrib/tsearch2"'s get_covers()
  function
* Fix configure script to properly report failure when unable to
  obtain linkage information for PL/Perl
* Make all documentation reference pgsql-bugs and/or pgsql-hackers as
  appropriate, instead of the now-decommissioned pgsql-ports and
  pgsql-patches mailing lists
* Update time zone data files to tzdata release 2009a (for Kathmandu
  and historical DST corrections in Switzerland, Cuba)
2009-02-07 17:43:54 +00:00
seb
4f540a1475 Note initial addition of p5-Expect-Simple version 0.04 as
devel/p5-Expect-Simple into The NetBSD Packages Collection.

The Perl 5 module Expect::Simple is a wrapper around the Expect
module which should suffice for simple applications. It hides most
of the Expect machinery; the Expect object is available for tweaking
if need be.
2009-02-07 17:38:04 +00:00
seb
ae7da2a1df Add & enable p5-Expect-Simple 2009-02-07 17:37:20 +00:00
seb
2cc7a1fecc Initial import of p5-Expect-Simple version 0.04 in the NetBSD
Packages Collection.

The Perl 5 module Expect::Simple is a wrapper around the Expect
module which should suffice for simple applications. It hides most
of the Expect machinery; the Expect object is available for tweaking
if need be.
2009-02-07 17:37:00 +00:00
abs
f4bb0e74c4 MAKE_JOBS_SAFE=no 2009-02-07 17:33:51 +00:00
joerg
cad24c3e38 Simplify and fix build with newer NetBSD by exploiting USE_BSD_MAKEFILE. 2009-02-07 17:31:29 +00:00
joerg
82d70baea5 Needs pkg-config. 2009-02-07 16:58:04 +00:00
joerg
a75e8ad411 DESTDIR support. Fix build with newer NetBSD. 2009-02-07 16:53:46 +00:00
wiz
f6ecd7d009 Regen. 2009-02-07 15:27:07 +00:00
wiz
0cafd4a36b Use more markup. Add RCS Id. Add some commas. Sort options. Sort sections.
Convert to UTF-8 (only affects comment).
2009-02-07 15:25:51 +00:00
seb
424204c757 Note initial addition of p5-Devel-StackTrace-WithLexicals version
0.03 as devel/p5-Devel-StackTrace-WithLexicals into The NetBSD
Packages Collection.

The Perl 5 module Devel::StackTrace::WithLexicals by combining the
modules Devel::StackTrace and PadWalker, generates stack traces
with all the callers' lexical variables.
2009-02-07 15:14:39 +00:00
seb
e6a95ed37a Add & enable p5-Devel-StackTrace-WithLexicals 2009-02-07 15:12:51 +00:00
seb
5b65e0a007 Initial import of p5-Devel-StackTrace-WithLexicals version 0.03 in
the NetBSD Packages Collection.

The Perl 5 module Devel::StackTrace::WithLexicals by combining the
modules Devel::StackTrace and PadWalker, generates stack traces
with all the callers' lexical variables.
2009-02-07 15:12:11 +00:00
drochner
0068b25ac2 mention recent updates 2009-02-07 14:51:26 +00:00
martti
3706fc708c mediawiki 2009-02-07 11:09:58 +00:00
martti
fd08967cfc Updated www/mediawiki to 1.13.4
A number of cross-site scripting (XSS) security vulnerabilities were
discovered in the web-based installer (config/index.php). These
vulnerabilities all require a live installer -- once the installer has been
used to install a wiki, it is deactivated.

Note that cross-site scripting vulnerabilities can be used to attack any
website in the same cookie domain. So if you have an uninstalled copy of
MediaWiki on the same site as an active web service, MediaWiki could be used
to attack the active service.  If you are hosting an old copy of MediaWiki
that you have never installed, we advise you to remove it from the web.
2009-02-07 11:09:37 +00:00
seb
18147a65ee Note update of devel/p5-Moose to version 0.68 2009-02-07 11:03:23 +00:00
seb
9923ff465d Update from version 0.65 to version 0.68.
Upstream changes:
0.68 Wed, February 4, 2009
    * POD
      - Many spelling, typo, and formatting fixes by daxim.

    * Moose::Manual::Attributes
      - The NAME section in the POD used "Attribute" so search.cpan
        didn't resolve links from other documents properly.

    * Moose::Meta::Method::Overriden
      - Now properly spelled as Overridden. Thanks to daxim for
        noticing this.

0.67 Tue, February 3, 2009
    * Moose::Manual::*
      - Lots of little typo fixes and a few clarifications. Several
        pages didn't have proper titles, and so weren't actually
        visible on search.cpan.org. Thanks to hanekomu for a variety
        of fixes and formatting improvements.

0.66 Tue, February 3, 2009
    * Moose::Manual
      - This is a brand new, extensive manual for Moose. This aims to
        provide a complete introduction to all of Moose's
        features. This work was funded as part of the Moose docs grant
        from TPF. (Dave Rolsky)

    * Moose::Meta::Attribute
      - Added a delegation_metaclass method to replace a hard-coded
        use of Moose::Meta::Method::Delegation. (Dave Rolsky)

    * Moose::Util::TypeConstraints
      - If you created a subtype and passed a parent that Moose didn't
        know about, it simply ignored the parent. Now it automatically
        creates the parent as a class type. This may not be what you
        want, but is less broken than before. (Dave Rolsky)

    * Moose::Util::TypeConstraints
      - This module tried throw errors by calling Moose->throw_error,
        but it did not ensure that Moose was loaded first. This could
        cause very unhelpful errors when it tried to throw an error
        before Moose was loaded. (Dave Rolsky)

    * Moose::Util::TypeConstraints
      - You could declare a name with subtype such as "Foo!Bar" that
        would be allowed, but if you used it in a parameterized type
        such as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some
        vetting on names created via the sugar functions, so that they
        can only contain alphanumerics, ":", and ".". (Dave Rolsky)
2009-02-07 11:03:00 +00:00
obache
731788d289 Updated databases/p5-tokyotyrant to 1.5 2009-02-07 08:25:32 +00:00
obache
452cd17302 Update p5-tokyotyrant to 1.5, for tokyotyrant-1.1.12. 2009-02-07 08:25:20 +00:00
obache
01e0dc9786 Updated databases/tokyotyrant to 1.1.14 2009-02-07 08:23:26 +00:00
obache
ed071391f5 Update tokyotyrant to 1.1.14.
2009-02-05  Mikio Hirabayashi  <mikio@users.sourceforge.net>

	* ttutil.c (ttservstart, ttservaddtimedhandler): multiple tasks are now supported.

	* ttutil.c (ttsockrecv, ttsockgetint32, ttsockgetint64): performance was improved.

	* ttserver.c (do_extpc): new function.

	- Release: 1.1.14

2009-02-04  Mikio Hirabayashi  <mikio@users.sourceforge.net>

	* tcrdb.c (tcrdbqrysearchout): a bug related to the protocol format was fixed.

	* tcrdb.c (tcrdbqrysearchget): new function.

	- Release: 1.1.13
2009-02-07 08:23:10 +00:00
obache
9b09a636f2 Updated databases/p5-tokyocabinet to 1.22 2009-02-07 08:22:07 +00:00
obache
bd1808df09 Update p5-tokyocabinet to 1.22, for tokyocabinet-1.4.4. 2009-02-07 08:21:53 +00:00
taca
d761c77b95 Note update of www/typolight package to 2.6.6. 2009-02-07 04:53:55 +00:00
taca
1f605c2f66 Update www/typolight package to 2.6.6.
* pkgsrc change: improve description MESSAGE about update of the frontend
  	 	 template.


Version 2.6.6 (2009-02-07)
--------------------------
- Re-added the TinyMCE "indent" and "outdent" buttons (#490)
- Fixed issue with content element "article" modifying the page title (#462)
- Fixed issue with safe mode hack changing file owner when renaming case-sensitively
- Fixed issue with 403 pages not being shown if an article is specified (#477)
- Fixed a few minor bugs
2009-02-07 04:52:54 +00:00
shattered
c898566ea5 Fix previous commit: include ao in CONFIGURE_ARGS, not in TIMIDITY_NATIVE_AUDIO (oops). 2009-02-06 19:45:52 +00:00
shattered
4bb46fe7ab Always include libao support.
At the moment, timidity cannot use pulseaudio on NetBSD -- it has no
native driver and padsp wrapper is only for ossaudio-using applications.
However, it supports libao, and libao has pulseaudio driver.  Since
timidity always builds with vorbis support, which requires libao anyway.

OK by wiz@.
2009-02-06 19:35:07 +00:00
jmorse
caea2aa488 Bump cheese PKGREVISION 2009-02-06 17:46:02 +00:00
drochner
7ffc52ec48 update to 3.24.4
changes:
-bugfixes
-translation updates
2009-02-06 17:31:34 +00:00
drochner
81088e213a disable the "enchant" option (which was on per default unfortunately) -
with that the browser crashes immediately if a page is loaded
bump PKGREVISION
2009-02-06 17:29:42 +00:00
drochner
f367e24659 update to 2.24.4.1
changes:
-performance improvements in the sqlite3 backend
-bugfixes
-translation updates
2009-02-06 17:27:10 +00:00
jmorse
c6a05f6666 Updated graphics/cheese to 2.24.3nb1, fixes detection of webcams through hal. 2009-02-06 17:01:49 +00:00
joerg
4be66048ad Fix circular dependency detection for the case of non-leading circles.
For the dependency chain A->B->B the old code created:
_PKGSRC_DEPS=", B-1.0, A-1.0", which obviously can't match the PKGNAME
of B.
Skip the _flavor-bootstrap-depends processing if PKG_FAIL_REASON is
already set and move the check for circular dependencies right after the
block that defines PKGNAME and friends.
2009-02-06 15:27:00 +00:00
taca
045132e263 www/squid26 successor is www/squid27.
Noted from wiz about "successor" via private mail.
2009-02-06 14:30:57 +00:00
wiz
cb855ece51 + binutils-2.19.1, cairomm-1.8.0, digikam-0.9.5beta3, evolution-2.24.4,
evolution-data-server-2.24.4.1, evolution-exchange-2.24.4,
  gcalctool-5.24.3.1, gnome-speech-0.4.23, gperf-3.0.4, gtk-sharp-2.12.8,
  gtkhtml314-3.24.4, guile-www-2.22, ikiwiki-3.03, libXext-1.0.5,
  libcroco-0.6.2, mc-4.6.2, modular-xorg-server-1.5.99.902,
  p5-DB_File-1.818, p5-Net-DNS-0.65, py-gtk2-2.14.0, rdiff-backup-1.2.6,
  scmgit-base-1.6.1.2, telepathy-gabble-0.7.19, telepathy-glib-0.7.25,
  x264-devel-20090131, xextproto-7.0.5, xrandr-1.2.99.4.
2009-02-06 08:35:53 +00:00
martti
5a254bbf23 vim 2009-02-06 06:29:35 +00:00