Commit graph

192946 commits

Author SHA1 Message Date
asau
4961a4ef35 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-25 06:55:37 +00:00
jnemeth
2262ab0158 add and enable freeswitch-music, freeswitch-sounds-en,
freeswitch-sounds-fr, and freeswitch-sounds-ru
2012-10-25 06:43:10 +00:00
wiz
2686356754 Add upstream bug report URL. 2012-10-24 22:42:16 +00:00
wiz
ab9c035750 Add upstream bug report URLs. 2012-10-24 22:36:27 +00:00
joerg
f96e4c6b58 Allow unprivileged build on NetBSD, if bind is in base. 2012-10-24 16:05:15 +00:00
joerg
518ff97170 Add missing pangox-compat dependency in wxGTK24 and wxGTK26.
Recursive bump for the new dependency.
2012-10-24 15:48:32 +00:00
joerg
513375f78a Don't declare a method OVERRIDE() if the base class doesn't have it. 2012-10-24 15:40:16 +00:00
joerg
8d020a34bb Don't define a function inline without providing the implementation. 2012-10-24 15:39:21 +00:00
joerg
4da6bdf8d8 Don't return without value. 2012-10-24 15:38:43 +00:00
joerg
b05281ef64 Fix missing system header, inconsistent function definitions, return; in
non-void functions. Bump revision.
2012-10-24 15:37:58 +00:00
joerg
5745857b98 Fix the clang build by using the proper compiler builtins instead of
touching the stack and frame pointer directly. Especially the latter is
problematic, since the compiler is not really required to use it.
2012-10-24 15:36:47 +00:00
joerg
bbf5c92065 Define ANY, newer sip versions no longer provide it. 2012-10-24 15:32:56 +00:00
he
6841228377 Note update of graphics/gnuplot to 4.6.0nb4. 2012-10-24 13:33:43 +00:00
he
2ec8773c15 Add a patch to avoid gnuplot always segfaulting on a NULL pointer
de-reference on the first command.
Bump pkgrevision.
2012-10-24 13:32:54 +00:00
jaapb
4e84bdfa1b Updated textproc/pxp to 1.2.3 2012-10-24 13:15:47 +00:00
jaapb
fb538284f6 Updated package to its latest version, 1.2.3, and cleaned up package by
adding license, making native code support conditional on the architecture as
in other OCaml packages and adding PLIST_VARS support.

Changelog (excluding bugfixes and changes to deal with new versions of other
packages):
-  1.2.1: Revised documentation
   Addition: Pxp_event.unwrap_document
   Addition: Pxp_dtd.Entity.lookup
   Addition: node method entity_id
   Addition: Pxp_event.close_entities
   Removed: Pxp_core_types_type, Pxp_type_anchor. Pxp_core_types  has now three
   submodules A, S, I taking over the roles
   Removed: E_pinstr_member. Instead, E_pinstr events are emitted
   Renaming, and addition: `Entry_content has been renamed to
   `Entry_element_content. A new `Entry_content with different  semantics has
   been added, now conforming to a standard production.
   Improvement: The parser also accepts a BOM as UTF-8 sequence.  Also, the
   autodetection of the encoding for UTF-16 has been  enhanced
-  1.2.0test*: New ~minimization option for the  [write] and [display] methods
   (user wish).
   Improvement: better control what is printed as DTD for  document#write and
   #display
-  1.1.95: Addition of ulex lexing.
   Revised namespace handling: There are now namespace_scope  objects keeping
   the scoping structure of the namespaces.  The namespace_info stuff has been
   removed. The "display"  methods can print XML while respecting the scoping
   structure.
   New exceptions Namespace_not_managed, Namespace_prefix_not_managed,
   Namespace_not_in_scope (all replacing Not_found). Methods  of
   namespace_manager may raise these exceptions.
   The event-based representation of XML is now symmetrical  to the tree-based
   representation, such that it is possible  to convert one representation into
   the other without loss.  The type of events had to be changed to achieve
   this effect.
   The new module Pxp_event contains functions for the event-based
   representation.
   Addition of pxp-pp, the PXP preprocessor.
-  1.1.94: The Pxp_reader module has been completely rewritten. This fixes some
   problems with relative URLs. - Pxp_yacc has been split up into four modules:
   Pxp_tree_parser contains now the parser API returning object trees,
   Pxp_dtd_parser is the parser API returning DTDs, Pxp_ev_parser is the
   event-based API, and Pxp_core_parser is the core of the parser. Pxp_yacc is
   still available as compatibility API. As part of the module redesign,
   Pxp_types includes now parts of its interface from Pxp_core_types_type. I
   hope this style of programming is comprehensible. - The event-based parser
   can now preprocess namespaces.
   Furthermore, there are normalization filters.
-  1.1.92: The whole lexing stuff has been restructured. There is a new tool,
   lexpp, that generates the lexers from only five files. Furthermore, much
   more 8 bit character sets are now supported as internal encodings. In
   previous versions of PXP, the internal representation of the XML trees was
   restricted to either UTF-8 or ISO-8859-1. Now, a number of additional
   encodings are supported, including the whole ISO-8859 series.
-  1.1.91: The curly braces can now even be used inside attributes, and escape
   from normal XML parsing.
   There is a new entry point Entry_expr for event-based parsing that expects
   either a single element, a single processing instruction, or a single
   comment, or whitespace. This allows more fine-grained control of what is
   parsed.
   There is now a "pull parser". In contrast to the "push parser" introduced in
   1.1.90, the calling order of parser and parser user have been inverted, i.e.
   the user calls the parser to get ("pull") the next event instead of letting
   the parser call back a user function ("push"). An interesting application is
   that O'Caml's lazy streams can be used to analyze events. An example can be
   found in examles/pullparser.
-  1.1.90: This version introduces a new event-based interface in Pxp_yacc. For
   start tags, end tags, data strings, and several other things that are found
   in the XML source so-called events are generated, and a user function is
   called for every event. See the directory examples/eventparser for examples.
   Another innovation is support for curly braces as escape characters. Inside
   elements, the left curly brace escapes from XML parsing and starts a foreign
   parser until the matching right curly brace is found:

   <element> ... { foreign syntax } ... </element>

   The curly braces are borrowed from the XQuery draft standard. They cannot
   yet be used inside attribute values. Curly braces are mostly useful in
   conjunction with event-based parsing, because it is not yet possible to
   include the "value" of the curly brace expression into XML trees.
   It is even possible to call the XML parser from the foreign parser as
   subparser. However, there not yet enough entry points for the event-based
   parser (e.g. you cannot parse just the following processing instruction,
   only misc* element misc* or whole documents are possible).
2012-10-24 13:15:32 +00:00
manu
756fd1358b Restore opensc-pkcs11.so functionnality on NetBSD-6.0. libpthread shall
not be loaded by dlopen(), therefore we remove the useless dependency on
-lpthread
2012-10-24 09:01:40 +00:00
wiz
db9e511746 Updated math/fftw to 3.3.2nb2 2012-10-24 08:57:58 +00:00
wiz
e2d39cc569 If a native pthreads implementation is available, also install
libfftw3_threads. Bump PKGREVISION.
2012-10-24 08:57:46 +00:00
manu
7edb0c3452 Restore opensc-pkcs11.so functionnality on NetBSD-6.0. libpthread shall
not be loaded by dlopen(), therefore we remove the useless dependency on
-lpthread
2012-10-24 08:33:51 +00:00
asau
e38b471926 Reexport libxml2 from hwloc.
Reexport hwloc from openmpi.
This should fix builds with MPI_TYPE=openmpi.
2012-10-24 05:49:25 +00:00
shattered
2b0ec1892c Fix connection failures to WHOIS servers with IPv6 addresses from hosts
without IPv6 connectivity.  Patch taken from Debian bug report 542148.

Also delint.
2012-10-23 20:49:38 +00:00
apb
ee7215b2e5 Remove a trailing colon from an asm statement that was introduced in
revision 1.2 of patches/patch-src-post-planar-eq2.c.  Apparently, some
versions of gcc don't like an empty clobber list in an asm statement.
This should fix PR 47035 from David Shao.
2012-10-23 19:57:33 +00:00
asau
c4f95ab71a Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 19:50:50 +00:00
manu
d95bb6a2a9 upgrade to lasso-2.3.6 2012-10-23 18:17:32 +00:00
asau
40b91e7ab9 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 18:16:19 +00:00
manu
ff862ac29f Upgrade to lasso 2.3.6 in order to completely fix the libxml 2.9 dependency
ChangeLog Since 2.3.5:
 * fix a bug when receiving a signature using the InclusiveNamespaces
   PrefixList by copying namespace declaration from upper level at the level of
   the signed node.
 * fix compilation warning on recent version of GCC
2012-10-23 18:16:15 +00:00
asau
276a662941 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 17:18:07 +00:00
asau
e1eb0090ae Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't or might probably not have staged installation.
2012-10-23 16:07:12 +00:00
wen
81d52bdae2 Updated devel/p5-Git-Repository to 1.27 2012-10-23 14:04:40 +00:00
wen
8e02d90861 Update to 1.27
Upstream changes:
1.27 Thu Oct 11 2012
        [ENHANCEMENTS]
        - Git::Repository::Command skips non-executable files when searching
          for a git command in the PATH
        [TEST]
        - Fixed tests failing with a directory named git in the PATH (RT #80117)
2012-10-23 14:03:11 +00:00
schmonz
8f0dc12cf1 Restore INSTALLATION_DIRS and krb5.buildlink3.mk, lost in previous.
Indent while here.
2012-10-23 13:02:08 +00:00
markd
0580faafec Use std::cin consistently to reference standard input 2012-10-23 10:32:43 +00:00
wiz
c44b2d2a71 Remove xextproto/buildlink3.mk where it is pulled in via libXxf86vm. 2012-10-23 10:31:39 +00:00
wiz
fed332a0ca Remove xextproto/buildlink3.mk where libXext is pulled in via
Xtst, Xi, or Xrandr.
2012-10-23 10:28:47 +00:00
wiz
a825c28ac2 Remove xextproto/buildlink3.mk in most cases where it occurs with
libXext/buildlink3.mk, now that it is included there.
Leave the places where its API version is set or variables from it
are used directly (about 3 packages).
2012-10-23 10:24:02 +00:00
wiz
69efe4eab5 As drochner remarks, the problem with missing xextproto is, once again,
that libXext/bl3.mk doesn't include xextproto/bl3.mk.

Since the supposed gains for this are minimal and the annoyances are high,
do include xextproto/bl3.mk in libXext/bl3.mk.
2012-10-23 10:11:51 +00:00
markd
c4478a0e6e Fix compilation with new FFMPEG 2012-10-23 08:24:34 +00:00
wiz
26187b235a Add itstool as build dependency. 2012-10-23 07:58:45 +00:00
wiz
61af595a2f Add xextproto buildlink3.mk, needed at least on NetBSD-5.1 with modular
xorg.
2012-10-23 07:58:26 +00:00
elric
724dd1746f Update to knc 1.7. 2012-10-23 06:04:28 +00:00
rh
05fc20b0d9 Note PKGREVISION bump of sysutils/burn 2012-10-22 23:48:08 +00:00
rh
4d90046700 Make this compile with the current GNUstep. Bump PKGREVISION. 2012-10-22 23:47:15 +00:00
rh
85b9fe18f5 Note udpate of Cenon to 3.9.6 2012-10-22 23:00:03 +00:00
rh
f1fbfae79e Update Cenon to 3.9.6
Notable changes include:
+ New, Images: save as BMP, GIF, JPG, PNG (saves a lot of diskspace)
+ New, ProjectSettings: Units of measure for the document
+ New, Inspector: Inspector Accessory, replacing the Text item
+ Groups can be selected by "Select equal Color" (menu item: Edit -> Select Color)
+ LayerDetails: new switch to tell a layer whether to be used for
  batch production.
+ Image: selection handling improved
  - select at border or inside according to preferences setting
  - for clipped images: select at or inside clipped area
+ Empty text will be removed, no asterisk '*' when clicking around in text mode
+ Fix, pasting of several layers to one layer keeps order of graphics elements
+ Fix, Image: splitting of clipped image keeps image behind path
+ Fix, Text: creating a text at the right border of the document,
  now sets the correct text box in all zoom steps
+ Fix, Text with Paragraph/Character-Colors is working again
+ Fix, Text: improvements of redisplay after editing text
+ Build Contour: Text offset Y fixed again for vertical centered text
+ Cosmetics in Inspectors, Knobs, etc.
+ Fix, Apple: scrolling without clutter
+ PS-Import: error-tolerant import of PostScript from Windows applications
  like Corel-Draw, Eurocut, etc., that often contain garbage before data.
+ Fix, PS-Import via GhostScript: imported objects get a default color
+ Fix, PS-Import: issues with GhostScript 8.56 and above hopefully solved
  (not tested yet)
+ Fix, Gerber-Export: small fixes like export of open Paths
+ Fix, Apple: position of the contour of mirrored text corrected
+ Fix, Apple: newly created text gets textbox a little heigher to
  be displayed more safely
+ Fix, Apple: workaround - finally it's now possible to save Cenon
  documents compatible with OpenStep and GNUstep
+ Fix, Apple: workaround - it's now possible to save 4 bit images on Apple
+ Fix, Apple: workaround for new color spaces added in OS X >= 10.4
  Some colors turned to black on saving.
+ Apple: search of Cenon files in Library/Application Support/Cenon added
+ Documentation updated
2012-10-22 22:59:47 +00:00
rh
05746a2767 Add patches missing from previous commit 2012-10-22 22:35:53 +00:00
rh
6058cfaf0d Note PKGREVISION bump of edcommon 2012-10-22 22:35:31 +00:00
rh
3227d37598 Make this compile with libobjc2. Bump PKGREVISION. 2012-10-22 22:35:26 +00:00
rh
f89e0b3c5a Note PKGREVISION bump of ObjectiveLib 2012-10-22 22:10:21 +00:00
rh
bd684206f7 Make ObjectiveLib compile with libobjc2. Bump PKGREVISION 2012-10-22 22:10:14 +00:00