Commit graph

227789 commits

Author SHA1 Message Date
mef
f1a542ed6a Import p5-Business-ISMN-1.13 as misc/p5-Business-ISMN.
(This package is imported from wip. Thanks nros@ and othyro@.)

This Perl5 module allows validation and manipulation of International
Standard Music Numbers (ISMNs).
2015-01-30 13:46:36 +00:00
mef
b4e7055572 Import p5-Business-ISSN-0.91 as misc/p5-Business-ISSN.
(This package is imported from wip. Thanks nros@ and othyro@.)

This perl module allows validation and manipulation of International
Standard Serial Numbers (ISSNs).
2015-01-30 13:42:07 +00:00
mef
40715acffd Use MASTER_SITE_PERL_CPAN 2015-01-30 13:38:14 +00:00
prlw1
5c2d5b49ae Fix PLIST 2015-01-30 12:59:37 +00:00
mef
4b7769340e Added devel/p5-Tie-Cycle version 1.21 2015-01-30 12:59:06 +00:00
mef
69af487fe0 Import p5-Tie-Cycle-1.21 as devel/p5-Tie-Cycle.
Tie::Cycle is a Perl module that makes it possible to tie a list of
values that can then be looped trough forever. That is the value after
the last is the first in the list is the first value in the list.
2015-01-30 12:56:48 +00:00
wiz
760ae23508 Include limits.h for UINT_MAX (build fix on NetBSD). 2015-01-30 12:02:49 +00:00
jmcneill
8b49655964 Added multimedia/gst-plugins1-egl-gl version 1.4.5
Added multimedia/gst-plugins1-egl-opengl version 1.4.5
2015-01-30 11:12:09 +00:00
jmcneill
87fde02875 + gst-plugins1-egl-gl gst-plugins1-egl-opengl 2015-01-30 11:10:57 +00:00
jmcneill
3d8f5d8c29 Import gst-plugins1-opengl-1.4.5 as multimedia/gst-plugins1-egl-opengl.
GStreamer is a library that allows the construction of graphs of
media-handling components, ranging from simple mp3 playback to complex
audio (mixing) and video (non-linear editing) processing.

Applications can take advantage of advances in codec and filter technology
transparently.  Developers can add new codecs and filters by writing a
simple plugin with a clean, generic interface.

This package provides the opengl plugin for GStreamer using the Raspberry Pi's
VideoCore IV EGL APIs.
2015-01-30 11:10:20 +00:00
jmcneill
5761e06c15 Import gst-plugins1-gl-1.4.5 as multimedia/gst-plugins1-egl-gl.
GStreamer is a library that allows the construction of graphs of
media-handling components, ranging from simple mp3 playback to complex
audio (mixing) and video (non-linear editing) processing.

Applications can take advantage of advances in codec and filter technology
transparently.  Developers can add new codecs and filters by writing a
simple plugin with a clean, generic interface.

This package provides the gl plugin for GStreamer using the Raspberry Pi's
VideoCore IV EGL APIs.
2015-01-30 11:09:45 +00:00
obache
0d7d34e0e8 Add unlink as a tool. 2015-01-30 11:06:36 +00:00
obache
b2148c7068 Use MASTER_SITE_PERL_CPAN. 2015-01-30 10:24:13 +00:00
mef
1b16652254 Add Long name (by authors) for MASTER_SITES. Simple Name has currently problem. 2015-01-30 09:53:29 +00:00
abs
4e341b1432 Add in missing bootstrap distinfo. 2015-01-30 09:43:52 +00:00
mef
b1e172d2d8 Fix PLIST problem. When assigning value to PLIST_SRC, should take care whole thing. 2015-01-30 09:14:08 +00:00
pho
dad089e9a0 Fix many issues on Darwin
PLIST:
  * lib/firefox/libmozglue.so is built and installed as a shared
    library on some platforms including Darwin.

mozilla-common.mk:
  * Sandboxing support is only available when the toolkit is
    cairo-cocoa.
  * It tries to use MacOS X 10.6 SDK by default, which is not always
    possible.

patches/patch-build_gyp.mozbuild:
  * Don't assume iOS just because the toolkit is not cocoa. Ideally
    there should be an AC_SUBST just like 'ARM_ARCH' but nothing
    exists currently.
  * MacOS X SDK version should be able to configure with ./configure
    --enable-macos-target=VER

patches/patch-extensions_spellcheck_hunspell_src_mozHunspell.cpp:
  * NS_NewNativeLocalFile() can fail and leave hunDir null, so we must
    check if it succeeded. This is not Darwin specific though.
  * "%%LOCALBASE%%" in the hunspell path is currently not substituted,
    which looks very erroneous to me. But since I don't know why
    ryoon@ changed it from "@PREFIX@" to "%%LOCALBASE%%" I leave it as
    it is.

patches/patch-ipc_glue_moz.build:
  * Don't assume cocoa toolkit just because OS_ARCH is Darwin.

patches/patch-js_src_asmjs_AsmJSSignalHandlers.cpp:
  * Increase portability for non-x86 Darwin by not hardwiring
    x86_THREAD_STATE.

patches/patch-js_xpconnect_src_xpcprivate.h:
  * The declaration has to be C++11 'extern template', otherwise
    non-weak symbol collision will occur between libmozjs and
    libxul. We can't easily test if the feature is supported by
    compiler due to GCC bug #1773:
    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=1773

patches/patch-memory_mozalloc_VolatileBufferOSX.cpp:
  * Try to fallback to valloc(3) if posix_memalign(3) is not
    avialble. It has been added since MacOS 10.6.

patches/patch-toolkit_library_moz.build:
  * GSTREAMER_LIBS are linked to libxul on Darwin, while they are
    dlopen(3)'ed at runtime on other platforms. The problem is that
    the toolkit being cocoa isn't relevant at all. It's Darwin that
    needs the special handling, not Cocoa.

patches/patch-toolkit_xre_nsAppRunner.cpp:
  * MacOS X < 10.6 had an undocumented behavior concerning execve(2)
    inside a threaded process. If a process tried to call execve(2)
    and had more than one active thread, the kernel returned
    ENOTSUP. So we have to either fork(2) or vfork(2) before calling
    execve(2) to make sure the caller is single-threaded as otherwise
    the application fails to restart itself.

patches/patch-xpcom_base_nsStackWalk.cpp,
patches/patch-xpcom_build_PoisonIOInterposer.h:
  * Replace XP_MACOSX with XP_DARWIN as the former is not defined when
    the toolkit is not cocoa.

patches/patch-xpcom_glue_standalone_nsXPCOMGlue.cpp:
  * Fix inconsistent use of XP_DARWIN and XP_MACOSX:
    LEADING_UNDERSCORE should be empty when we are going to load XPCOM
    using dlopen(3), not NSAddImage().
2015-01-30 07:32:24 +00:00
jmcneill
7a6be28994 Added multimedia/gst-plugin1-omx version 1.2.0 2015-01-30 01:38:29 +00:00
jmcneill
8cb72957d2 + gst-plugins1-omx 2015-01-30 01:37:35 +00:00
jmcneill
d18bbd9828 Import gst-omx-1.2.0 as multimedia/gst-plugins1-omx.
This module contains a plugin that wraps available OpenMAX IL components and
makes them available as standard GStreamer elements.
2015-01-30 01:37:08 +00:00
wiz
2613cc2967 Updated misc/dialog to 1.2.20150125 2015-01-30 01:28:27 +00:00
wiz
b6b66e770b Update to 1.2.20150125:
2015/01/25
	+ suppress highlighting of character which denotes an abbreviation or
	  shortcut for the OK/Cancel and other buttons for these widgets, which
	  use abbreviations for the list shown on the screen:  buildlist,
	  checklist/radiobox, menubox, treeview (Debian #775295).
	+ add grid up/left and down/right bindings in editbox.c as synonyms for
	  field prev and next, respectively when handling the OK/Cancel buttons
	  (Debian #775294).
2015-01-30 01:28:19 +00:00
wiz
9098da25f1 Updated devel/bison to 3.0.4 2015-01-30 01:27:22 +00:00
wiz
e84651971d Update to 3.0.4:
* Noteworthy changes in release 3.0.4 (2015-01-23) [stable]

** Bug fixes

*** C++ with Variants (lalr1.cc)

  Fix a compiler warning when no %destructor use $$.

*** Test suites

  Several portability issues in tests were fixed.
2015-01-30 01:27:14 +00:00
wiz
918ffed6a9 + bison-3.0.4, clamav-0.98.6, dialog-1.2.20150125, libreoffice4-4.4.0,
libreoffice4-bin-4.4.0.
2015-01-30 01:24:34 +00:00
jmcneill
897a79ad2a bump BUILDLINK_API_DEPENDS.raspberrypi-userland 2015-01-29 23:38:28 +00:00
nat
7b65172c62 Updated graphics/glu to 7.11.2nb1 2015-01-29 22:43:37 +00:00
nat
31ff49582e Fix segfaults and crashing for applications that use libGLU.
Bump PKGREVISION.

This commit was approved by wiz@
2015-01-29 22:38:50 +00:00
nat
aaeea725bf Fix segfaults and crashing with applications that use libGLU.
This commit was approved by wiz@
2015-01-29 22:35:43 +00:00
wiz
b177531ca7 Remove cargo cult patch (chunk) pointing to
%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko. Nothing installs
any files there, nor does is this directory created by anything.
2015-01-29 22:22:26 +00:00
wiz
586edbe533 pkgsrc does not use the b2g installer, remove corresponding patches. 2015-01-29 22:19:40 +00:00
wiz
7eb233712b There is no point in having Android packaging patches in pkgsrc. (yet?) 2015-01-29 22:19:13 +00:00
jperkin
cadea5d0f8 Explicitly disable inotify support on SunOS whilst it is Linux-specific. 2015-01-29 21:58:34 +00:00
jnemeth
47d6bad42c Updated comms/asterisk to 11.15.1 2015-01-29 21:54:39 +00:00
jnemeth
9545043a0d Update to Asterisk 11.15.1: this is a security fix.
pkgsrc change: adapt to splitting up of speex

The Asterisk Development Team has announced security releases for Certified
Asterisk 1.8.28 and 11.6 and Asterisk 1.8, 11, 12, and 13. The available
security releases are released as versions 1.8.28.cert-4, 1.8.32.2, 11.6-cert10,
11.15.1, 12.8.1, and 13.1.1.

The release of these versions resolves the following security vulnerabilities:

* AST-2015-001: File descriptor leak when incompatible codecs are offered

                Asterisk may be configured to only allow specific audio or
                video codecs to be used when communicating with a
                particular endpoint. When an endpoint sends an SDP offer
                that only lists codecs not allowed by Asterisk, the offer
                is rejected. However, in this case, RTP ports that are
                allocated in the process are not reclaimed.

                This issue only affects the PJSIP channel driver in
                Asterisk. Users of the chan_sip channel driver are not
                affected.

* AST-2015-002: Mitigation for libcURL HTTP request injection vulnerability

                CVE-2014-8150 reported an HTTP request injection
                vulnerability in libcURL. Asterisk uses libcURL in its
                func_curl.so module (the CURL() dialplan function), as well
                as its res_config_curl.so (cURL realtime backend) modules.

                Since Asterisk may be configured to allow for user-supplied
                URLs to be passed to libcURL, it is possible that an
                attacker could use Asterisk as an attack vector to inject
                unauthorized HTTP requests if the version of libcURL
                installed on the Asterisk server is affected by
                CVE-2014-8150.

For more information about the details of these vulnerabilities, please read
security advisory AST-2015-001 and AST-2015-002, which were released at the same
time as this announcement.

For a full list of changes in the current releases, please see the ChangeLogs:

http://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-1.8.32.2
http://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-11.15.1

The security advisories are available at:

* http://downloads.asterisk.org/pub/security/AST-2015-001.pdf
* http://downloads.asterisk.org/pub/security/AST-2015-002.pdf

Thank you for your continued support of Asterisk!
2015-01-29 21:54:33 +00:00
jnemeth
c61ab57a5b Updated comms/asterisk10 to 10.12.4nb6 2015-01-29 21:52:33 +00:00
jnemeth
8f3e6d6a96 Update to Asterisk 10.12.4rc6.
This update is just to accomodate the speex splitup.

Note that Asterisk 10.x is dead upstream and should not be used
anymore.  This package will be removed at some point.
2015-01-29 21:52:28 +00:00
wiz
228f48f2e7 Add upstream bug report URL. 2015-01-29 21:52:10 +00:00
jnemeth
ad1a257cfa Updated comms/asterisk18 to 1.8.32.2 2015-01-29 21:48:16 +00:00
wiz
dbd105df67 Use upstream patch. 2015-01-29 21:48:15 +00:00
jnemeth
5fb63ec5f0 Update to asterisk 1.8.32.2: this is a security fix.
pkgsrc change: adapt to splitting up of speex

The Asterisk Development Team has announced security releases for Certified
Asterisk 1.8.28 and 11.6 and Asterisk 1.8, 11, 12, and 13. The available
security releases are released as versions 1.8.28.cert-4, 1.8.32.2, 11.6-cert10,
11.15.1, 12.8.1, and 13.1.1.

The release of these versions resolves the following security vulnerabilities:

* AST-2015-001: File descriptor leak when incompatible codecs are offered

                Asterisk may be configured to only allow specific audio or
                video codecs to be used when communicating with a
                particular endpoint. When an endpoint sends an SDP offer
                that only lists codecs not allowed by Asterisk, the offer
                is rejected. However, in this case, RTP ports that are
                allocated in the process are not reclaimed.

                This issue only affects the PJSIP channel driver in
                Asterisk. Users of the chan_sip channel driver are not
                affected.

* AST-2015-002: Mitigation for libcURL HTTP request injection vulnerability

                CVE-2014-8150 reported an HTTP request injection
                vulnerability in libcURL. Asterisk uses libcURL in its
                func_curl.so module (the CURL() dialplan function), as well
                as its res_config_curl.so (cURL realtime backend) modules.

                Since Asterisk may be configured to allow for user-supplied
                URLs to be passed to libcURL, it is possible that an
                attacker could use Asterisk as an attack vector to inject
                unauthorized HTTP requests if the version of libcURL
                installed on the Asterisk server is affected by
                CVE-2014-8150.

For more information about the details of these vulnerabilities, please read
security advisory AST-2015-001 and AST-2015-002, which were released at the same
time as this announcement.

For a full list of changes in the current releases, please see the ChangeLogs:

http://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-1.8.32.2
http://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-11.15.1

The security advisories are available at:

* http://downloads.asterisk.org/pub/security/AST-2015-001.pdf
* http://downloads.asterisk.org/pub/security/AST-2015-002.pdf

Thank you for your continued support of Asterisk!
2015-01-29 21:48:07 +00:00
joerg
50a4257a9a Fix build with clang and on NetBSD/current. 2015-01-29 21:33:47 +00:00
joerg
68a3dfbde6 Fix rpath-link use. 2015-01-29 21:31:39 +00:00
joerg
d01a8db467 Don't kill attributes when building with clang. 2015-01-29 21:30:35 +00:00
joerg
0a82e486b0 Limit memory used by the Queens test program. 2015-01-29 21:29:32 +00:00
joerg
d140aee507 After speex update, depend on speexdsp. 2015-01-29 21:26:52 +00:00
wiz
df7050d8ca Updated graphics/p5-RRDTool-OO to 0.35 2015-01-29 20:47:30 +00:00
wiz
ce77d4ffdb Update to 0.35, from Kai-Uwe Eckhardt <kuehro@gmx.de> in private mail.
0.35  (07/20/2014)
    (ms) Fix for [rt.cpan.org #97322], now rounding results to cope with
         floating point inaccuracies in rrdtool. Reported by Andreas König.

0.34  (06/26/2014)
    (ms) Added disable_rrdtool_tag option as suggested by Sun Guonian.

0.33  (07/08/2013)
    (ms) Florian Eckert reported that graph() modified 2nd level
         entries of the options array passed to it. Used Storable::clone
         in OO.pm to make a deep copy first.

0.32  (03/06/2012)
    (ms) [rt.cpan.org #63351] Applied modified patch by Jonas Wagner to
         fix stacked graphs with no legend.
    (ms) Implements RRDs::xport and returns a Perl structure instead of
         basic xport array (Remi Ferrand, Fabien Wernli).
2015-01-29 20:47:22 +00:00
wiz
7370f888f3 Add upstream bug report URLs. 2015-01-29 20:08:16 +00:00
wiz
661debb0e5 Updated emulators/mess to 0.158 2015-01-29 20:00:55 +00:00