pkgsrcv2.git
12 years agoMerge from vendor branch TNF:
drochner [Thu, 23 Feb 2012 19:15:21 +0000 (19:15 +0000)]
Merge from vendor branch TNF:
add asciiquarium-1.0, an ASCII art animated aquarium

12 years agoadd asciiquarium-1.0, an ASCII art animated aquarium
drochner [Thu, 23 Feb 2012 19:15:21 +0000 (19:15 +0000)]
add asciiquarium-1.0, an ASCII art animated aquarium

12 years ago+p5-Term-Animation
drochner [Thu, 23 Feb 2012 19:14:03 +0000 (19:14 +0000)]
+p5-Term-Animation

12 years agoadd p5-Term-Animation-2.6, a package for animation of ASCII-art sprites
drochner [Thu, 23 Feb 2012 19:10:43 +0000 (19:10 +0000)]
add p5-Term-Animation-2.6, a package for animation of ASCII-art sprites

12 years agoMerge from vendor branch TNF:
drochner [Thu, 23 Feb 2012 19:10:43 +0000 (19:10 +0000)]
Merge from vendor branch TNF:
add p5-Term-Animation-2.6, a package for animation of ASCII-art sprites

12 years agoglib2'2 g_open() needs 3 arguments (as documented); this is enforced
drochner [Thu, 23 Feb 2012 19:08:23 +0000 (19:08 +0000)]
glib2'2 g_open() needs 3 arguments (as documented); this is enforced
now after the recent glib2 fix; from Patrick Welche per PM

12 years agoNote update of net/haproxy
morr [Thu, 23 Feb 2012 19:03:09 +0000 (19:03 +0000)]
Note update of net/haproxy

12 years agoUpdate to version 1.4.19.
morr [Thu, 23 Feb 2012 19:02:04 +0000 (19:02 +0000)]
Update to version 1.4.19.

Changes:

 - MEDIUM: http: add support for sending the server's name in the outgoing request
 - BUG/MINOR: fix options forwardfor if-none when an alternative header name is specified
 - MINOR: task: new function task_schedule() to schedule a wake up
 - BUG/MEDIUM: checks: fix slowstart behaviour when server tracking is in use
 - BUG: tcp: option nolinger does not work on backends
 - BUG: ebtree: ebst_lookup() could return the wrong entry
 - BUG: http: re-enable TCP quick-ack upon incomplete HTTP requests
 - CLEANUP: ebtree: remove a few annoying signedness warnings
 - CLEANUP: ebtree: remove 4-year old harmless typo in duplicates insertion code
 - CLEANUP: ebtree: remove another typo, a wrong initialization in insertion code
 - BUG: proto_tcp: set AF_INET on tproxy for use with recent kernels
 - MINOR: halog: add support for matching queued requests
 - BUG: http: tighten the list of allowed characters in a URI

12 years agox11/xpmroot: Fix indirect linking error on DragonFly
marino [Thu, 23 Feb 2012 18:39:53 +0000 (18:39 +0000)]
x11/xpmroot: Fix indirect linking error on DragonFly

The linker error shows up during one of the configuration tests, so the
command line for the conftest is being fixed here.  xpmroot itself did
not get touched.

12 years agoUpdated mail/opendkim to 2.4.3
pettai [Thu, 23 Feb 2012 17:50:19 +0000 (17:50 +0000)]
Updated mail/opendkim to 2.4.3

12 years ago2.4.3
pettai [Thu, 23 Feb 2012 17:45:32 +0000 (17:45 +0000)]
2.4.3
        Fix bug #SF3400670: Send ADSP failure reports when rejecting
                a message.
        Fix bug #SF3419149: Add MaximumSignedBytes to opendkim-config.h.
        Fix bug #SF3441240: Appy ReportBccAddress when generating ADSP
                reports.
        Fix bug #SF3447199: Fix logic preventing the application of the
                BodyLengthDB.
        Fix Authentication-Results generation with "AddAllSignatureResults"
                enabled.
        Fix a crash bug when trying to handle certain malformed header fields
                in verify-only mode.
        Improve error checking in the callback provided to libunbound to
                avoid crashes.
        Cope with versions of Sleepycat DB that crash when asking for a file
                descriptor for in-memory databases.
        Don't override "On-NoSignature" when "Quarantine" is set.
        Ignore header field names that contain semi-colons, as they produce
                syntactically invalid signatures.
        LIBOPENDKIM: Fix bug #SF3465400: Don't use "new" as a parameter name
                in dkim.h since that's an error for C++.
        LIBOPENDKIM: NOERROR is the same as NXDOMAIN for the purposes of
                the ADSP existence check.  Problem noted by Todd Nagengast.
        LIBOPENDKIM: Return DKIM_STAT_SYNTAX from dkim_header() if the header
                field name contained a semi-colon.
        LIBAR: After computing a timeout, if the fractional seconds portion
                adds to exactly a second, convert that amount to seconds.
                Previous versions only converted when the fractional portion
                exceeded a second.  This led to threads that spin
                indefinitely.  Problem noted by Todd Lyons and Gary Mills;
                forensic evidence revealing the problem at long last provided
                by Todd Lyons.
        STATS: Fix a crash bug in opendkim-importstats due to improper handling
                of NULL returns from SQL.

2.4.2
        Don't apply BodyLengthDB when not signing.
        LIBOPENDKIM: Update for draft-kucherawy-dkim-atps-06.
        LIBOPENDKIM: Terminate the strings returned by dkim_sig_getsubstring()
                and dkim_sig_getidentity() whenever possible.
        CONTRIB: Change "chkconfig" instruction in RHEL init script,
                and a minor tweak to the RPM spec file.

2.4.1           2011/06/28
        Fix bug #SF3312691: Add "-e" command line switch to extract a value
                from configuration.
        Fix bug #SF3324488: Accommodate postfix's job ID generation by moving
                the BodyLengthDB check down to EOH.
        Fix bug #SF3327106: Fix mode-based short-circuit logic.
        Patch #SF3321766: Remove "-d" from usage message (not implemented).
        Print database error strings instead of just return codes in
                query test mode, and clean up error strings when extracting
                them from the layers below.
        Minor fixes related to use of OpenDBX.
        LIBOPENDKIM: Fix bug #SF3328330: Correct generation of "z=" tags.
        LIBOPENDKIM: Patch #SF3313534: Improve thread-safe use of OpenSSL
                in dkim_init() and dkim_free().
        LIBOPENDKIM: Patch #SF3314269: Change all uses of off_t to ssize_t,
                as the former is reserved for use with filesystem APIs.
        LIBOPENDKIM: Make the user context pointer (void) rather than
                (const void) since the caller is allowed to change it.
        LIBOPENDKIM: Proper handling of DKIM_CBSTAT_ERROR from the prescreen
                and final callbacks.
        LIBOPENDKIM: Fix up initialization under _FFR_OVERSIGN.
        BUILD: Adjust gprof code to accomodate systems that put profiling
                output in <binary>.gmon rather than gmon.out.

2.4.0           2011/06/06
        Feature request #SF3060140: Extension of odkim.sign() to include
                maximum signed byte count.
        Feature request #SF3171865: Add _FFR_LUA_GLOBALS, enabling a
                mechanism to maintain state between Lua scripts.
        Feature request #SF3241982: Optionally add an Authentication-Results
                field for all signatures present, not just the first good one.
        Feature request #SF3256630: Add _FFR_RATE_LIMIT, enabling hooks for
                post-verification rate controls.
        Feature request #SF3290461: Add optional support for querying a
                memcache daemon via libmemcached.
        Feature request #SF3299041: Be tougher on use of the "l=" tag by
                removing "BodyLengths", renaming "BodyLengthDBFile" to
                "BodyLengthDB", and allowing pattern matches.  This
                effectively activates _FFR_BODYLENGTH_DB as well.
        Feature request #SF3303911: Add "DisableADSP" setting.
        In the stats recording code, only check for a domain match for
                signatures that don't have errors (i.e., short circuit if
                sigerror is not zero).
        LIBOPENDKIM: Feature request #SF2969516: Teach dkim_chunk() about
                DKIM_LIBFLAGS_FIXCRLF.
        LIBOPENDKIM: Feature request #SF3123731: Extend FixCRLF to cover
                header fields.
        LIBOPENDKIM: Feature request #SF3151534: Extract DKIM reputation
                support to its own library.
        LIBOPENDKIM: Feature request #SF3279589: Add _FFR_XTAGS, adding
                support for generic extension tags in signatures.
        LIBOPENDKIM: Feature request #SF3300738: Add dkim_sig_getqueries()
                and dkim_policy_getqueries() to assist API consumers that
                have their own DNS mechanisms not directly adaptable to ours.
        LIBOPENDKIM: Return an error from dkim_getsighdr() or
                dkim_getsighdr_d() if called after a key load failure.
        LIBAR: Check that the descriptor's write socket is writable before
                calling ar_sendquery() when trying to identify open requests
                that need retransmission.
        STATS: Feature request #SF3066106: Add "opendkim-anonstats" tool.
        CONTRIB: Paths in init/redhat/opendkim are now auto-generated.
        Activate _FFR_MAXVERIFY.

12 years agoReorder CMake search paths so that BUILDLINK_DIR and PREFIX come first,
hans [Thu, 23 Feb 2012 17:12:12 +0000 (17:12 +0000)]
Reorder CMake search paths so that BUILDLINK_DIR and PREFIX come first,
before / and /usr. This should prevent CMake from picking up stuff from
the base system instead of the buildlink directories.

12 years agoAdd cc-by-nc-nd-v2.5.
gdt [Thu, 23 Feb 2012 15:33:07 +0000 (15:33 +0000)]
Add cc-by-nc-nd-v2.5.

This is a non-Free license (nc, nd), so it has the -license suffix and
will not be added to DEFAULT_ACCEPTABLE.

(From Timothy E. Larson via pkgsrc-wip.)

12 years agoUse statvfs on *BSD, reported by Christoph Bayer.
ghen [Thu, 23 Feb 2012 15:20:53 +0000 (15:20 +0000)]
Use statvfs on *BSD, reported by Christoph Bayer.

12 years ago Updated devel/scmgit-base to 1.7.9.2 [gdt 2012-02-23]
gdt [Thu, 23 Feb 2012 15:19:44 +0000 (15:19 +0000)]
Updated devel/scmgit-base to 1.7.9.2 [gdt 2012-02-23]
Updated devel/scmgit-docs to 1.7.9.2 [gdt 2012-02-23]
Updated devel/scmgit to 1.7.9.2 [gdt 2012-02-23]

12 years agoUpdate to 1.7.9.2.
gdt [Thu, 23 Feb 2012 15:16:24 +0000 (15:16 +0000)]
Update to 1.7.9.2.

Fixes since v1.7.9.1
--------------------

 * Bash completion script (in contrib/) did not like a pattern that
   begins with a dash to be passed to __git_ps1 helper function.

 * Adaptation of the bash completion script (in contrib/) for zsh
   incorrectly listed all subcommands when "git <TAB><TAB>" was given
   to ask for list of porcelain subcommands.

 * The build procedure for profile-directed optimized binary was not
   working very well.

 * Some systems need to explicitly link -lcharset to get locale_charset().

 * t5541 ignored user-supplied port number used for HTTP server testing.

 * The error message emitted when we see an empty loose object was
   not phrased correctly.

 * The code to ask for password did not fall back to the terminal
   input when GIT_ASKPASS is set but does not work (e.g. lack of X
   with GUI askpass helper).

 * We failed to give the true terminal width to any subcommand when
   they are invoked with the pager, i.e. "git -p cmd".

 * map_user() was not rewriting its output correctly, which resulted
   in the user visible symptom that "git blame -e" sometimes showed
   excess '>' at the end of email addresses.

 * "git checkout -b" did not allow switching out of an unborn branch.

 * When you have both .../foo and .../foo.git, "git clone .../foo" did not
   favor the former but the latter.

 * "git commit" refused to create a commit when entries added with
   "add -N" remained in the index, without telling Git what their content
   in the next commit should be. We should have created the commit without
   these paths.

 * "git diff --stat" said "files", "insertions", and "deletions" even
   when it is showing one "file", one "insertion" or one "deletion".

 * The output from "git diff --stat" for two paths that have the same
   amount of changes showed graph bars of different length due to the
   way we handled rounding errors.

 * "git grep" did not pay attention to -diff (hence -binary) attribute.

 * The transport programs (fetch, push, clone)ignored --no-progress
   and showed progress when sending their output to a terminal.

 * Sometimes error status detected by a check in an earlier phase of
   "git receive-pack" (the other end of "git push") was lost by later
   checks, resulting in false indication of success.

 * "git rev-list --verify" sometimes skipped verification depending on
   the phase of the moon, which dates back to 1.7.8.x series.

 * Search box in "gitweb" did not accept non-ASCII characters correctly.

 * Search interface of "gitweb" did not show multiple matches in the same file
   correctly.

Also contains minor fixes and documentation updates.

12 years agoNote update of these packages:
taca [Thu, 23 Feb 2012 14:21:27 +0000 (14:21 +0000)]
Note update of these packages:

databases/ruby-pg 0.13.2
databases/ruby-sequel 3.32.0

12 years agoUpdate databases/ruby-sequel package to 3.32.0.
taca [Thu, 23 Feb 2012 14:20:31 +0000 (14:20 +0000)]
Update databases/ruby-sequel package to 3.32.0.

=== 3.32.0 (2012-02-01)

* Make serialization_modification_detection plugin work correctly with
  new objects and after saving existing objects (jeremyevans) (#432)

* Make refreshes after model creation clear the deserialized values in
  the serialization plugin (jeremyevans)

* Add Dataset#update_ignore on MySQL, for using UPDATE IGNORE in
  queries (danielb2) (#429)

* Allow select_map/select_order_map to take both a column argument and
  a block (jeremyevans)

* Fix virtual row block handling in select_map/select_order_map if
  block returns an array (jeremyevans) (#428)

* Add Sequel.empty_array_handle_nulls setting, can be set to false for
  possible better performance on some databases (jeremyevans)

* Change exclude(:b=>[]) to not return rows where b is NULL (jeremyevans) (#427)

* Support ActiveModel 3.2 in the active_model plugin, by adding
  support for to_partial_path (jeremyevans)

* Fix metadata methods (e.g. tables) on Oracle when custom identifier
  input methods are used (jeremyevans)

* Fix Database#indexes on DB2 (jeremyevans)

* Make DateTime/Time columns with Sequel::CURRENT_TIMESTAMP default
  values use timestamp column on MySQL (jeremyevans)

* Wrap column default values in extra parens on SQLite, fixes some
  cases (jeremyevans)

* Make Database#indexes not include primary key indexes on Derby,
  HSQLDB, Oracle, and DB2 using the jdbc adapter (jeremyevans)

* Support Database#indexes in shared MSSQL adapter (jeremyevans)

* Support :include option when creating indexes on MSSQL, for storing
  column values in the index (crawlik) (#426)

* Make set_column_type not modify defaults and NULL/NOT NULL setting
  on MSSQL, H2, and SQLite (jeremyevans)

* Qualify identifiers when filtering/excluding by associations (jeremyevans)

* Make table_exists? better handle tables where you don't have
  permissions for all columns (jeremyevans) (#422)

* Using new association options, support associations based on columns
  that clash with ruby method names (jeremyevans) (#417)

* Add use_after_commit_rollback setting to models, can be turned off
  to allow model usage with prepared transactions (jeremyevans)

* Fix alter table emulation on SQLite when foreign keys reference the
  table being altered (jeremyevans)

* Fix progress shared adapter, broken since the dataset literalization
  refactoring (jeremyevans) (#414)

* Support :map and :to_hash prepared statement types (jeremyevans)

* Make Dataset#naked! work correctly (jeremyevans)

* Remove Dataset#paginate!, as it was broken (jeremyevans)

* Fix query extension to not break usage of #clone without arguments
  (jeremyevans) (#413)

=== 3.31.0 (2012-01-03)

* Dataset#from no longer handles :a__b__c___d as a.b.c AS d (jeremyevans)

* Support many_to_one associations with the same name as their column,
  using the :key_column option (jeremyevans)

* Add Model.def_column_alias for defining alias methods for columns
  (jeremyevans)

* Support :server option in Dataset#import and #multi_insert (jeremyevans)

* Respect existing RETURNING/OUTPUT clauses in #import/#multi_insert on
  PostgreSQL/MSSQL (jeremyevans)

* Support :return=>:primary_key option to Dataset#import and #multi_insert
  (jeremyevans)

* Correctly handle return value for Dataset#insert with column array and value
  array on PostgreSQL <8.2 (jeremyevans)

* Dataset#insert_multiple now returns an array of inserted primary keys
  (jeremyevans) (#408)

* Support RETURNING with DELETE and UPDATE on PostgreSQL 8.2+ (funny-falcon)

* Raise error if tables from two separate schema are detected when parsing the
  schema for a single table on PostgreSQL (jeremyevans)

* Handle clob types as string instead of blob on H2 (jeremyevans)

* Add database type support to the mock adapter, e.g. mock://postgres
  (jeremyevans)

* Allow creation of full text indexes on Microsoft SQL Server, but you need to
  provide a :key_index option (jeremyevans)

* Allow Dataset#full_text_search usage with prepared statements (jeremyevans)

* Make Dataset#exists use a PlaceholderLiteralString so it works with prepared
  statements (jeremyevans)

* Fix Dataset#empty? for datasets with offsets when offset support is emulated
  (jeremyevans)

* Add Dataset#group_rollup and #group_cube methods for GROUP BY ROLLUP and
  CUBE support (jeremyevans)

* Add support for custom serialization formats to the serialization plugin
  (jeremyevans)

* Support a :login_timeout option in the jdbc adapter (glebpom) (#406)

12 years agoUpdate databases/ruby-pg package to 0.13.2.
taca [Thu, 23 Feb 2012 14:18:23 +0000 (14:18 +0000)]
Update databases/ruby-pg package to 0.13.2.

== v0.13.2 [2012-02-22] Michael Granger <ged@FaerieMUD.org>

- Make builds against PostgreSQL earlier than 8.3 fail with a descriptive
  message instead of a compile failure.

== v0.13.1 [2012-02-12] Michael Granger <ged@FaerieMUD.org>

- Made use of a finished PG::Connection raise a PG::Error instead of
  a fatal error (#110).
- Added missing BSDL license file (#108)

== v0.13.0 [] Michael Granger <ged@FaerieMUD.org>

Reorganization of modules/classes to be better Ruby citizens (with backward-compatible aliases):
- Created toplevel namespace 'PG' to correspond with the gem name.
- Renamed PGconn to PG::Connection (with ::PGconn alias)
- Renamed PGresult to PG::Result (with ::PGresult alias)
- Renamed PGError to PG::Error (with ::PGError alias)
- Declare all constants inside PG::Constants, then include them in
  PG::Connection and PG::Result for backward-compatibility, and
  in PG for convenience.
- Split the extension source up by class/module.
- Removed old compatibility code for PostgreSQL versions < 8.3

Documentation:
- Clarified licensing, updated to Ruby 1.9's license.
- Merged authors list, added some missing people to the Contributor's
  list.
- Cleaned up the sample/ directory
- Making contact info a bit clearer, link to the Google+ page and
  the mailing list

Enhancements:
- Added a convenience method: PG.connect -> PG::Connection.new

Bugfixes:
- Fixed LATIN5-LATIN10 Postgres<->Ruby encoding conversions

12 years agoNote updated of lang/ruby19-base package to 1.9.2pl318.
taca [Thu, 23 Feb 2012 14:16:43 +0000 (14:16 +0000)]
Note updated of lang/ruby19-base package to 1.9.2pl318.

12 years agoUpdate ruby19-base package to 192pl318, Ruby 1.9.2 patchlevel 318.
taca [Thu, 23 Feb 2012 14:15:58 +0000 (14:15 +0000)]
Update ruby19-base package to 192pl318, Ruby 1.9.2 patchlevel 318.
(It seems to the tag of subversion was created with wrong name.)

Ruby 1.9.2-p318 is released.

This release include a security fixes of the Ruby OpenSSL extension.
See [1] for more detail about this fix.
*1:
http://www.ruby-lang.org/en/news/2012/02/16/security-fix-for-ruby-openssl-module-allow-0n-splitting-as-a-prevention-for-the-tls-beast-attack-/

And many bugs are fixed in this release.
See [2] for more details:
*2: http://svn.ruby-lang.org/repos/ruby/tags/v1_9_2_381/ChangeLog

12 years agoUpdated graphics/cairo to 1.10.2nb4
ryoon [Thu, 23 Feb 2012 14:01:59 +0000 (14:01 +0000)]
Updated graphics/cairo to 1.10.2nb4

12 years agoEnable tee surface backend.
ryoon [Thu, 23 Feb 2012 14:00:43 +0000 (14:00 +0000)]
Enable tee surface backend.
This is potentially used "--enable-system-cairo"ed devel/xulrunner.

Bump PKGREVISION.

12 years agoFix TOOLS_PATH.tar definition when NBPAX_PROGRAM_PREFIX is set.
hans [Thu, 23 Feb 2012 13:09:55 +0000 (13:09 +0000)]
Fix TOOLS_PATH.tar definition when NBPAX_PROGRAM_PREFIX is set.

12 years agoUpdated databases/mysql55 to 5.5.21
adam [Thu, 23 Feb 2012 13:02:20 +0000 (13:02 +0000)]
Updated databases/mysql55 to 5.5.21

12 years agoChanges 5.5.21:
adam [Thu, 23 Feb 2012 13:01:03 +0000 (13:01 +0000)]
Changes 5.5.21:
* A new CMake option, MYSQL_PROJECT_NAME, can be set on Windows or Mac OS X to
  be used in the project name.
Bugs Fixed
* Performance: InnoDB Storage Engine: Memory allocation for InnoDB tables was
  reorganized to reduce the memory overhead for large numbers of tables or
  partitions, avoiding situations where the “resident set size” could grow
  regardless of FLUSH TABLES statements. The problem was most evident for tables
  with large row size.
* Incompatible Change: An earlier change (in MySQL 5.1.62 and 5.5.21) was found
  to modify date-handling behavior in General Availability-status series (MySQL
  5.1 and 5.5). This change has been reverted.
* The change was that several functions became more strict when passed a DATE()
  function value as their argument, thus they rejected incomplete dates with
  a day part of zero. These functions were affected: CONVERT_TZ(), DATE_ADD(),
  DATE_SUB(), DAYOFYEAR(), LAST_DAY(), TIMESTAMPDIFF(), TO_DAYS(), TO_SECONDS(),
  WEEK(), WEEKDAY(), WEEKOFYEAR(), YEARWEEK(). The previous behavior has been
  restored.
* InnoDB Storage Engine: A Valgrind error was fixed in the function
  os_aio_init().
* InnoDB Storage Engine: The server could crash when creating an InnoDB
  temporary table under Linux, if the $TMPDIR setting points to a tmpfs
  filesystem and innodb_use_native_aio is enabled, as it is by default in MySQL
  5.5.4 and higher.
* InnoDB Storage Engine: References to C preprocessor symbols and macros
  HAVE_purify, UNIV_INIT_MEM_TO_ZERO, and UNIV_SET_MEM_TO_ZERO were removed
  from the InnoDB source code. They were only used in debug builds instrumented
  for Valgrind. They are replaced by calls to the UNIV_MEM_INVALID() macro.

12 years agoBackport a fix for a serious bug from upstream, where pkgsrc's CFLAGS
fhajny [Thu, 23 Feb 2012 13:00:23 +0000 (13:00 +0000)]
Backport a fix for a serious bug from upstream, where pkgsrc's CFLAGS
were being used to replace EU::CBuilder's ccflags, resulting in tests
and modules failing in specific situations (e.g. on SunOS with ABI=32).

https://rt.perl.org/rt3//Public/Bug/Display.html?id=89478

Bump PKGREVISION.

12 years ago+ bacula-5.2.6, file-5.11, flightgear-2.6, opera-11.61 [pkg/46079],
wiz [Thu, 23 Feb 2012 12:54:15 +0000 (12:54 +0000)]
+ bacula-5.2.6, file-5.11, flightgear-2.6, opera-11.61 [pkg/46079],
  parallel-20120222, rlwrap-0.37 [pkg/46078], xwd-1.0.5.

12 years agoPR/42954: bacula-static option is broken. It requires non-libtool build,
shattered [Thu, 23 Feb 2012 12:16:32 +0000 (12:16 +0000)]
PR/42954: bacula-static option is broken.  It requires non-libtool build,
but Makefiles' "all" targets include both dynamic and static targets.
Package PLISTs also don't support static-only build.

12 years agoUpdated time/kronolith to 2.3.6
obache [Thu, 23 Feb 2012 12:06:01 +0000 (12:06 +0000)]
Updated time/kronolith to 2.3.6

12 years agoUpdate kronolith to 2.3.6.
obache [Thu, 23 Feb 2012 12:05:50 +0000 (12:05 +0000)]
Update kronolith to 2.3.6.
(while here, set LICENSE=gnu-gpl-v2, fix unwanted empty directories creation)

------
v2.3.6
------

[jan] Add upgrade scripts for next-generation SQL share driver.
[jan] Export recurrence exceptions in a more portable way.

------
v2.3.5
------

[gwr] Fix moving events between calendars for the Kolab driver (Bug #7932)
[jan] Import and export the privacy field in CSV data (Request #9139).
[mjr] Send an iTip REQUEST, not ADD, when updating an existing event
      (Bug #9131).
[jan] Fix all-day events sometimes showing up an day early too (Bug #9012).
[mjr] Sort exception list before displaying (Request #7688).
[mjr] Do not remove history entries when removing user data (Bug #8755).

------
v2.3.4
------

[jan] Delete Horde alarms when resetting an event alarm.
[jan] Set an alarm to one minute, if users try to set an alarm without time.
[gwr] Fix editing the start date of recurring events (kolab/issue3885).

------
v2.3.3
------

[jan] Fix editing URLs of remote calendars.
[gwr] Fix recurring weekly events with fixed number of occurences but multiple
      incidences per week (kolab/issue3846).
[gwr] Fix recurring weekly events with intervals > 1 (Bug #8546).
[jan] Optimize event link generation (patrick.abiven@apitech.fr).
[jan] Fix Oracle SQL scripts.
[jan] Fix charset of ajax responses.
[jan] Add Croatian translation (Matej Vela <matej.vela@carnet.hr>).
[jan] Speed up listing alarms (patrick.abiven@apitech.fr, Request #8638).
[jan] Simplify and improve portability of listing events without date limits
      in the SQL driver (Bug #8590).
[mjr] Fix issue that caused the default alarm time to be applied to
      listTimeObjects events (Bug #8588).

------
v2.3.2
------

[mms] Upgrade prototype.js to v1.6.1.
[jan] Allow to add address lists as attendees through the address book popup
      (Bug #7834).
[jan] Fix exporting certain weekday recurrence rules to iCalendar
      (lst_hoe02@kwsoft.de, Bug #8501).
[jan] Export recurrence end dates as date-time values in iCalendar data to
      improve compatibility with external clients (Bug #7846).
[jan] Fix synchronization with output compression enabled (Bug #7769).
[jan] Add configuration whether to show user drop down list or text field in
      permissions dialog (requires Horde 3.3.5).
[jan] Propagate the 'modified' API method (Request #8274).
[cjh] Fix the signature of the kronolith/import API method
      (rpolli@babel.it, Bug #8309).
[jan] Correctly create all-day events if using the all-day link in the day
      view (stpierre@nebrwesleyan.edu, Bug #8220).
[jan] Fix rendering of all-day events (Bug #8176).

------
v2.3.1
------

[jan] Render contact autocompletion list on top of free/busy blocks (Bug #7273).
[jan] Save recurrence exceptions when copying events (Bug #7689).
[jan] Prevent warnings if trying to add address lists as attendees (Bug #7834).
[jan] Fix start and end time calculation of multi-day events (Bug #7788).
[jan] Wrap URL in calendar information in IE7 (almarin@um.es, Bug #8043).
[jan] Fix "Date-string has wrong format" error with holidays (Bug #7961).
[jan] Use improved translation support in Date_Holidays (requires 0.21.0 now,
      Bug #7272).
[jan] Empty view cache when changing calendar selection
      (stpierre@nebrwesleyan.edu, Bug #7879).
[mjr] Fix category CSS being included on embedded widgets.
[cjh] Work around BC break with Horde versions before 3.2 (Bug #7820).
[jan] Allow to manually change attendee responses (paul@carnie.com.au,
      Request #7443).
[jan] Fix linking to last week across certain year boundaries (Bug #7827).
[jan] Add script to import events from SquirrelMail database.
[cjh] Add private-***.png graphics to Tango and Silver themes (Bug #7531).
[cjh] Fix listing of users in the calendar/browse API call.
[jan] Set timezone per user preference and fix recurring events when sending
      reminders through Kronolith (develop@kristov.de, Bug #7038).
[cjh] Add a PostgreSQL-specific upgrade script for 2.2 to 2.3
      (michael.menge@zdv.uni-tuebingen.de, Bug #7454).
[mms] Upgrade prototype.js to v1.6.0.3.

12 years agoUpdated mail/turba to 2.3.6
obache [Thu, 23 Feb 2012 11:46:20 +0000 (11:46 +0000)]
Updated mail/turba to 2.3.6

12 years agoUpdate truba to 2.3.6.
obache [Thu, 23 Feb 2012 11:46:07 +0000 (11:46 +0000)]
Update truba to 2.3.6.
(while here, set LICENSE=apache-1.1.)

------
v2.3.6
------

[mjr] Fix issue that caused erroneous file listings for objects in sources
      without a __uid value.
[jan] Allow to export photo/logo fields to vCard without MIME type.
[jan] Support X-EPOCSECONDNAME fields of Nokia phones.
[jan] Add upgrade scripts for next-generation SQL share driver.
[jan] Fix splitting up names when exporting to N properties of vCards.
[jan] Only set the encoding parameter for binary data in vCards, if data is not
      empty (Bug #9413).
[jan] Fix searching for fields matching an email address if using 'emails'
      attribute instead of 'email' (Bug #9472).
[jan] Use personal address books first if determining the default one (Valentin
      Vidic, Request #9367).
[jan] Use name format preference not only for paging, but for sorting too
      (Request #8806).
[jan] Fix photo corruption when exporting to vCard 3.0 (Bug #9100).

------
v2.3.5
------

[jan] Correctly export FN vCard property if 'alternative_name' is set, but not
      'name' (Bug #9207).
[jan] Fix import of addresses from LDIF (Axel Jurak, Bug #9215).
[jan] Speed up browsing of long address books.

------
v2.3.4
------

[jan] Remove deleted contacts from distribution lists in the same address book.
[mjr] Allow creation of default, personal address book when other read-only
      sources are present.
[mjr] Log in history when deleting all of a user's contacts (Bug #8755).
[jan] Only export non-empty fields if exporting manually.
[jan] Add export to vCard 3.0.
[jan] Only synchronize those fields that are supported by the client
      (Request #6658, requires Horde 3.3.7).

------
v2.3.3
------

[jan] Fix syntax of MSSQL scripts (Bug #8664).
[jan] Add preference for the name format to use for sorting (Request #6721).
[jan] Condense whitespace in composite fields (Request #8654).
[jan] Add and fix Oracle-specific SQL scripts.
[jan] Add Croatian translation (Matej Vela <matej.vela@carnet.hr>,
      Iva Rumora <iva.rumora@zg.t-com.hr>).
[mjr] Fix permission checking for virtual address books.
[jan] Update deleted attributes during synchronization (lst_hoe02@kwsoft.de,
      Request #6658).
[jan] Support X-ANNIVERSARY, X-CHILDREN, and X-SPOUSE vCard fields
      (Request #8074).
[jan] Fix copying and moving of image fields (Ryu <ryu@ryux.org>, Bug #8523).
[jan] Don't return an error on empty LDAP search results (Bug #8595).
[jan] Replace PHP5-only code from the LDIF exporter (Bug #8586).

------
v2.3.2
------

[mms] Upgrade prototype.js to v1.6.1.
[jan] Fix synchronization with output compression enabled (Bug #7769).
[mjr] Fix contacts being deleted during synchronization when moved from one
      address book to another (ryu@ryux.org, Bug #8487).
[mjr] Add new API method for retrieving the default share for a source.
[jan] Don't overwrite the compositing fields, when importing composite fields.
[cjh] Fix searches for multiple strict fields and at least one non-strict field
      (tinu@humbapa.ch, Bug #7876).
[mjr] Specific timeobject categories are now only advertised when they are
      present in a configured source.

12 years agosort
obache [Thu, 23 Feb 2012 11:37:19 +0000 (11:37 +0000)]
sort

12 years agoUpdated mail/ingo to 1.2.6
obache [Thu, 23 Feb 2012 11:24:39 +0000 (11:24 +0000)]
Updated mail/ingo to 1.2.6

12 years agoUpdate ingo to 1.2.6.
obache [Thu, 23 Feb 2012 11:24:29 +0000 (11:24 +0000)]
Update ingo to 1.2.6.
(while here, set LICENSE=apache-1.1.)

------
v1.2.6
------

[mms] Fix encoding of vacation message in maildrop driver (Bug #9532).
[jan] Add upgrade scripts for next-generation SQL share driver.

12 years agoUpdated mail/imp to 4.3.11
obache [Thu, 23 Feb 2012 11:04:21 +0000 (11:04 +0000)]
Updated mail/imp to 4.3.11

12 years agoUpdate imp to 4.3.11.
obache [Thu, 23 Feb 2012 11:04:09 +0000 (11:04 +0000)]
Update imp to 4.3.11.
(while here, set LICENSE=gnu-gpl-v2.)

-------
v4.3.11
-------

[mms] SECURITY: Fix XSS vulnerabilities on the compose page, the contacts popup
      window, and with certain IMAP mailbox names.

-------
v4.3.10
-------

[jan] Don't submit the action form when reloading messages with iTip
      attachments (Bug #9502).

12 years agoUpdated www/horde to 3.3.13
obache [Thu, 23 Feb 2012 10:40:45 +0000 (10:40 +0000)]
Updated www/horde to 3.3.13

12 years agouse example.com for examples of domain name.
obache [Thu, 23 Feb 2012 10:40:20 +0000 (10:40 +0000)]
use example.com for examples of domain name.

12 years agoUpdate horde to 3.3.13.
obache [Thu, 23 Feb 2012 10:34:08 +0000 (10:34 +0000)]
Update horde to 3.3.13.
(while here, set LICENSE=gnu-lgpl-v2, move empty directory handling to PLIST)
-------
v3.3.13
-------

[mms] SECURITY: Fix XSS vulnerability in email form field validation.
[jan] Fix UTF-8 support with Firefox 10 or later.
[jan] Add support for resetting passwords to LDAP driver.

-------
v3.3.12
-------

[jan] Convert charset of group names in SQL driver (Bug #9611).
[jan] Fix deleting of SyncML anchors if PHP short_open_tag is off (Bug #9349).
[jan] Add an experimental new Share SQL driver with better performance.
[jan] Fix integer overflow in ASN.1 parser for S/MIME messages.
[jan] Fix splitread database usage in VFS (Bug #9467).
[jan] Fix invalidating permission cache in SQL driver (Bug #9392).

12 years agoUpdated mail/dovecot2 to 2.1.1, mail/dovecot2-pigeonhole to 0.3.0.
ghen [Thu, 23 Feb 2012 09:55:11 +0000 (09:55 +0000)]
Updated mail/dovecot2 to 2.1.1, mail/dovecot2-pigeonhole to 0.3.0.

12 years agoUpdate to Pigeonhole 0.3.0 for Dovecot 2.1.
ghen [Thu, 23 Feb 2012 09:53:19 +0000 (09:53 +0000)]
Update to Pigeonhole 0.3.0 for Dovecot 2.1.

* Renamed sieve_global_path setting to sieve_default for clarity. Old name is
  still recognized for backwards compatibility. Support for the ancient (pre
  v1.1) name for this setting "global_script_path" is now dropped.
* Added means to prohibit use of redirect action. Setting sieve_max_redirects
  to 0 now means that redirect is disallowed in stead of unlimited. Default
  value remains four.
* Fixed interaction of Sieve include extension with ManageSieve. It is updated
  to match new requirements in the draft include specification. Missing
  included scripts are no longer an error at upload time.
* Updated RFC2822 header field body verification to exclude non-printing
  characters (RFC5322). Only Sieve actions that can create unstructured header
  values (currently enotify/mailto and editheader) are affected by this change.
+ Completed sieve-filter tool to a useful state. The sieve-filter tool provides
  a means to (re)filter messages in a mailbox through a Sieve script.
+ Implemented the Sieve editheader extension. It is now possible to add and
  remove message headers from within Sieve.
+ ManageSieve: added support for reading quoted and literal strings as a
  stream. Fixes support for handing large SASL responses (analogous to similar
  changes in Dovecot). It is now also allowed to use a quoted string for the
  PUTSCRIPT script argument.
+ Added code to cleanup tmp directory in Sieve storage directory (sieve_dir)
  every once in a while.
+ Added support for substituting the entire message during Sieve processing.
  This is used for the filter action provided by the new sieve_extprograms
  plugin (provided separately for now). The filter action allows passing the
  message through an external program.
+ Added support for restricting certain Sieve language extensions to
  (admin-controled) global scripts. Restricted extensions can be configured
  using the new sieve_global_extensions setting. This is particularly useful
  for some of the Dovecot-specific (plugin-based) Sieve extensions, that can
  be somewhat hazardous when under direct control of users (e.g.
  sieve_extprograms).

12 years agoUpdate to Dovecot 2.1.1. Major changes since 2.0.x:
ghen [Thu, 23 Feb 2012 09:53:06 +0000 (09:53 +0000)]
Update to Dovecot 2.1.1.  Major changes since 2.0.x:

* Plugins now use UTF-8 mailbox names rather than mUTF-7: acl, autocreate,
  expire, trash, virtual
* auth_username_format default changed to %Lu. If you really want case
  sensitive usernames, set it back to empty.
* Solr full text search backend changed to use mailbox GUIDs instead of mailbox
  names, requiring reindexing everything. solr_old backend can be used with old
  indexes to avoid reindexing, but it doesn't support some newer features.
* Expire plugin: Only go through users listed by userdb iteration.  Delete dict
  rows for nonexistent users, unless expire_keep_nonexistent_users=yes.
* Temporary authentication failures sent to IMAP/POP3 clients now includes the
  server's hostname and timestamp. This makes it easier to find the error
  message from logs.
* dsync was merged into doveadm. There is still "dsync" symlink pointing to
  "doveadm", which you can use the old way for now.  The preferred ways to run
  dsync are "doveadm sync" (for old "dsync mirror") and "doveadm backup".

+ imapc (= IMAP client) storage allows using a remote IMAP server to be used as
  storage. This allows using Dovecot as a smart (caching) proxy or using dsync to
  do migration from remote IMAP server.
+ Mailbox indexing via queuing indexer service (required for Lucene)
+ Lucene full text search (FTS) backend rewritten with support for different
  languages
+ FTS finally supports "OR" search operation
+ FTS supports indexing attachments via external programs
+ IMAP FUZZY extension, supported by Lucene and Solr FTS backends
+ IMAP SPECIAL-USE extension to describe mailboxes
+ Mailbox list indexes
+ Statistics tracking via stats service. Exported via doveadm stats.
+ Autocreate plugin creates/subscribes mailboxes physically only when the
  mailbox is opened for the first time. Mailbox listing shows the autocreated
  mailboxes even if they don't physically exist.
+ Password and user databases now support default_fields and override_fields
  settings to specify template defaults/overrides.
+ SCRAM-SHA-1 authentication mechanism by Florian Zeitz
+ LDAP: Allow building passdb/userdb extra fields from multiple LDAP attributes
  by using %{ldap:attributeName} variables in the template.
+ Improved multi-instance support: Track automatically which instances are
  started up and manage the list with doveadm instance commands.  All Dovecot
  commands now support -i <instance_name> parameter to select the instance
  (instead of having to use -c <config path>).  See instance_name setting.
+ auth: Implemented support for Postfix's "TCP map" sockets for user existence
  lookups.
- listescape plugin works perfectly now

Changes since 2.1.0:

+ dsync: If message with same GUID is saved multiple times in session, copy it
  instead of re-saving.
- acl plugin + autocreated mailboxes crashed when listing mailboxes
- doveadm force-resync: Don't skip autocreated mailboxes (especially INBOX).
- If process runs out of fds, stop listening for new connections only
  temporarily, not permanently (avoids hangs with process_limit=1 services)
- auth: passdb imap crashed for non-login authentication (e.g. smtp).

12 years agoUpdated math/mathomatic to 15.8.0
asau [Thu, 23 Feb 2012 07:58:10 +0000 (07:58 +0000)]
Updated math/mathomatic to 15.8.0

12 years agoUpdate to Mathomatic 15.8.0
asau [Thu, 23 Feb 2012 07:57:56 +0000 (07:57 +0000)]
Update to Mathomatic 15.8.0

CHANGES MADE TO MATHOMATIC 15.7.3 TO BRING IT UP TO THE NEXT VERSION:

02/05/12 - The variables command now returns false (with error message) if
           no normal variables are listed with the default or "count"
           command line options.  This is so it can detect numeric-only
           expressions, which may be useful.

02/08/12 - The set command now returns the string "Success." upon success,
           if the debug level is positive or zero.  m4 Mathomatic startup
           m4 scripts required adjustment, so they wouldn't repeatedly say
           "Success.".

02/13/12 - The variables command by default now displays e, i, pi as e#, i#,
           and pi#, so you can tell they are not normal variables.  This
           affected other functionality of the variables command, fix was
           uploaded before the end of the day.

02/14/12 - Change of 12/24/11 was undone.  Many expressions containing the
           imaginary unit, such as the complex exponential expansion of the
           tangent function, were not getting simplified with the simplify
           command.  See the complex number problem in "misc/known_bugs.txt".
           Simplification should work better now for expressions containing
           division by complex numbers.

Mathomatic version 15.8.0 released Saturday 02/18/12.

CHANGES MADE TO MATHOMATIC 15.7.2 TO BRING IT UP TO THE NEXT VERSION:

Some minor user interface improvements were made.

12/14/11 - Further improved parse_complex(), so simplify works better and
           the divide command no longer approximates, giving more accurate
           symbolic answers.

12/18/11 - Combining powers and different denominators that contain absolute
           values like ((x^2)^.5) is now prevented.  This allows correct
           simplification and solving when dealing with absolute values.
           Tested with the Batman equations, which, when plotted
           display the Batman logo ("tests/batman_plot").

12/21/11 - Moved place where 1/i is converted to -i to within the complex
           number division handler, making complex number results more
           consistent and correct.

12/23/11 - Changed the chief author's main email address to
           "gesslein@mathomatic.org".  The old linux.com email address didn't
           seem to work, reliability issues, etc.

12/24/11 - Combining different denominators that contain the imaginary unit
           (i) is now prevented.  This prevents getting different answers
           after simplifying a complicated complex number expression.

01/01/12 - All copyright dates updated to include the new year 2012.
           Happy New Year everybody!

           "set html" in the library now allows pretty HTML output with
           redirected output and with 2D library result string expression
           output ("set display2d" or display command).
           Still no color HTML output for the library.

01/04/12 - Improvement to simplification made, less unnecessary divisions
           and prettier results of the simplify command.  Needs testing.

01/05/12 - Added color HTML output for redirected output when using the
           symbolic math library.

01/24/12 - Increased the size of icons/mathomatic.png to 64x64 and made
           it look nicer.  This is the new, resizeable Mathomatic logo:
           icons/mathomatic.svg.

01/25/12 - Published makenews.sh script to make the NEWS file out of the
           changes.txt file.

01/26/12 - Added tests/demo and tests/demo_sub, to run specific scripts,
           and create complete HTML output files from them.  These are used
           to create the examples on the Mathomatic website.

Mathomatic version 15.7.3 released Wednesday 02/01/12.

CHANGES MADE TO MATHOMATIC 15.7.1 TO BRING IT UP TO THE NEXT VERSION:

A C code cleanup was performed and new debugging/self-checking code was added.

11/19/11 - "make uninstall" now uninstalls the prime number tools and
           symbolic math library too.

11/20/11 - Cleaned up calculate command to allow feedback iteration of more
           than one expression at a time, for a consistent user interface.

11/22/11 - The Mathomatic command "help geometry" now enters the common
           geometry formulas for you, into equation spaces.

           Added "help conversions" which enters some common metric/English
           conversion formulas; with it, you just select the equation that
           does what you want, solving for the desired unit of measurement.
           Then you just type "repeat calculate" to try different values.
           "tests/geometry.in" and "tests/conversions.in" have been
           subsequently removed.

11/25/11 - When compiled for the Symbolic Math Library, Mathomatic defaults
           to single-line output ("set no display2d"), so that output can be
           easily fed back into the input.  Otherwise, output defaults to
           2D mode ("set display2d").  Mathomatic no longer ignores the
           display2d flag when using the Symbolic Math Library.

11/26/11 - The command "factor number" now works in the symbolic math library,
           similarly to the way it works in the Mathomatic application.

11/27/11 - matho-sumsq in the Prime Number Tools now gets its input from
           standard input, if invoked with no arguments.

11/29/11 - Added shell script "misc/testprimes" for a parallel, brute force
           test for the first 50,000,000 primes generated by matho-primes.
           Read the shell script for more information.  Runs in 30 seconds on
           a fast, dual-core computer.

11/30/11 - Added -m option to matho-primes, which allows specifying a
           memory size multiplier.

12/02/11 - Added ability to push a text string into the readline history
           buffer, with the "push string" command.  Whenever the command
           "push equation-number-ranges" fails, the entire argument text
           string is pushed, instead.

12/03/11 - Made it so that entering "#" followed by a variable name at the main prompt
           searches backwards through all equation spaces for that variable, and then
           selecting and displaying that equation space. "/" followed by a variable name
           performs similarly, but searches forward.

12/04/11 - Added "help main" command, which lists all things allowed at the
           main prompt.

           Added "tests/cubic2.in", which is the general cubic polynomial
           formula using 2 equations.

           Improved display order and functionality of "optimize all" command.

12/11/11 - Better detection of complex numbers with fixed parse_complex()
           internal function.

           Rationalizing denominators that contain absolute values ((x^2)^.5)
           is now prevented.  This was a bug.

Mathomatic version 15.7.2 released Tuesday 12/13/11.

CHANGES MADE TO MATHOMATIC 15.7.0 TO BRING IT UP TO THE NEXT VERSION:

11/03/11 - Added "tests/heart.in", which plots a nice looking heart with
           gnuplot while running Mathomatic.

           Displaying thousands separators in MinGW was failing, now it must
           be specified with the THOUSANDS_SEPARATOR compile-time define.
           Thousands separators are not well supported in most standard C
           libraries, causing failure to display numbers, so they are now
           turned off.  So now "set finance" works in the MS-Windows version,
           it was not working at all before (bug reports, anyone?).

11/04/11 - Testing "set finance" mode when doing the standard Mathomatic
           tests now.  "tests/finance.in" now does "set finance" first thing.
           Do we need a round-up option for "set finance" mode?  Currently
           rounds to nearest cent.

11/06/11 - Some minor improvements to the Mathomatic symbolic math library
           error handling output were made.  And no more redundant nor
           inappropriate things are sent to standard output when SILENT=0,
           only helpful messages are output.

           Added the "unfactor count" command option, which also displays the
           resulting number of additive terms in each equation side.

11/10/11 - Improved error and warning messages.

           Rearrangements were made for future reliability and thorough
           testing.

11/11/11 - Allow multiple equation-number-ranges for the simplify command.

11/12/11 - Code cleanup and added more DEBUG error checking.

           Added a little helpful color to the help command.

11/13/11 - "repeat echo -" now draws a line of dashes, "repeat echo" clears
           the screen, etc.

           The derivative command now properly terminates as soon as the
           derivative reaches 0, whenever an order greater than 1 is
           specified.  Previously it just kept differentiating, order times.
           The number of derivatives taken until the result reached 0 is
           displayed.  No primes are added to the LHS variable if the required
           number of primes to add won't fit in the variable name.  Previously
           it gave the wrong number of primes (') if they all didn't fit.

           Cleanup of the Mathomatic Prime Number Tools and their man pages.

11/14/11 - Fixed a missing check for out of memory failure in plot command.

           Plotting expressions with sign variables in them now gives a
           suggestion to try "simplify sign" first, because gnuplot doesn't
           handle +/- or sign variables, but it can plot multiple
           expressions at once.

11/17/11 - Made "make test" and ./t work under Cygwin, by ignoring trailing
           carriage returns when comparing test output.

Mathomatic version 15.7.1 released Friday 11/18/11.

CHANGES MADE TO MATHOMATIC 15.6.5 TO BRING IT UP TO THE NEXT VERSION:

A C code cleanup was done.

10/02/11 - Allow an equation-number-range to be specified on the calculate
           command command-line, so that multiple equation spaces can be
           calculated automatically with a single command.

10/19/11 - Improved nintegrate command results.  nintegrate of cos(sin(x+1))
           wrt x from 0 to 1 now always gives the correct simplified result.
           Rewrote to allow specifying lower and upper bounds on command line.

10/20/11 - Divide command improved: Allow specifying the dividend and divisor
           on the command line.  Other minor fixes.

           The Mathomatic command "plot x^2" works now, Mathomatic
           automatically replaces all ^ with ** on the plot command line.

10/21/11 - Added compilation option -fexceptions to CFLAGS in the Mathomatic
           application and library makefiles and build scripts.  May be why
           exception handling wasn't working well in the past.

10/22/11 - Fixed the display command in the symbolic math library to respond
           to "set columns=number" to cut-off the 2D expression output string
           at the number column, instead of always 80 columns.  And Unix shell
           style redirection for the display command works now, to be
           consistent with the other library commands, simultaneously
           returning a single 2D expression string (width controlled by the
           "set columns" variable) and outputting all specified 2D expressions
           to the file pointed to by gfp (width limit set to infinity).

           Trying to remove -lncurses from ld command line again, getting more
           build failures because of it.  To compile under old Red Hat Linux,
           "LDLIBS=-lncurses make READLINE=1" must be used now.  All other
           distros should easily compile with no changes now.

10/24/11 - Added the "variables count" option, to display the counts of each
           variable in the specified expressions or equations.

11/01/11 - Added "NEWS" file, which is just "changes.txt" reversed. "NEWS" is
           ordered neatly with the latest changes at the top.

Mathomatic version 15.7.0 released Wednesday 11/02/11.

CHANGES MADE TO MATHOMATIC 15.6.4 TO BRING IT UP TO THE NEXT VERSION:

8/25/11 - Now allowing balanced parentheses with anything inside them in
          variable names, so that they can preserve functions temporarily.
          Just type "set special ()" to use this option and stop getting
          errors when entering functions.  They will not be real functions,
          just variables whose name is the complete function string.

8/27/11 - Added sinc(x) function to m4 Mathomatic, which is the normalized
          sinc function, defined as sin(pi*x)/(pi*x).

8/31/11 - Split off the generally useful stuff and general C math defines
          from am.h to standard.h; am.h only contains Mathomatic defines now.
          standard.h and complex_lib.c with complex.h can be included in
          your C math programs if you like, with no changes required.
          Use of gcd.c in other floating point programs that need a gcd() or
          double-to-fraction convert function is recommended.  The code
          has been heavily tested by this CAS.

9/02/11 - Fixed and tested the variables command to handle complex number
          equations better.

9/04/11 - Cleaned up and improved documentation on modular arithmetic and
          its options.  Mathomatic can simplify, calculate, and even solve
          modular arithmetic!

9/06/11 - The 2D display command's internals were
          rewritten to allow outputting to C string buffers.  This allows
          the display command to return a multi-line, formatted expression
          string when using the Symbolic Math Library.  Note that there is
          no color mode when outputting to a C string, but if you send the
          string to a terminal, it displays the specified equation space
          nicely in 2D fraction format.

9/18/11 - Mathomatic "help color" command page created.

9/19/11 - Ported Mathomatic to latest OpenIndiana SunOS operating system.
          Some changes were required and implemented for easier compilation.
          All tests passed!

9/24/11 - Improved set command error reporting.

Mathomatic version 15.6.5 released Sunday 09/25/11.

CHANGES MADE TO MATHOMATIC 15.6.3 TO BRING IT UP TO THE NEXT VERSION:

8/05/11 - Approximating complex number roots only when helpful or approximating,
          improving some results when imaginary numbers are used; for example,
          simplifying sqrt(sin(x)) now returns the best possible result.

8/06/11 - Added "make strip" target to allow easily running the Unix strip
          utility on the resulting binaries.
          Deleted the "make install-strip" and "make bininstall-strip" targets.

          Additionally display C compiler version number in version command.

8/09/11 - Added ability to make a shared library of the Symbolic Math Library,
          using the cmake utility.  "CMakeLists.txt" was the only file changed.
          The shared library is thoroughly UNtested.  :-)

8/13/11 - A colon character (:) placed before any main prompt input will make
          it ignore any error occuring in that particular line, so any current
          read operation won't abort.  Any Mathomatic command preceded with a
          colon will always return with successful status.

          File "misc/identities.in" was added, showing a strength and weakness
          of Mathomatic.

          Removed "doc" target in makefile, due to interference from a
          directory of the same name; use the "html" target instead.

          Added cheat card "doc/quickrefcard.html", created by "make htmlcard"
          and scripts "makehtmlcard.sh" and "makehtmlcard.awk".  The PDF of
          this currently has to be made manually with a web browser, using
          print to PDF file.

          Added ability to automatically create cheat sheet "quickref.pdf",
          created by "make pdfsheet", which invokes script "makepdfsheet.sh".

8/19/11 - General complex number root approximation bug fix: expressions like
          sqrt(sin(9)) now give the correct result, instead of a negative
          number, when using the calculate command.  The calculate command is
          used to immediately evaluate it when you type "sqrt(sin(9))" into
          the m4 Mathomatic main prompt.

8/20/11 - The variables command now defines all "integer" and "sign" variables
          as "int" instead of "double".

8/21/11 - Rewrote the code command code lister to allow output to a C string.
          Code command is now completely available with string output in the
          Symbolic Math Library, meaning Mathomatic can automatically
          generate programming language code within other programs now.

Mathomatic version 15.6.4 released Wednesday 08/24/11.

CHANGES MADE TO MATHOMATIC 15.6.2 TO BRING IT UP TO THE NEXT VERSION:

Source code and user documentation cleanup and corrections.

Creating a PDF book from the Mathomatic man pages with "make bookman" is more
likely to work now.  Package txt2man must be installed to run "make bookman".

6/24/11 - Added file misc/known_bugs.txt, which is the current list of known
          bugs in Mathomatic.

7/04/11 - Added file tests/quadratic.in, just a script that solves the general
          quadratic equation.

7/06/11 - Fixed error messaging to not always give command usage information
          when a command fails or gives a negative result.
          Now only gives command usage info when helpful,
          like when something on the command line is incorrect.

7/07/11 - Fixed the Mathomatic derivative command to not fail with a helpful
          error message when the derivative is zero.
          Now it just gives a warning message along with the successful
          result of the constant zero.

7/23/11 - Mathomatic no longer compiles correctly with the latest Xcode gcc,
          due to a bug in Apple's gcc optimizer.  Either turn the optimizer
          completely off when compiling with Xcode, or use the gcc provided
          by MacPorts.  Xcode version 3.x and other non-Apple C compilers will
          work fine.  All mention of Xcode has been removed from the
          Mathomatic distribution.

7/28/11 - Balanced parentheses and brackets are now allowed in variable names,
          if the "set special_variable_characters" command is run first.
          For example, "set special ()" will allow entry of named functions,
          converting them to variables, which might be useful in some cases.
          However, entry of variables like "f(x)" will not be differentiatable,
          because there is no "x" variable in that, only the "f(x)" variable.
          There can be no spaces encountered in the function; variable names
          end at any non-variable character, including space characters.  I
          can change this, if anyone requests it.

          Entry of array elements is still possible with "set special []".
          This is the default.

7/29/11 - Prompts are now blue when reading files into Mathomatic in color mode.

7/30/11 - Allow an equation number range on the solve command line, for faster,
          more automated solving.  If you want to solve all entered equations
          for x, just type "solve all x" or "solve verify all for x" to be sure.

7/31/11 - Allow "repeat read filename" command, which repeatedly reads a script
          until it fails or is aborted.

8/04/11 - "make install" now shows if installed executables are new or have
          changed since the last install.

Mathomatic version 15.6.3 released Thursday 08/04/11.

CHANGES MADE TO MATHOMATIC 15.6.1 TO BRING IT UP TO THE NEXT VERSION:

6/06/11 - Corrected datadir variable usage in the main Mathomatic makefile.
          Directly importing datadir could have catastrophically deleted the
          entire /usr/share directory with "make uninstall".

6/12/11 - Added proper compilation option (WIN32_CONSOLE_COLORS) for color mode
          in MinGW, in case use with mintty.exe is desired.

Mathomatic version 15.6.2 released Sunday 06/12/11.

CHANGES MADE TO MATHOMATIC 15.6.0 TO BRING IT UP TO THE NEXT VERSION:

The Mathomatic user documentation and help have been shaped up.

A BOLD_COLOR compile-time flag was added, to make Mathomatic default to
using bold color mode.  Used on the Mac and Windows versions of
Mathomatic now.

5/8/11 - The "factor number" command now allows number ranges, in addition
         to integers and integer expressions.

5/9/11 - Install "m4/functions.m4" to proper directory (/usr/share/mathomatic/m4).
         The "m4" directory is no longer installed to the system doc directory.
         A big thanks to Terje Røsten of Fedora for showing me the way on this,
         and for his timely Mathomatic package maintenance in Fedora Linux.

5/11/11 - The matho-primes utility can now be run from within Mathomatic by typing
          "list primes".  Put any arguments you want to pass to matho-primes on the
          "list primes" command line.  Redirection doesn't work yet for this, so it
          remains undocumented.

5/15/11 - Added NOGAMMA compile-time define, which makes the factorial function
          integer only, if desired.

          Added color mode to the MinGW Windows version of Mathomatic, thanks to
          Doug Snead for the code.  Tested in cmd.exe, command.com, and CygWin.
          The new color mode does not work in mintty.exe.

5/16/11 - Allow defining SILENT=0 when compiling the symbolic math library,
          so that "set debug level" works and normal Mathomatic debugging works
          within the library code.  Thanks to Doug Snead for suggesting this.

5/21/11 - Changed "make check" to not use the time command, as /usr/bin/time is not
          available on all systems.  "make test" performs the same function and
          still uses time.

5/23/11 - Updated the Free Software Foundation's address in the LGPL license text
          and in all source files.

Mathomatic version 15.6.1 released Sunday 06/05/11.

12 years agoSimilar fix as squid27; build problem with squid-ipf PKG_OPTIONS on
taca [Thu, 23 Feb 2012 05:26:52 +0000 (05:26 +0000)]
Similar fix as squid27; build problem with squid-ipf PKG_OPTIONS on
NetBSD 6.0_BETA.

12 years agoRepo copy files
repo-copy [Thu, 23 Feb 2012 02:39:54 +0000 (02:39 +0000)]
Repo copy files

12 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Thu, 23 Feb 2012 02:39:53 +0000 (18:39 -0800)]
Fixup fromcvs/togit conversion

12 years agoFix typo in variable name. From dieter roelants in private email.
wiz [Wed, 22 Feb 2012 23:56:03 +0000 (23:56 +0000)]
Fix typo in variable name. From dieter roelants in private email.
Bump date.

12 years agoUpdated security/p5-Net-SSLeay to 1.42
pettai [Wed, 22 Feb 2012 23:10:42 +0000 (23:10 +0000)]
Updated security/p5-Net-SSLeay to 1.42

12 years ago1.42
pettai [Wed, 22 Feb 2012 23:10:14 +0000 (23:10 +0000)]
1.42
    Fixed incorrect documentation of how to enable CRL checking.
    Fixed incorrect letter in Sebastien in Credits.
    Reversed order of the Changes file to be reverse chronological.
    Fixed a a compile error when building on Windows with MSVC6.

1.41
    Fixed incorrect const signatures for 1.0 that were causing warnings.
    Now have clean compile with 0.9.8a through 1.0.0.

1.40
    Fixed incorrect argument type in call to SSL_set1_param
    Fixed a number of issues with pointer sizes
    Removed redundant pointer cast tests from t/
    Added Perl version requirements to SSLeay.pm

1.39
    Downgraded Module::Install to 0.93 since 1.01 was causing problems in
    the Makefile.

1.38
    - Fixed a problem with  various symbols that only became available
    in OpenSSL 0.9.8 such as X509_VERIFY_PARAM and X509_POLICY_NODE,
    causing build failures with older versions of OpenSSL.

1.37
    - Added X509_get_fingerprint, contributed by Thierry Walrant (with
    minor changes die to the fact that stricmp is not avialable. Cert
    types must be lowercase. Also added test to 07_sslecho.t
    - Added suport for SSL_CTX_set1_param, SSL_set1_param,
    selected X509_VERIFY_PARAM_* OBJ_* functions. Added new test
    t/local/36_verify.t
    - Fixed an uninitialized value warning in $Net::SSLeay::proxyauth
    - Update so net-ssleay will compile if SSLV2 is not present.
    - Fixed a problem where sslcat (and possibly other functions) expect
     RSA keys and will not load DSA keys for client certificates.
    - Removed SSL_CTX_v2_new and SSLv2_method() for OpenSSL 1.0 and later.
    - Added CTX_use_PKCS12_file contributed by "Andrew A. Budkin".

12 years agoRepo copy files
repo-copy [Wed, 22 Feb 2012 22:48:43 +0000 (22:48 +0000)]
Repo copy files

12 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Wed, 22 Feb 2012 22:48:42 +0000 (14:48 -0800)]
Fixup fromcvs/togit conversion

12 years agoFix PR/42308 "munpack no longer preserve filenames", using the patch from
shattered [Wed, 22 Feb 2012 21:01:53 +0000 (21:01 +0000)]
Fix PR/42308 "munpack no longer preserve filenames", using the patch from
Debian bug 212283.

12 years agoNote update of hoe.
minskim [Wed, 22 Feb 2012 20:18:38 +0000 (20:18 +0000)]
Note update of hoe.

12 years agoUpdate hoe to 2.14.0.
minskim [Wed, 22 Feb 2012 20:18:00 +0000 (20:18 +0000)]
Update hoe to 2.14.0.

Changes:
- Make hoe noisy about missing plugins again.
- Normalize dev/runtime deps: dev + runtime = runtime.
- Added :dcov task so you can easily check documentation coverage.
- Added Rake monkeypatch so that Task#clear will clear comments. (github)
- Added coverage sorting and added tmp/isolate to rcov flags
- :doc task should depend on isolate if activated
- .rdoc files are now automatically added to the extrardocfiles list.
- Added Hoe#read_manifest
- Added check_manifest to the prerelease task to prevent broken releases.
- Added extra duplicate dependency checking.
- Hoe#withconfig merges the local and home configuration atop
  Hoe::DEFAULTCONFIG to allow plugins to supply new defaults.
- The readmefile and historyfile are now automatically guessed from
  the manifest. This allows "README.rdoc" to be used automatically.
- install_gem optionally excludes rdoc/ri generation.
- rake checkextradeps excludes rdoc/ri generation. rake install_gem does not.
- rake multi now just reinvokes rake using multiruby to allow hoe
  plugins to be invoked.

12 years agoRepo copy files
repo-copy [Wed, 22 Feb 2012 16:14:30 +0000 (16:14 +0000)]
Repo copy files

12 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Wed, 22 Feb 2012 16:14:29 +0000 (08:14 -0800)]
Fixup fromcvs/togit conversion

12 years agoUpdated editors/OmegaT to 2.5.1.01
ryoon [Wed, 22 Feb 2012 13:42:45 +0000 (13:42 +0000)]
Updated editors/OmegaT to 2.5.1.01

12 years agoUpdate to 2.5.1.01
ryoon [Wed, 22 Feb 2012 13:41:45 +0000 (13:41 +0000)]
Update to 2.5.1.01

* pkgsrc patch is merged to upstream.

Changelog:
----------------------------------------------------------------------
 OmegaT 2.5.1 update 1
----------------------------------------------------------------------
   2 Enhancements
   2 Bug fixes
   0 Localisation updates
----------------------------------------------------------------------
2.5.1 update 1 vs. 2.5.1

  Implemented requests:

  - Console: more context on error message "Failed to load..."
  http://sourceforge.net/support/tracker.php?aid=3465220

  - Navigate to next/previous segment with a note
  http://sourceforge.net/support/tracker.php?aid=3484729

  Bug fixes:

  - Remove Tags can create a corrupted target document
  http://sourceforge.net/support/tracker.php?aid=3487497

  - After "save" the cursor goes to the head of the segment
  http://sourceforge.net/support/tracker.php?aid=1643198

----------------------------------------------------------------------
 OmegaT 2.5.1
----------------------------------------------------------------------
  10 Enhancements
   1 Bug fix
   2 Localisation updates
----------------------------------------------------------------------
2.5.1 vs. 2.5.0 update 5

  Implemented requests:

  - Validate tags in console mode
  http://sourceforge.net/support/tracker.php?aid=3426212

  - Add patterns for text that should be removed and validate
  http://sourceforge.net/support/tracker.php?aid=3477099

  - User-defined tags
  http://sourceforge.net/support/tracker.php?aid=1599334

  - Validate Java MessageFormat pattern tags ({0} etc.)
  http://sourceforge.net/support/tracker.php?aid=3477045

  - Render tags in different color in editor
  http://sourceforge.net/support/tracker.php?aid=2120329

  - Add "date" & "time" to translated file name pattern
  http://sourceforge.net/support/tracker.php?aid=3346155

  - targetLocale for use with DotNetNuke ResX
  http://sourceforge.net/support/tracker.php?aid=3330974

  - Remove all tags
  http://sourceforge.net/support/tracker.php?aid=3481683

  - Create /tm/auto folder in new project
  http://sourceforge.net/support/tracker.php?aid=3368416

  Other enhancements:

  - Insert Source Tags inserts all relevant tags (custom, java, printf),
not only OmegaT-tags

  Bug fixes:

  - Camtasia filter: <Line> is incorrectly added as src segment
  http://sourceforge.net/support/tracker.php?aid=3481602

  Localisation updates:

  - Dutch localisation updated to 2.5.0 update 5 (UI, readme, documentation)
  - Italian localisation updated to 2.5.0 update 5 (UI, Instant Start, readme)

----------------------------------------------------------------------
 OmegaT 2.5.0 update 5
----------------------------------------------------------------------
   9 Enhancements
   5 Bug fixes
   2 Localisation updates
----------------------------------------------------------------------
2.5.0 update 5 vs. 2.5.0 update 4

  Implemented requests:

  - Filter for Camtasia Studio for Windows
  http://sourceforge.net/support/tracker.php?aid=3457285

  - TBX entry/concept level note
  http://sourceforge.net/support/tracker.php?aid=3454401

  - Load comment from TBX even without target language
  http://sourceforge.net/support/tracker.php?aid=3472408

  Other enhancements:

  - Magento CE locale CVS file filter

  - The key is now displayed in the comment pane for all ID-based filters:
Android Resources
Java Resource Bundles
Key=Value Files
Mozilla DTD
ResX
SubRip Subtitles
Windows Resource
WiX

  - Use a larger default size for the statistics dialog (800x400 instead of
400x300)

  - When reading external TMXs, the <hi> tag is skipped, as it cannot correspond
to a tag of a source document

  - The "out of memory" message now refers to the manual

  - Instead of using Java's default memory allocation, the Windows and Linux
startup scripts now use 512 MB

  Bug fixes:

  - GPL license has an outdated FSF address
  http://sourceforge.net/support/tracker.php?aid=3440748

  - Android filter: non-translatable text was not ignored

  - Log messages on TMX loading were missing

  - In the HHC filter, the comment pane contained Tag: PARAM Attribute: value
for all segments

  - For external TMXs, the parameter "Use XML for standalone tags" was not
working for all tags

  Localisation updates:

  - Dutch localisation updated to 2.5.0 update 3 (UI, readme, documentation)
  - Italian localisation updated to 2.5.0 update 3 (UI)

12 years agoAdd conditional for NetBSD/{i386,amd64} 6.99.*.
ryoon [Wed, 22 Feb 2012 13:25:14 +0000 (13:25 +0000)]
Add conditional for NetBSD/{i386,amd64} 6.99.*.

Tested on NetBSD/i386 6.99.3.

12 years agoNeeds pkg-config for ft2/cairo. Add it to TOOLS.
wiz [Wed, 22 Feb 2012 12:28:06 +0000 (12:28 +0000)]
Needs pkg-config for ft2/cairo. Add it to TOOLS.

12 years agoFor some reason this seems to need pkg-config now to build all its libraries.
wiz [Wed, 22 Feb 2012 12:26:33 +0000 (12:26 +0000)]
For some reason this seems to need pkg-config now to build all its libraries.
Add it to TOOLS.

12 years agobuild the library thread-aware, i.e. use <pthread.h> but do not
drochner [Wed, 22 Feb 2012 11:10:18 +0000 (11:10 +0000)]
build the library thread-aware, i.e. use <pthread.h> but do not
link against libpthread. (It doesn't create threads, just uses
locking.) This seems to be wanted by some applications, eg vlc
issues a warning on startup (with no visible consequences afaict,
but anyway).
I hope this works for other OSes too. If not, we should probably
add support for these cases to mk/pthread.bl3.mk.
bump PKGREV

12 years agoNote update of xulrunner192, firefox36 and firefox36-l10n.
obache [Wed, 22 Feb 2012 11:03:23 +0000 (11:03 +0000)]
Note update of xulrunner192, firefox36 and firefox36-l10n.

12 years agoUpdate firefox36 to 3.6.27.
obache [Wed, 22 Feb 2012 11:00:07 +0000 (11:00 +0000)]
Update firefox36 to 3.6.27.

pkgsrc changes:
* use own mozilla-common.mk, some dependency differ from recent Firefox.
* switch to use system cairo.

Fixed in Firefox 3.6.27
* MFSA 2012-11 libpng integer overflow
Fixed in Firefox 3.6.26
* MFSA 2012-08 Crash with malformed embedded XSLT stylesheets
* MFSA 2012-07 Potential Memory Corruption When Decoding Ogg Vorbis files
* MFSA 2012-04 Child nodes from nsDOMAttribute still accessible after removal of nodes
* MFSA 2012-02 Overly permissive IPv6 literal syntax
* MFSA 2012-01 Miscellaneous memory safety hazards (rv:10.0/ rv:1.9.2.26)
Fixed in Firefox 3.6.25
* MFSA 2011-59 .jar not treated as executable in Firefox 3.6 on Mac

12 years agoAdded www/php-fpm
fhajny [Wed, 22 Feb 2012 10:44:59 +0000 (10:44 +0000)]
Added www/php-fpm

12 years agoImport php53-fpm-5.3.10 as www/php-fpm.
fhajny [Wed, 22 Feb 2012 10:43:42 +0000 (10:43 +0000)]
Import php53-fpm-5.3.10 as www/php-fpm.

PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI
implementation with some additional features useful for sites
of any size, especially busier sites.

These features include:

* Adaptive process spawning (NEW!)
* Basic statistics (ala Apache's mod_status) (NEW!)
* Advanced process management with graceful stop/start
* Ability to start workers with different uid/gid/chroot/environment
  and different php.ini (replaces safe_mode)
* Stdout & stderr logging
* Emergency restart in case of accidental opcode cache destruction
* Accelerated upload support
* Support for a "slowlog"
* Enhancements to FastCGI, such as fastcgi_finish_request() - a special
  function to finish request & flush all data while continuing to do
  something time-consuming (video converting, stats processing, etc.)

... and much more.

It was not designed with virtual hosting in mind (large amounts of pools)
however it can be adapted for any usage model.

12 years agoMerge from vendor branch TNF:
fhajny [Wed, 22 Feb 2012 10:43:42 +0000 (10:43 +0000)]
Merge from vendor branch TNF:
Import php53-fpm-5.3.10 as www/php-fpm.

PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI
implementation with some additional features useful for sites
of any size, especially busier sites.

These features include:

* Adaptive process spawning (NEW!)
* Basic statistics (ala Apache's mod_status) (NEW!)
* Advanced process management with graceful stop/start
* Ability to start workers with different uid/gid/chroot/environment
  and different php.ini (replaces safe_mode)
* Stdout & stderr logging
* Emergency restart in case of accidental opcode cache destruction
* Accelerated upload support
* Support for a "slowlog"
* Enhancements to FastCGI, such as fastcgi_finish_request() - a special
  function to finish request & flush all data while continuing to do
  something time-consuming (video converting, stats processing, etc.)

... and much more.

It was not designed with virtual hosting in mind (large amounts of pools)
however it can be adapted for any usage model.

12 years agoUpdated databases/p5-DBIx-Abstract to 1.01.
hiramatsu [Wed, 22 Feb 2012 10:23:07 +0000 (10:23 +0000)]
Updated databases/p5-DBIx-Abstract to 1.01.
Updated databases/p5-DBIx-Class-UUIDColumns to 0.02006.

12 years agoUpdate p5-DBIx-Class-UUIDColumns to 0.02006.
hiramatsu [Wed, 22 Feb 2012 10:20:00 +0000 (10:20 +0000)]
Update p5-DBIx-Class-UUIDColumns to 0.02006.

Changes from previous:
----------------------
0.02006 Wed Dec 21 16:58:00 2011
    - Repackaged with Module::Install 1.00
    - Migrated repository from svn to git and added links to meta tags

12 years agoUpdate p5-DBIx-Abstract to 1.01.
hiramatsu [Wed, 22 Feb 2012 10:19:29 +0000 (10:19 +0000)]
Update p5-DBIx-Abstract to 1.01.

Changes from previous:
----------------------
1.01   2011-08-23
        - Update to modern build practices.
        - Make tests work with SQLite, so they don't need to be configured.
        - Document its depricated status.

12 years agoFix build failure on Linux (PR 42289)
cheusov [Wed, 22 Feb 2012 09:50:24 +0000 (09:50 +0000)]
Fix build failure on Linux (PR 42289)

12 years ago+ apache-2.4, bftpd-3.7, gnutls-3.0.13, libxklavier-5.2.1, lua-5.1.5,
wiz [Wed, 22 Feb 2012 07:47:07 +0000 (07:47 +0000)]
+ apache-2.4, bftpd-3.7, gnutls-3.0.13, libxklavier-5.2.1, lua-5.1.5,
  opendnssec-1.3.6, puzzles-9411, py-moin-1.9.4, stow-2.2.0,
  vifm-0.7.2, webkit-gtk-1.7.5, windowmaker-0.95.2 [wip], worker-2.19.1,
  xev-1.2.0.

12 years agoUpdate "integration" section per
wiz [Wed, 22 Feb 2012 07:39:05 +0000 (07:39 +0000)]
Update "integration" section per
http://mail-index.netbsd.org/tech-pkg/2012/01/03/msg008325.html

Frm Julian Fagir in PR 46070.

12 years agoRepo copy files
repo-copy [Wed, 22 Feb 2012 02:40:10 +0000 (02:40 +0000)]
Repo copy files

12 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Wed, 22 Feb 2012 02:40:09 +0000 (18:40 -0800)]
Fixup fromcvs/togit conversion

12 years agoDon't try to install two figures which don't exist, they will be created
sbd [Wed, 22 Feb 2012 00:01:52 +0000 (00:01 +0000)]
Don't try to install two figures which don't exist, they will be created
as symlinks which point to themselves.

12 years agouse vala-0.14 for build because it doesn't want to build with 0.12
drochner [Tue, 21 Feb 2012 22:49:18 +0000 (22:49 +0000)]
use vala-0.14 for build because it doesn't want to build with 0.12
anymore, probably due to seemingly innocuous changes to
gobject-introspection, from Patrick Welche per PM
cvs: ----------------------------------------------------------------------

12 years agoDon't try to build if using linux-pam.
sbd [Tue, 21 Feb 2012 22:19:25 +0000 (22:19 +0000)]
Don't try to build if using linux-pam.

12 years agoAdd "PKG_GROUPS=nobody" as its default group for bitlbee.
sbd [Tue, 21 Feb 2012 22:10:15 +0000 (22:10 +0000)]
Add "PKG_GROUPS=nobody" as its default group for bitlbee.
(Some systems have a 'nogroup' instead of a 'nobody' group.)

12 years agoMark as PYTHON_VERSIONS_INCOMPATIBLE with the pkgsrc default python version
sbd [Tue, 21 Feb 2012 21:05:04 +0000 (21:05 +0000)]
Mark as PYTHON_VERSIONS_INCOMPATIBLE with the pkgsrc default python version
as the python bindings for the defalut version are built into the omniORB
package.

12 years agoAdd _PYTHON_VERSION_DEFAULT with the "default" python version and set
sbd [Tue, 21 Feb 2012 21:04:29 +0000 (21:04 +0000)]
Add _PYTHON_VERSION_DEFAULT with the "default" python version and set
PYTHON_VERSION_DEFAULT from that.

12 years agoRepo copy files
repo-copy [Tue, 21 Feb 2012 20:41:24 +0000 (20:41 +0000)]
Repo copy files

12 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Tue, 21 Feb 2012 20:41:23 +0000 (12:41 -0800)]
Fixup fromcvs/togit conversion

12 years agoMerge changes from src/external/bsd/pkg_install.
wiz [Tue, 21 Feb 2012 18:32:14 +0000 (18:32 +0000)]
Merge changes from src/external/bsd/pkg_install.

12 years agoRepo copy files
repo-copy [Tue, 21 Feb 2012 15:11:46 +0000 (15:11 +0000)]
Repo copy files

12 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Tue, 21 Feb 2012 15:11:45 +0000 (07:11 -0800)]
Fixup fromcvs/togit conversion

12 years agoFix PR 46068 using the patch by Nicolas Thauvin:
wiz [Tue, 21 Feb 2012 13:32:24 +0000 (13:32 +0000)]
Fix PR 46068 using the patch by Nicolas Thauvin:
pkg_add fails to install a package when subdiretories are missing
in the path to package directory in /var/db/pkg.

12 years agomantion updates
drochner [Tue, 21 Feb 2012 13:19:13 +0000 (13:19 +0000)]
mantion updates

12 years agoupdate to 5.0.4
drochner [Tue, 21 Feb 2012 13:18:19 +0000 (13:18 +0000)]
update to 5.0.4
changes:
-bugfixes
-New CPUs recognised

12 years agoupdate to 1.3.3
drochner [Tue, 21 Feb 2012 13:05:57 +0000 (13:05 +0000)]
update to 1.3.3
integrates the fix for CVE-2012-0444

12 years ago-pull in xz/bl3 to avoid hidden dependency
drochner [Tue, 21 Feb 2012 13:03:00 +0000 (13:03 +0000)]
-pull in xz/bl3 to avoid hidden dependency
-update to 4.0.1 -- this only adds symbol versioning support to ease
 transition from 3.x to 4.x; this is not used in pkgsrc so the
 update is purely cosmetical

12 years ago+gst-plugins0.10-rtmp
drochner [Tue, 21 Feb 2012 12:57:56 +0000 (12:57 +0000)]
+gst-plugins0.10-rtmp

12 years agoadd pkg (split out of gst-plugins0.10-bad) to build the "rtmp" module
drochner [Tue, 21 Feb 2012 12:55:41 +0000 (12:55 +0000)]
add pkg (split out of gst-plugins0.10-bad) to build the "rtmp" module

12 years agoMerge from vendor branch TNF:
drochner [Tue, 21 Feb 2012 12:55:41 +0000 (12:55 +0000)]
Merge from vendor branch TNF:
add pkg (split out of gst-plugins0.10-bad) to build the "rtmp" module

12 years ago+vlc2
drochner [Tue, 21 Feb 2012 12:51:15 +0000 (12:51 +0000)]
+vlc2

12 years agoadd vlc-2.0.0. This may need some polishing and fixes; while it works
drochner [Tue, 21 Feb 2012 12:49:43 +0000 (12:49 +0000)]
add vlc-2.0.0. This may need some polishing and fixes; while it works
well mostly it is not ready to replace vlc-1.1 yet.

12 years agoMerge from vendor branch TNF:
drochner [Tue, 21 Feb 2012 12:49:43 +0000 (12:49 +0000)]
Merge from vendor branch TNF:
add vlc-2.0.0. This may need some polishing and fixes; while it works
well mostly it is not ready to replace vlc-1.1 yet.