summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-02-07Fix mysterious C++ failure as pth's pthread.h defines system as macrojoerg3-3/+24
which makes the stdlib.h prototype goes away. Avoid this by forcing real system calls. Remove a static declaration that is shadowing an extern, resulting in the creation of a text relocation.
2009-02-07Make this more binary package friendly by not sticking stuff intojoerg5-24/+66
/etc/ppp, but into share/examples/xtel. Add DESTDIR support.
2009-02-07Add DESTDIR support. Needs libXt and libXinerama. Bump revision.joerg1-3/+7
2009-02-07Needs intltool.joerg1-2/+2
2009-02-07Don't leak the workdir for destdir builds. Patches from OpenBSD ports.joerg4-6/+102
Bump revision.
2009-02-07Add missing directories for installation.joerg1-2/+3
2009-02-07Note initial addition of p5-Carp-REPL version 0.13 as devel/p5-Carp-REPLseb1-1/+2
into The NetBSD Packages Collection. When the Perl 5 module Carp::REPL is loaded and the perl interpreter dies, a read-eval-print-loop (REPL), with a few debugger like commands, is spawned before it quits. A REPL can also be spawned when a warning is issued. This module is intended to be used mostly through the command line but can also be used for testing or any other situation.
2009-02-07Fix build on newer NetBSD.joerg1-4/+2
2009-02-07Add & enable p5-Carp-REPLseb1-1/+2
2009-02-07Initial import of p5-Carp-REPL version 0.13 in the NetBSD Packagesseb3-0/+40
Collection. When the Perl 5 module Carp::REPL is loaded and the perl interpreter dies, a read-eval-print-loop (REPL), with a few debugger like commands, is spawned before it quits. A REPL can also be spawned when a warning is issued. This module is intended to be used mostly through the command line but can also be used for testing or any other situation.
2009-02-07Remove override of platform's idea of HasSecureRPC. No idea why it wasjoerg2-6/+3
defined by xorg-imake (in monolithic Xorg times), but it is obviously wrong. Supposed to fix PR 37232.
2009-02-07DESTDIR support. Needs pkg-config.joerg3-10/+13
2009-02-07Updated textproc/liblinebreak to 1.1wiz1-1/+2
2009-02-07Update to 1.1:wiz2-6/+6
New in 1.1 - Make get_lb_prop_lang static and not an exported symbol - Define is_line_breakable to alias to is_breakable - Declare get_next_char_utf* will be changed to lb_get_next_char_utf* - Move the declarations of get_next_char_utf* from linebreak.h to linebreakdef.h - Add the function documentation comments to the header files
2009-02-07Supports DESTDIR.joerg1-1/+3
2009-02-07Note initial addition of p5-Test-Expect version 0.31 asseb1-1/+2
devel/p5-Test-Expect into The NetBSD Packages Collection. The Perl 5 module Test::Expect is a module for automated driving and testing of terminal-based programs. It is handy for testing interactive programs which have a prompt, and is based on the same concepts as the Tcl Expect tool. As in Expect::Simple, the Expect object is made available for tweaking.
2009-02-07Add & enable p5-Test-Expectseb1-1/+2
2009-02-07Initial import of p5-Test-Expect version 0.31 in the NetBSD Packagesseb3-0/+32
Collection. The Perl 5 module Test::Expect is a module for automated driving and testing of terminal-based programs. It is handy for testing interactive programs which have a prompt, and is based on the same concepts as the Tcl Expect tool. As in Expect::Simple, the Expect object is made available for tweaking.
2009-02-07Don't use INSTALLATION_DIRS to define other variables. This package hasjoerg1-4/+3
no relation to X11BASE, so don't say so.
2009-02-07DESTDIR supported.joerg1-1/+3
2009-02-07forgot options.mk in last commit.jakllsch1-0/+16
2009-02-07Fix patch to actually work by using the right name of the version macro.joerg2-4/+4
Fixes build on NetBSD 4.99.24+.
2009-02-07Updated audio/ncmpc to 0.13 [jakllsch 2009-02-07]jakllsch1-1/+2
2009-02-07Update to ncmpc-0.13.jakllsch7-58/+38
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-07DESTDIR support.joerg1-15/+16
2009-02-07Updated lang/php5 to 5.2.8nb1adrianp1-1/+2
2009-02-07Get SSL support working on OpenSolaris. Unfortunately on OpenSolairs theadrianp4-8/+50
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-07Updated databases/postgresqladam2-5/+24
2009-02-07Changes 8.3.6:adam7-21/+27
* 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-07DESTDIR supportjoerg1-3/+6
2009-02-07Changes 8.2.12:adam6-20/+26
* 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-07Changes 8.1.16:adam6-21/+26
* 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-07Note initial addition of p5-Expect-Simple version 0.04 asseb1-1/+2
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-07Add & enable p5-Expect-Simpleseb1-1/+2
2009-02-07Initial import of p5-Expect-Simple version 0.04 in the NetBSDseb3-0/+30
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-07MAKE_JOBS_SAFE=noabs1-2/+3
2009-02-07Simplify and fix build with newer NetBSD by exploiting USE_BSD_MAKEFILE.joerg3-13/+9
2009-02-07Needs pkg-config.joerg1-2/+2
2009-02-07DESTDIR support. Fix build with newer NetBSD.joerg1-1/+5
2009-02-07Regen.wiz1-10/+10
2009-02-07Use more markup. Add RCS Id. Add some commas. Sort options. Sort sections.wiz1-17/+23
Convert to UTF-8 (only affects comment).
2009-02-07Note initial addition of p5-Devel-StackTrace-WithLexicals versionseb1-1/+2
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-07Add & enable p5-Devel-StackTrace-WithLexicalsseb1-1/+2
2009-02-07Initial import of p5-Devel-StackTrace-WithLexicals version 0.03 inseb3-0/+33
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-07mention recent updatesdrochner1-1/+6
2009-02-07mediawikimartti1-1/+2
2009-02-07Updated www/mediawiki to 1.13.4martti3-7/+13
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-07Note update of devel/p5-Moose to version 0.68seb1-1/+2
2009-02-07Update from version 0.65 to version 0.68.seb2-6/+6
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-07Updated databases/p5-tokyotyrant to 1.5obache1-1/+2