summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-08-06regen.wiz1-1/+1
2009-08-06Bump date for CHECK_LICENSE.wiz1-2/+2
2009-08-06regen.wiz1-1/+1
2009-08-06Bump date for -k.wiz1-2/+2
2009-08-06regen.wiz1-1/+1
2009-08-06Bump date for previous.wiz1-2/+2
2009-08-06pkg_install-20090806:joerg13-34/+130
- pkg_add: add support to check license conditions before installation - pkg_delete: add -k option to skip over preserve packages.
2009-08-06Linux doesn't define PPP_FCS() in <net/ppp_defs.h> for userland. pppdump.cdsainty2-11/+14
expects PPP_FCS() to be defined however, and compilation therefore breaks in the presence of the previous version of this patch. This version of the patch reverts back to the behaviour of the distribution code for non-NetBSD systems, but retains the Pkgsrc patched behaviour of pulling in the system copy of the header file for NetBSD and DragonFly. This should only affect success or failure of the package build, so no PKGREVISION bump.
2009-08-06Drop PKGREVISION and bump to libfetch-2.24 instead. (in-tree package)tnn1-3/+2
2009-08-06Bump the PKGREVISION for ftp.c changetnn1-1/+2
2009-08-06Fix strict aliasing issue which GCC 4.4 complained about.tnn1-41/+40
While we know that "struct sockaddr_storage" has been engineered to alias to all the sockaddr structs, the compiler does not know about this. Thus, code like this may be unsafe to use: struct sockaddr_storage ss; struct sockaddr_in *sin = &ss; sin->sin_port = 0; /* dereferencing here breaks ISO C aliasing rules */ A workaround is to wrap the struct in a union, e.g: union anonymous { struct sockaddr_storage ss; struct sockaddr_in sin; } u; u.sin.sin_port = 0; -- Approved by: joerg
2009-08-06getline -> get_linejoerg1-10/+10
2009-08-06Updated net/filezilla to 3.2.6.1nb1.obache1-1/+2
2009-08-06Add missing entries to PLIST. Noticed by Robert Elz in PR 41800.obache2-2/+10
Bump PKGREVISION.
2009-08-06guess we need a bl3.mk after all to build browser pluginstnn1-0/+13
2009-08-06with exception of wip/, there are no remaining consumers of these.tnn2-6/+0
2009-08-06drop bogus reference to gecko-options.mk (this package uses webkit)tnn2-9/+1
2009-08-06drop reference to gecko-depends.mk.tnn2-11/+4
Doesn't build with xulrunner, but package is already marked as broken.
2009-08-06Switch to xulrunner ... but unfortunately it doesn't work.tnn5-6/+52
There's a SEGV in glib2 and the backtrace doesn't have any browser engine references in it so I'm inclined to believe this package was broken by a glib2/gtk2 update.
2009-08-06Switch to xulrunner and bump PKGREVISION.tnn2-19/+1
It builds and installs cleanly but I can't figure out how to enable extensions, so not tested beyond installation.
2009-08-06silence missing interpreter warningtnn1-1/+2
2009-08-06pull in xulrunner bl3tnn1-3/+2
2009-08-06Switch to xulrunner and bump PKGREVISION.tnn5-23/+104
2009-08-06Epiphany wants the spellchecker stuff. Comply.tnn2-3/+7
2009-08-06Updated devel/xulrunner to 1.9.1.2tnn1-1/+2
2009-08-06Update to xulrunner-1.9.1.2 (matches firefox-3.5.2 release)tnn3-9/+19
2009-08-06xulrunnerize. Bump PKGREVISIONtnn1-5/+3
(only compile tested ...)
2009-08-06xulrunnerize. Bump PKGREVISION.tnn1-6/+3
XXX: only compile tested, I don't know any consumer of this package.
2009-08-06repair getline(3) conflicts, "getline" -> "get_line"plunky5-10/+61
2009-08-06Add patches provided by Adam Ciarcinski to fix build with recent versionstron3-1/+51
of OpenSSL (e.g. the version in NetBSD-current).
2009-08-06Updated www/galeon to 2.0.7tnn1-1/+2
2009-08-06Update to galeon-2.0.7. Use xulrunner.tnn7-29/+63
XXX: Some stock icons appear to not work, is there a missing GNOME dependency here? 2.0.7 "Surprise!" - Works with Firefox 2/3 and Xulrunner 1.8/1.9 - Restored support for http authentication by Mike Hommey <mh@glandium.org> - Restored support for remembering passwords. - Partially restored support for user stylesheets. - Effect is global rather than per page but UI doesn't reflect this. 2.0.6 "Pining for the Fjords" - Works with Firefox 2 and 3 and xulrunner 1.8 and 1.9 - Thanks to Alexander Sack <asac@ubuntu.com> and Loïc Minier <lool#dooz.org> for the xulrunner 1.9 patches. - With Firefox 3/xulrunner 1.9, functionality remains crippled as documented in the 2.0.5 release notes. - Support for older versions of Mozilla have been removed. You can use 2.0.5 to build against them if you need to. - GConf pref added to suppress close confirmation for web forms.
2009-08-06fix a busted .pc file.tnn4-5/+20
Bump PKGREVISION again.
2009-08-06Note update of the "apache22" package to version 2.2.12.tron2-3/+3
2009-08-06Update "apache22" package to version 2.2.12. Changes since version 2.2.11:tron9-232/+20
- SECURITY: CVE-2009-1891 (cve.mitre.org) Fix a potential Denial-of-Service attack against mod_deflate or other modules, by forcing the server to consume CPU time in compressing a large file after a client disconnects. Bug 39605. [Joe Orton, Ruediger Pluem] - SECURITY: CVE-2009-1195 (cve.mitre.org) Prevent the "Includes" Option from being enabled in an .htaccess file if the AllowOverride restrictions do not permit it. [Jonathan Peatfield <j.s.peatfield damtp.cam.ac.uk>, Joe Orton, Ruediger Pluem, Jeff Trawick] - SECURITY: CVE-2009-1890 (cve.mitre.org) Fix a potential Denial-of-Service attack against mod_proxy in a reverse proxy configuration, where a remote attacker can force a proxy process to consume CPU time indefinitely. [Nick Kew, Joe Orton] - SECURITY: CVE-2009-1191 (cve.mitre.org) mod_proxy_ajp: Avoid delivering content from a previous request which failed to send a request body. Bug 46949 [Ruediger Pluem] - SECURITY: CVE-2009-0023, CVE-2009-1955, CVE-2009-1956 (cve.mitre.org) The bundled copy of the APR-util library has been updated, fixing three different security issues which may affect particular configurations and third-party modules. - mod_include: fix potential segfault when handling back references on an empty SSI variable. [Ruediger Pluem, Lars Eilebrecht, Nick Kew] - mod_alias: check sanity in Redirect arguments. Bug 44729 [Sönke Tesch <st kino-fahrplan.de>, Jim Jagielski] - mod_proxy_http: fix Host: header for literal IPv6 addresses. Bug 47177 [Carlos Garcia Braschi <cgbraschi gmail.com>] - mod_rewrite: Remove locking for writing to the rewritelog. Bug 46942 - mod_alias: Ensure Redirect emits HTTP-compliant URLs. Bug 44020 - mod_proxy_http: fix case sensitivity checking transfer encoding Bug 47383 [Ryuzo Yamamoto <ryuzo.yamamoto gmail.com>] - mod_rewrite: Fix the error string returned by RewriteRule. RewriteRule returned "RewriteCond: bad flag delimiters" when the 3rd argument of RewriteRule was not started with "[" or not ended with "]". Bug 45082 [Vitaly Polonetsky <m_vitaly topixoft.com>] - mod_proxy: Complete ProxyPassReverse to handle balancer URL's. Given; BalancerMember balancer://alias http://example.com/foo ProxyPassReverse /bash balancer://alias/bar backend url http://example.com/foo/bar/that is now translated /bash/that [William Rowe] - New piped log syntax: Use "||process args" to launch the given process without invoking the shell/command interpreter. Use "|$command line" (the default behavior of "|command line" in 2.2) to invoke using shell, consuming an additional shell process for the lifetime of the logging pipe program but granting additional process invocation flexibility. [William Rowe] - mod_ssl: Add server name indication support (RFC 4366) and better support for name based virtual hosts with SSL. Bug 34607 [Peter Sylvester <peter.sylvester edelweb.fr>, Kaspar Brand <asfbugz velox.ch>, Guenter Knauf, Joe Orton, Ruediger Pluem] - mod_negotiation: Escape pathes of filenames in 406 responses to avoid HTML injections and HTTP response splitting. Bug 46837. [Geoff Keating <geoffk apple.com>] - mod_include: Prevent a case of SSI timefmt-smashing with filter chains including multiple INCLUDES filters. Bug 39369 [Joe Orton] - mod_rewrite: When evaluating a proxy rule in directory context, do escape the filename by default. Bug 46428 [Joe Orton] - mod_proxy_ajp: Check more strictly that the backend follows the AJP protocol. [Mladen Turk] - mod_ssl: Add SSLProxyCheckPeerExpire and SSLProxyCheckPeerCN directives to enable stricter checking of remote server certificates. [Ruediger Pluem] - mod_substitute: Fix a memory leak. Bug 44948 [Dan Poirier <poirier pobox.com>] - mod_proxy_ajp: Forward remote port information by default. [Rainer Jung] - mod_disk_cache/mod_mem_cache: Fix handling of CacheIgnoreHeaders directive to correctly remove headers before storing them. [Lars Eilebrecht] - mod_deflate: revert changes in 2.2.8 that caused an invalid etag to be emitted for on-the-fly gzip content-encoding. Bug 39727 will require larger fixes and this fix was far more harmful than the original code. Bug 45023. [Roy T. Fielding] - mod_disk_cache: The module now turns off sendfile support if 'EnableSendfile off' is defined globally. Bug 41218. [Lars Eilebrecht, Issac Goldstand] - prefork: Fix child process hang during graceful restart/stop in configurations with multiple listening sockets. Bug 42829. [Joe Orton, Jeff Trawick] - mod_ssl: Add SSLRenegBufferSize directive to allow changing the size of the buffer used for the request-body where necessary during a per-dir renegotiation. Bug 39243. [Joe Orton] - mod_rewrite: Introduce DiscardPathInfo|DPI flag to stop the troublesome way that per-directory rewrites append the previous notion of PATH_INFO to each substitution before evaluating subsequent rules. Bug 38642 [Eric Covener] - mod_authnz_ldap: Reduce number of initialization debug messages and make information more clear. Bug 46342 [Dan Poirier] - mod_cache: Introduce 'no-cache' per-request environment variable to prevent the saving of an otherwise cacheable response. [Eric Covener] - core: Translate the status line to ASCII on EBCDIC platforms in ap_send_interim_response() and for locally generated "100 Continue" responses. [Eric Covener] - CGI: return 504 (Gateway timeout) rather than 500 when a script times out before returning status line/headers. Bug 42190 [Nick Kew] - prefork: Log an error instead of segfaulting when child startup fails due to pollset creation failures. Bug 46467. [Jeff Trawick] - mod_ext_filter: fix error handling when the filter prog fails to start, and introduce an onfail configuration option to abort All the security problems mentioned above had already been fixed in "pkgsrc" via patches. Thanks a lot to Adam Ciarcinski for letting me know that new version had finally been released.
2009-08-06Updated shells/bash to 4.0.28.hasso1-1/+4
Updated lang/pcc-current to 0.9.9.20090731. Updated www/midori to 0.1.9.
2009-08-06Update to 0.1.9. Correct URLs. Changes since 0.1.8:hasso3-9/+10
+ Preserve navigation history with new tabs + Implement clearing private data when quitting + Ellipsize and show close icons in the tab panel + Allow hiding panel operating controls + Integrate Tools with the compact menu + Fix User scripts, User styles and Plugins panel + Remove the bookmarkbar popup + Add New Tab to the tab context menu + Implement minimizing tabs
2009-08-06note addition of xulrunner and update of firefoxtnn1-1/+3
2009-08-06Update to the snapshot from 090731.hasso2-6/+6
2009-08-06Update to 4.0.28. Bugfixes.hasso2-4/+17
2009-08-06Remove "apr" and "apr-util" as the packages have been updated.tron1-3/+1
2009-08-06Added editors/Sigil version 0.1.1wiz1-1/+2
2009-08-06+ Sigil.wiz1-1/+2
2009-08-06Initial import of Sigil-0.1.1:wiz4-0/+69
Sigil is a multi-platform WYSIWYG ebook editor. It is designed to edit books in ePub format. Features: * Free and open source software under GPLv3 * Multi-platform: runs on Windows, Linux and Mac * Full Unicode support: everything you see in Sigil is in UTF-16 * Advanced automatic conversion of all imported documents to Unicode * Full EPUB spec support * WYSIWYG editing * Multiple Views: Book View, Code View and Split View * Metadata editor with full support for all possible metadata entries (more than 200) with full descriptions for each * Multi-level Table Of Contents editor * Book View fully supports the display of any XHTML document possible under the OPS spec * SVG support and basic XPGT support * Currently imports TXT, HTML and EPUB files * Currently exports EPUB and SGF (Sigil native format) * Embedded HTML Tidy; all imported documents are thoroughly cleaned; changing views cleans the document so no matter how much you screw up your code, it will fix it (usually ) * An actually usable user interface
2009-08-06Update patches for emacs-23.1.minskim3-40/+57
These should have been committed when emacs was updated.
2009-08-06Note update of www/opengoo package to 1.5.1nb1.taca1-1/+2
2009-08-06Since distfiles are updated silently, use DIST_SUBDIR now.taca2-5/+7
Reported by PR pkg/41825 from Robert Elz. Bump PKGREVISION.
2009-08-06PKGREVISION bump for elisp packages because of bytecode format changesminskim67-102/+134
in emacs23.
2009-08-06mail/mailcrypt can be built with emacs23.minskim1-2/+2
2009-08-06devel/js2-mode can be built with emacs23.minskim1-2/+2