Commit graph

32873 commits

Author SHA1 Message Date
Max Brazhnikov
e497a2904b www/otter-browser:
- update to 0.3.01

Submitted by:	Alonso Schaich
2014-03-24 08:16:26 +00:00
Nicola Vitale
af2bdc0dda - Update to 3.2.3 2014-03-23 23:08:49 +00:00
Nicola Vitale
65e47b6e7d - Update to 2.5.19 2014-03-23 23:07:58 +00:00
John Marino
a7e41dc840 www/seamonkey: Unbreak DragonFly
The first fix is a NO-OP for FreeBSD.  The clang/optimized flags work-
around is OSVERSION-specific, so let's limit it to FreeBSD only.

The real breakage was caused by the XPI_FILE substitution.  The "x86"
part of DragonFly's "x86_64" was getting transformed incorrectly to
"i386_64".  This could be prevented by changing the replacement pattern
to "x86$", but "x86" is not a standard ARCH value, so this substitution
isn't made on FreeBSD anyway.  The solution is just remove it as the
only effect it has is negative.

Tested on: Redports, all four i386 builders pass
2014-03-23 12:01:42 +00:00
Steve Wills
f4c33a7421 - Pull in newer dependencies 2014-03-23 06:24:57 +00:00
Steve Wills
ca9dae10f6 - Pull in newer dendencies to keep rails happy 2014-03-23 06:24:20 +00:00
Steve Wills
0b50f4f8fc - Update to 2.5.0 2014-03-23 06:20:54 +00:00
Sergey A. Osokin
6bf35b2cdd Security update from 1.5.11 to 1.5.12.
<ChangeLog>

*) Security: a heap memory buffer overflow might occur in a worker
   process while handling a specially crafted request by
   ngx_http_spdy_module, potentially resulting in arbitrary code
   execution (CVE-2014-0133).
   Thanks to Lucas Molas, researcher at Programa STIC, Fundación Dr.
   Manuel Sadosky, Buenos Aires, Argentina.

*) Feature: the "proxy_protocol" parameters of the "listen" and
   "real_ip_header" directives, the $proxy_protocol_addr variable.

*) Bugfix: in the "fastcgi_next_upstream" directive.
   Thanks to Lucas Molas.

</ChangeLog>
2014-03-23 02:35:12 +00:00
Sergey A. Osokin
e256e0979f Security update from 1.4.6 to 1.4.7.
<ChangeLog>

*) Security: a heap memory buffer overflow might occur in a worker
   process while handling a specially crafted request by
   ngx_http_spdy_module, potentially resulting in arbitrary code
   execution (CVE-2014-0133).
   Thanks to Lucas Molas, researcher at Programa STIC, Fundación Dr.
   Manuel Sadosky, Buenos Aires, Argentina.

*) Bugfix: in the "fastcgi_next_upstream" directive.
   Thanks to Lucas Molas.

</ChangeLog>
2014-03-23 02:29:37 +00:00
TAKATSU Tomonari
49a1131714 - Update to 0.9.1 2014-03-23 00:31:56 +00:00
Olli Hauer
f6f2be7fa3 - add LICENSE=APACHE20
PR:		ports/187028
Submitted by:	<freebsd.ports@webstyle.ch> (maintainer)
2014-03-22 23:59:59 +00:00
Olli Hauer
ae2e33c305 - fix MASTER_SITE
Noted by:
Adam Twardowski <atwardowski@choopa.com> on the apache@ list
2014-03-22 22:25:48 +00:00
Olli Hauer
f1560558b6 - update to 2.4.9
- enforcing use libapr-1.so.5 (apr-1.5.0 instead apr-1.4.8)

Changes with Apache 2.4.9

  *) mod_ssl: Work around a bug in some older versions of OpenSSL that
     would cause a crash in SSL_get_certificate for servers where the
     certificate hadn't been sent. [Stephen Henson]

   *) mod_lua: Add a fixups hook that checks if the original request is intended
      for LuaMapHandler. This fixes a bug where FallbackResource invalidates the
      LuaMapHandler directive in certain cases by changing the URI before the map
      handler code executes [Daniel Gruno, Daniel Ferradal <dferradal gmail com>].

Changes with Apache 2.4.8

  *) SECURITY: CVE-2014-0098 (cve.mitre.org)
     Clean up cookie logging with fewer redundant string parsing passes.
     Log only cookies with a value assignment. Prevents segfaults when
     logging truncated cookies.
     [William Rowe, Ruediger Pluem, Jim Jagielski]

  *) SECURITY: CVE-2013-6438 (cve.mitre.org)
     mod_dav: Keep track of length of cdata properly when removing
     leading spaces. Eliminates a potential denial of service from
     specifically crafted DAV WRITE requests
     [Amin Tora <Amin.Tora neustar.biz>]

  *) core: Support named groups and backreferences within the LocationMatch,
     DirectoryMatch, FilesMatch and ProxyMatch directives. (Requires
     non-ancient PCRE library) [Graham Leggett]

  *) core: draft-ietf-httpbis-p1-messaging-23 corrections regarding
     TE/CL conflicts. [Yann Ylavic <ylavic.dev gmail com>, Jim Jagielski]

  *) mod_dir: Add DirectoryCheckHandler to allow a 2.2-like behavior, skipping
     execution when a handler is already set. PR53929. [Eric Covener]

  *) mod_ssl: Do not perform SNI / Host header comparison in case of a
     forward proxy request. [Ruediger Pluem]

  *) mod_ssl: Remove the hardcoded algorithm-type dependency for the
     SSLCertificateFile and SSLCertificateKeyFile directives, to enable
     future algorithm agility, and deprecate the SSLCertificateChainFile
     directive (obsoleted by SSLCertificateFile). [Kaspar Brand]

  *) mod_rewrite: Add RewriteOptions InheritDown, InheritDownBefore,
     and IgnoreInherit to allow RewriteRules to be pushed from parent scopes
     to child scopes without explicitly configuring each child scope.
     PR56153.  [Edward Lu <Chaosed0 gmail com>]

  *) prefork: Fix long delays when doing a graceful restart.
     PR 54852 [Jim Jagielski, Arkadiusz Miskiewicz <arekm maven pl>]

  *) FreeBSD: Disable IPv4-mapped listening sockets by default for versions
     5+ instead of just for FreeBSD 5. PR 53824. [Jeff Trawick]

  *) mod_proxy_wstunnel: Avoid busy loop on client errors, drop message
     IDs 02445, 02446, and 02448 to TRACE1 from DEBUG. PR 56145.
     [Joffroy Christen <joffroy.christen solvaxis com>, Eric Covener]

  *) mod_remoteip: Correct the trusted proxy match test. PR 54651.
     [Yoshinori Ehara <yoshinori ehara gmail com>, Eugene L <eugenel amazon com>]

  *) mod_proxy_fcgi: Fix error message when an unexpected protocol version
     number is received from the application.  PR 56110.  [Jeff Trawick]

  *) mod_remoteip: Use the correct IP addresses to populate the proxy_ips field.
     PR 55972. [Mike Rumph]

  *) mod_lua: Update r:setcookie() to accept a table of options and add domain,
     path and httponly to the list of options available to set.
     PR 56128 [Edward Lu <Chaosed0 gmail com>, Daniel Gruno]

  *) mod_lua: Fix r:setcookie() to add, rather than replace,
     the Set-Cookie header. PR56105
     [Kevin J Walters <kjw ms com>, Edward Lu <Chaosed0 gmail com>]

  *) mod_lua: Allow for database results to be returned as a hash with
     row-name/value pairs instead of just row-number/value. [Daniel Gruno]

  *) mod_rewrite: Add %{CONN_REMOTE_ADDR} as the non-useragent counterpart to
     %{REMOTE_ADDR}. PR 56094. [Edward Lu <Chaosed0 gmail com>]

  *) WinNT MPM: If ap_run_pre_connection() fails or sets c->aborted, don't
     save the socket for reuse by the next worker as if it were an
     APR_SO_DISCONNECTED socket. Restores 2.2 behavior. [Eric Covener]

  *) mod_dir: Don't search for a DirectoryIndex or DirectorySlash on a URL
     that was just rewritten by mod_rewrite. PR53929. [Eric Covener]

  *) mod_session: When we have a session we were unable to decode,
     behave as if there was no session at all. [Thomas Eckert
     <thomas.r.w.eckert gmail com>]

  *) mod_session: Fix problems interpreting the SessionInclude and
     SessionExclude configuration. PR 56038. [Erik Pearson
     <erik adaptations.com>]

  *) mod_authn_core: Allow <AuthnProviderAlias>'es to be seen from auth
     stanzas under virtual hosts. PR 55622. [Eric Covener]

  *) mod_proxy_fcgi: Use apr_socket_timeout_get instead of hard-coded
     30 seconds timeout. [Jan Kaluza]

  *) mod_proxy: Added support for unix domain sockets as the
     backend server endpoint [Jim Jagielski, Blaise Tarr
     <blaise tarr gmail com>]

  *) build: only search for modules (config*.m4) in known subdirectories, see
     build/config-stubs. [Stefan Fritsch]

  *) mod_cache_disk: Fix potential hangs on Windows when using mod_cache_disk.
     PR 55833. [Eric Covener]

  *) mod_ssl: Add support for OpenSSL configuration commands by introducing
     the SSLOpenSSLConfCmd directive. [Stephen Henson, Kaspar Brand]

  *) mod_proxy: Remove (never documented) <Proxy ~ wildcard-url> syntax which
     is equivalent to <ProxyMatch wildcard-url>. [Christophe Jaillet]

  *) mod_authz_user, mod_authz_host, mod_authz_groupfile, mod_authz_dbm,
     mod_authz_dbd, mod_authnz_ldap: Support the expression parser within the
     require directives. [Graham Leggett]

  *) mod_proxy_http: Core dumped under high load. PR 50335.
     [Jan Kaluza <jkaluza redhat.com>]

  *) mod_socache_shmcb.c: Remove arbitrary restriction on shared memory size
     previously limited to 64MB. [Jens Låås <jelaas gmail.com>]

  *) mod_lua: Use binary copy when dealing with uploads through r:parsebody()
     to prevent truncating files. [Daniel Gruno]

Changes with Apache 2.4.7

  *) APR 1.5.0 or later is now required for the event MPM.

  *) slotmem_shm: Error detection. [Jim Jagielski]

  *) event: Use skiplist data structure. [Jim Jagielski]

  *) event: Fail at startup with message AP02405 if the APR atomic
     implementation is not compatible with the MPM.  [Jim Jagielski]

  *) mpm_unix: Add ap_mpm_podx_* implementation to avoid code duplication
     and align w/ trunk. [Jim Jagielski]

  *) Fix potential rejection of valid MaxMemFree and ThreadStackSize
     directives.  [Mike Rumph <mike.rumph oracle.com>]

  *) mod_proxy_fcgi: Remove 64K limit on encoded length of all envvars.
     An individual envvar with an encoded length of more than 16K will be
     omitted.  [Jeff Trawick]

  *) mod_proxy_fcgi: Handle reading protocol data that is split between
     packets.  [Jeff Trawick]

  *) mod_ssl: Improve handling of ephemeral DH and ECDH keys by
     allowing custom parameters to be configured via SSLCertificateFile,
     and by adding standardized DH parameters for 1024/2048/3072/4096 bits.
     Unless custom parameters are configured, the standardized parameters
     are applied based on the certificate's RSA/DSA key size. [Kaspar Brand]

  *) mod_ssl, configure: Require OpenSSL 0.9.8a or later. [Kaspar Brand]

  *) mod_ssl: drop support for export-grade ciphers with ephemeral RSA
     keys, and unconditionally disable aNULL, eNULL and EXP ciphers
     (not overridable via SSLCipherSuite). [Kaspar Brand]

  *) mod_proxy: Added support for unix domain sockets as the
     backend server endpoint [Jim Jagielski, Blaise Tarr
     <blaise tarr gmail com>]

  *) Add experimental cmake-based build system for Windows.  [Jeff Trawick,
     Tom Donovan]

  *) event MPM: Fix possible crashes (third party modules accessing c->sbh)
     or occasional missed mod_status updates for some keepalive requests
     under load. [Eric Covener]

  *) mod_authn_socache: Support optional initialization arguments for
     socache providers.  [Chris Darroch]

  *) mod_session: Reset the max-age on session save. PR 47476. [Alexey
     Varlamov <alexey.v.varlamov gmail com>]

  *) mod_session: After parsing the value of the header specified by the
     SessionHeader directive, remove the value from the response. PR 55279.
     [Graham Leggett]

  *) mod_headers: Allow for format specifiers in the substitution string
     when using Header edit. [Daniel Ruggeri]

  *) mod_dav: dav_resource->uri is treated as unencoded. This was an
     unnecessary ABI changed introduced in 2.4.6. PR 55397.

  *) mod_dav: Don't require lock tokens for COPY source. PR 55306.

  *) core: Don't truncate output when sending is interrupted by a signal,
     such as from an exiting CGI process. PR 55643. [Jeff Trawick]

  *) WinNT MPM: Exit the child if the parent process crashes or is terminated.
     [Oracle Corporation]

  *) Windows: Correct failure to discard stderr in some error log
     configurations.  (Error message AH00093)  [Jeff Trawick]

  *) mod_session_crypto: Allow using exec: calls to obtain session
     encryption key.  [Daniel Ruggeri]

  *) core: Add missing Reason-Phrase in HTTP response headers.
     PR 54946. [Rainer Jung]

  *) mod_rewrite: Make rewrite websocket-aware to allow proxying.
     PR 55598. [Chris Harris <chris.harris kitware com>]

  *) mod_ldap: When looking up sub-groups, use an implicit objectClass=*
     instead of an explicit cn=* filter. [David Hawes <dhawes vt.edu>]

  *) ab: Add wait time, fix processing time, and output write errors only if
     they occured. [Christophe Jaillet]

  *) worker MPM: Don't forcibly kill worker threads if the child process is
     exiting gracefully.  [Oracle Corporation]

  *) core: apachectl -S prints wildcard name-based virtual hosts twice.
     PR54948 [Eric Covener]

  *) mod_auth_basic: Add AuthBasicUseDigestAlgorithm directive to
     allow migration of passwords from digest to basic authentication.
     [Chris Darroch]

  *) ab: Add a new -l parameter in order not to check the length of the responses.
     This can be usefull with dynamic pages.
     PR9945, PR27888, PR42040 [<ccikrs1 cranbrook edu>]

  *) Suppress formatting of startup messages written to the console when
     ErrorLogFormat is used.  [Jeff Trawick]

  *) mod_auth_digest: Be more specific when the realm mismatches because the
     realm has not been specified. [Graham Leggett]

  *) mod_proxy: Add a note in the balancer manager stating whether changes
     will or will not be persisted and whether settings are inherited.
     [Daniel Ruggeri, Jim Jagielski]

  *) mod_cache: Avoid a crash with strcmp() when the hostname is not provided.
     [Graham Leggett]

  *) core: Add util_fcgi.h and associated definitions and support
     routines for FastCGI, based largely on mod_proxy_fcgi.
     [Jeff Trawick]

  *) mod_headers: Add 'Header note header-name note-name' for copying a response
     headers value into a note. [Eric Covener]

  *) mod_headers: Add 'setifempty' command to Header and RequestHeader.
     [Eric Covener]

  *) mod_logio: new format-specifier %S (sum) which is the sum of received
     and sent byte counts.
     PR54015 [Christophe Jaillet]

  *) mod_deflate: Improve error detection when decompressing request bodies
     with trailing garbage: handle case where trailing bytes are in
     the same bucket. [Rainer Jung]

  *) mod_authz_groupfile, mod_authz_user: Reduce severity of AH01671 and AH01663
     from ERROR to DEBUG, since these modules do not know what mod_authz_core
     is doing with their AUTHZ_DENIED return value. [Eric Covener]

  *) mod_ldap: add TRACE5 for LDAP retries. [Eric Covener]

  *) mod_ldap: retry on an LDAP timeout during authn. [Eric Covener]

  *) mod_ldap: Change "LDAPReferrals off" to actually set the underlying LDAP
     SDK option to OFF, and introduce "LDAPReferrals default" to take the SDK
     default, sans rebind authentication callback.
     [Jan Kaluza <kaluze AT redhat.com>]

  *) core: Log a message at TRACE1 when the client aborts a connection.
     [Eric Covener]

  *) WinNT MPM: Don't crash during child process initialization if the
     Listen protocol is unrecognized.  [Jeff Trawick]

  *) modules: Fix some compiler warnings. [Guenter Knauf]

  *) Sync 2.4 and trunk
       - Avoid some memory allocation and work when TRACE1 is not activated
       - fix typo in include guard
       - indent
       - No need to lower the string before removing the path, it is just a waste of time...
       - Save a few cycles
     [Christophe Jaillet <christophe.jaillet wanadoo.fr>]

  *) mod_filter: Add "change=no" as a proto-flag to FilterProtocol
     to remove a providers initial flags set at registration time.
     [Eric Covener]

  *) core, mod_ssl: Enable the ability for a module to reverse the sense of
     a poll event from a read to a write or vice versa. This is a step on
     the way to allow mod_ssl taking full advantage of the event MPM.
     [Graham Leggett]

  *) Makefile.win: Install proper pcre DLL file during debug build install.
     PR 55235.  [Ben Reser <ben reser org>]

  *) mod_ldap: Fix a potential memory leak or corruption.  PR 54936.
     [Zhenbo Xu <zhenbo1987 gmail com>]

  *) ab: Fix potential buffer overflows when processing the T and X
     command-line options.  PR 55360.
     [Mike Rumph <mike.rumph oracle.com>]

  *) fcgistarter: Specify SO_REUSEADDR to allow starting a server
     with old connections in TIME_WAIT.  [Jeff Trawick]

  *) core: Add open_htaccess hook which, in conjunction with dirwalk_stat
     and post_perdir_config (introduced in 2.4.5), allows mpm-itk to be
     used without patches to httpd core. [Stefan Fritsch]

  *) support/htdbm: fix processing of -t command line switch. Regression
     introduced in 2.4.4
     PR 55264 [Jo Rhett <jrhett netconsonance com>]

  *) mod_lua: add websocket support via r:wsupgrade, r:wswrite, r:wsread
     and r:wsping. [Daniel Gruno]

  *) mod_lua: add support for writing/reading cookies via r:getcookie and
     r:setcookie. [Daniel Gruno]

  *) mod_lua: If the first yield() of a LuaOutputFilter returns a string, it should
     be prefixed to the response as documented. [Eric Covener]
     Note: Not present in 2.4.7 CHANGES

  *) mod_lua: Remove ETAG, Content-Length, and Content-MD5 when a LuaOutputFilter
     is configured without mod_filter. [Eric Covener]
     Note: Not present in 2.4.7 CHANGES

  *) mod_lua: Register LuaOutputFilter scripts as changing the content and
     content-length by default, when run my mod_filter.  Previously,
     growing or shrinking a response that started with Content-Length set
     would require mod_filter and FilterProtocol change=yes. [Eric Covener]
     Note: Not present in 2.4.7 CHANGES

  *) mod_lua: Return a 500 error if a LuaHook* script doesn't return a
     numeric return code. [Eric Covener]
     Note: Not present in 2.4.7 CHANGES
2014-03-22 21:18:21 +00:00
Andrej Zverev
6219c558d1 - update to 0.25
Changelog: http://search.cpan.org/dist/HTTP-Async/Changes
2014-03-22 16:59:21 +00:00
Florian Smeets
549fdfeaca Update to 2.8.8 2014-03-22 15:04:57 +00:00
Wen Heping
24482fe0dc - Connect moodle26 2014-03-22 14:53:20 +00:00
Wen Heping
6dd6ce9b22 - Repocopy www/moodle25 --> www/moodle26
- Update to 2.6.2
- Stage support
- Add LICENSE
2014-03-22 14:49:48 +00:00
Andrej Zverev
8699929077 - update to 0.10
- add LICENSE
2014-03-22 10:21:51 +00:00
Wen Heping
9b5715d780 - Update www/mediawiki122 to 1.22.4 and connect 2014-03-22 04:50:22 +00:00
Wen Heping
36604878da - Update to 2.5.5 2014-03-22 04:47:28 +00:00
Wen Heping
d7f4dc79f6 - Update to 2.4.9 2014-03-22 04:45:57 +00:00
Wen Heping
eaecf03bce - Repocopy www/mediawiki121 --> www/mediawiki122 2014-03-22 03:08:31 +00:00
Wen Heping
f1777f9c34 - Update to 1.19.13 2014-03-22 02:35:16 +00:00
Wen Heping
bea6955b26 - Update to 1.21.7 2014-03-22 02:34:42 +00:00
Bryan Drewery
8dc9c5cff3 - Fix bmake warning
Reported by:	Allan Jude
2014-03-21 21:44:16 +00:00
TAKATSU Tomonari
34114aff95 - Update to 0.9.0 2014-03-21 06:10:06 +00:00
Emanuel Haupt
4bdd0f1424 Support staging 2014-03-20 15:04:11 +00:00
Pawel Pekala
f7de88a16d www/smarty3 update to 3.1.17 2014-03-20 10:32:41 +00:00
Beat Gaetzi
1616441cd1 - Update to 2.25
Submitted by:	Jan Beich
Security:	http://www.vuxml.org/freebsd/610de647-af8d-11e3-a25b-b4b52fce4ce8.html
2014-03-20 10:15:01 +00:00
Emanuel Haupt
7536141c34 - Support staging
- Convert USE_BZIP2=yes to USES=tar:bzip2
- Use COPYTREE_SHARE istead of CP
- Revert deprecation, distfile is fetchable again
2014-03-20 09:07:41 +00:00
Beat Gaetzi
c80e090095 - Update Firefox to 28.0
- Update Firefox ESR to 24.4.0
- Update Thunderbird to 24.4.0
- Update NSPR to 4.10.4
- Update NSS to 3.15.5
- Switch GSTREAMER option for non-esr ports to depend on
  multimedia/gstreamer1 [2]
- Switch to Uses/compiler.mk, defaults to lang/gcc47 on 8.x and 9.x
- Use port dependencies for libogg, libvorbis, libopus, harfbuzz, graphite2
- Enable readahead in url-classifier, asmjs, download resume like on Linux
- Build www/firefox and www/seamonkey faster using unified compilation
- Unbreak build on sparc64 [1]
- Workaround OPTIMIZED_CFLAGS startup crash on 8.x and 9.x
- OPTIMIZED_CFLAGS is enabled by default
- A few DEBUG build fixes
- Add clang 3.2/3.3/3.4 workarounds for i386
- Mention known GSTREAMER issue in pkg-message

Submitted by:	Jan Beich
PR:		ports/186580 [1]
Requested by:	kwm [2]
Security:	http://www.vuxml.org/freebsd/610de647-af8d-11e3-a25b-b4b52fce4ce8.html
2014-03-19 20:46:37 +00:00
Sunpoet Po-Chuan Hsieh
8ba5a278f3 - Update to 4.0.20
Changes:	http://www.tinymce.com/develop/changelog/index.php?type=tinymce
2014-03-19 17:19:39 +00:00
Ryan Steinmetz
f1a24e8031 - Update to 3.6.7 2014-03-19 12:26:50 +00:00
Steve Wills
d5cced9b62 - Additional Technical Documentation is not included in the port.
PR:		ports/187673
Submitted by:	Horia Racoviceanu <horia@racoviceanu.com> (maintainer)
2014-03-18 15:03:19 +00:00
Emanuel Haupt
50418f3429 Quiesce mkdir 2014-03-18 14:26:57 +00:00
Dmitry Sivachenko
463276a908 New port: mod_proxy_uwsgi.
This is Apache2 proxy module to pass requests to uwsgi.
2014-03-18 13:15:38 +00:00
Boris Samorodov
068c735c51 www/web2ldap: update to version 1.1.49 2014-03-18 10:24:47 +00:00
Dmitry Sivachenko
50c56afcc6 Update to version 2.0.3. 2014-03-17 09:00:17 +00:00
Mark Felder
3b8a674f5b Support STAGE 2014-03-17 00:16:06 +00:00
Olli Hauer
9ec2b82a0f - fix buid on FreeBSD 10
- bump PORTREVISION
- change MAINTAINER to PR submitter

PR:		ports/187270 (followup)
Submitted by:	Jeff Lawson <jeff.lawson@flightaware.com> (new maintainer)
Approved by:	Peter Lai <cowbert@gmail.com> (former maintainer)
2014-03-16 21:30:48 +00:00
TAKATSU Tomonari
0fb96cce0a - Update WWW: in pkg-descr
Submitted by:	ohauer (via private e-mail)
2014-03-16 21:17:47 +00:00
Olli Hauer
a3f7aafc78 ports in cat www where MAINTAINER=ports
- USE_BZIP2 -> USES= tar:bzip2
- LICENSE=BSD -> BSD[n]CLAUSE
2014-03-16 16:07:59 +00:00
Olli Hauer
7a495f3ff2 - USE_BZIP2 -> USES=tar:bzip2 2014-03-16 14:35:55 +00:00
Olli Hauer
9885f020e5 - fix staged package building
Noted by antoine@
2014-03-16 14:30:28 +00:00
Antoine Brodin
807b0212d6 Unbreak 2014-03-16 14:22:26 +00:00
Tijl Coosemans
1e3f68f039 - Use the more common libpng instead of libmng.
- Add an icon to the desktop entry.
- Use option helpers.
- Respect CFLAGS.
- Remove clang support patch.  No longer necessary.
- Add a patch to fix rendering of SVG and BMP images on little-endian
  systems and all image formats on big-endian systems. [1]

PR:		ports/187466 [1]
Tested by:	Craig Butler <craig001@lerwick.hopto.org> [1]
2014-03-15 17:52:53 +00:00
Martin Wilke
63aca260a3 - Stage support 2014-03-15 15:44:06 +00:00
Juergen Lock
587837f8ba Switch my ports to USES= tar:... 2014-03-15 15:35:59 +00:00
Rene Ladan
8942848f40 Update to 33.0.1750.152
Security:	http://vuxml.org/freebsd/a70966a1-ac22-11e3-8d04-00262d5ed8ee.html
MFH:		2014Q1
2014-03-15 09:50:04 +00:00
Martin Wilke
9df46da441 - Covert USE_GMAKE, USE_BZIP2, USE_XZ to USES 2014-03-15 08:12:20 +00:00
Martin Matuska
f0bf71343c Update c-icap to 0.3.3 and c-icap-modules to 0.3.2
Add staging support
2014-03-15 03:07:11 +00:00
Eitan Adler
1e8214130a Update flash to the latest version.
PR:		ports/187556
Submitted by:	Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp>
2014-03-14 16:11:35 +00:00
Sunpoet Po-Chuan Hsieh
7276445cfb - Update to 0.3.2
- Add my LOCAL to MASTER_SITES
- Use USES=tar:xz

Changes:	https://github.com/tatsuhiro-t/nghttp2/releases
2014-03-14 15:20:35 +00:00
Sunpoet Po-Chuan Hsieh
ad18a7d2fb - Add my LOCAL to MASTER_SITES
- Use USES=tar:xz
2014-03-14 15:20:29 +00:00
Emanuel Haupt
f3e30472a1 Support staging 2014-03-14 12:30:56 +00:00
Emanuel Haupt
d256b0e169 Support staging 2014-03-14 12:26:45 +00:00
Emanuel Haupt
e4df6e962e Support staging 2014-03-14 10:27:47 +00:00
Sunpoet Po-Chuan Hsieh
eb4f1cbe10 - Use USES=tar:xz 2014-03-14 10:09:31 +00:00
Sunpoet Po-Chuan Hsieh
3d6d601abf - Use USES=tar:tgz 2014-03-14 08:18:20 +00:00
Sunpoet Po-Chuan Hsieh
b01a9a396e - Use USES=tar:tgz 2014-03-14 08:17:42 +00:00
Sunpoet Po-Chuan Hsieh
465da7f246 - Update to 4.0.19
Changes:	http://www.tinymce.com/develop/changelog/index.php?type=tinymce
2014-03-14 07:27:55 +00:00
Martin Matuska
4ca753338c Update lighttpd to 1.4.35 2014-03-14 01:35:13 +00:00
Antoine Brodin
894d94a65c Unbreak, those 3 ports include Makefile.xpi after bsd.port.pre.mk so the
USES from Makefile.xpi was inefficient

Reported by:	pkg-fallout
2014-03-13 17:26:13 +00:00
Emanuel Haupt
9bc9a1ea1e - Support staging
- Define DOCS option
2014-03-13 15:48:30 +00:00
TAKATSU Tomonari
b34214fac7 - Update to 2.2.5
- Remove indefinite article from COMMENT
- Pass maintainership to ruby@
2014-03-13 15:23:42 +00:00
Emanuel Haupt
252aa04228 - Support staging
- Use shebangfix
2014-03-13 15:20:03 +00:00
Emanuel Haupt
8a4c33dc2d Support staging 2014-03-13 14:57:16 +00:00
Emanuel Haupt
94c9a9e561 - Support staging
- Use WWW: with a single space
- Remove duplicate default DISTNAME definition
2014-03-13 14:55:52 +00:00
Emanuel Haupt
90bc0b1940 Support staging 2014-03-13 14:33:02 +00:00
Baptiste Daroussin
b2bb033360 Update my ports to the latest infrastructure changes 2014-03-13 14:06:32 +00:00
Sunpoet Po-Chuan Hsieh
3676958aa1 - Use USES=tar:xz
- Cosmetic change
2014-03-12 18:53:42 +00:00
Martin Wilke
509df48716 - Stage support 2014-03-12 02:50:22 +00:00
Kevin Lo
fc1783f996 Work around a very obscure but potentially severe security problem.
The user can have the variables OWNCLOUD_USERNAME and OWNCLOUD_GROUPNAME
defined in his environment to point to his own username and groupname.

Suggested by:	Adam McDougall
2014-03-12 02:04:03 +00:00
Eitan Adler
77551665c0 www/mod_h264_streaming: make LEGAL match the port.
Approved by:	portmgr (implicit)
2014-03-11 23:23:37 +00:00
Rene Ladan
b74555ba4f - Update to 33.0.1750.149 [1]
- Add a patch to fix build on FreeBSD < 10 [2]
Obtained from:	http://crbug.com/347123 [2]
Security:	http://vuxml.org/freebsd/24cefa4b-a940-11e3-91f2-00262d5ed8ee.html [1]
MFH:		2014Q1
2014-03-11 21:53:39 +00:00
Antoine Brodin
bec323e88c Chase some bumps 2014-03-11 20:56:03 +00:00
Florian Smeets
24136b5bd5 Release a few ports I don't use anymore. Unfortunately I don't have time to
maintain them properly currently.
2014-03-11 20:35:53 +00:00
Antoine Brodin
18727be46a Unbreak 2014-03-11 20:28:36 +00:00
Antoine Brodin
61a7dd49a5 Unbreak 2014-03-11 20:26:29 +00:00
Antoine Brodin
926c1aee4c Unbreak 2014-03-11 20:25:27 +00:00
Antoine Brodin
c2e37ee287 Unbreak 2014-03-11 20:25:08 +00:00
Antoine Brodin
58096d74fe Unbreak 2014-03-11 20:15:41 +00:00
Steve Wills
86d2e78472 Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for
Ruby/Rack applications. Puma is intended for use in both development and
production environments. In order to get the best throughput, it is highly
recommended that you use a Ruby implementation with real threads like Rubinius
or JRuby.

WWW: http://puma.io/
2014-03-11 19:18:11 +00:00
Steve Wills
45a90dd7fa Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for
Ruby/Rack applications. Puma is intended for use in both development and
production environments. In order to get the best throughput, it is highly
recommended that you use a Ruby implementation with real threads like Rubinius
or JRuby.

This older version will be used by an updated versions of chef.

WWW: http://puma.io/
2014-03-11 19:04:35 +00:00
Steve Wills
b3b56e747c Pipeline is an asset packaging library for Django, providing
both CSS and JavaScript concatenation and compression, built-in
JavaScript template support, and optional data-URI image embedding.

This port will be used by an updated www/reviewboard.

WWW: https://github.com/cyberdelia/django-pipeline
2014-03-11 14:53:55 +00:00
Koop Mast
70c71e5cdd gnome-panel will be updated to the 3.x version when GNOME 3 will merged.
Deprecate the first batch of ports that are incompatible with the new 3.x version.
2014-03-11 14:40:28 +00:00
Steve Wills
6defd360f1 JavaScript parser/compressor/beautifier. This will be a build dependency of
www/reviewboard when it is updated.

WWW: https://github.com/mishoo/UglifyJS
2014-03-11 13:17:29 +00:00
Matthew Seaman
8342f757b5 lighttpd+mod_fastcgi and spawn-fcgi web deployment methods both incur
a dependency on p5-FCGI, not just apache+mod_fastcgi
2014-03-11 12:44:06 +00:00
Andrej Zverev
84a20a8cf2 - remove outdated xpi-post-extract check: distfile don't contain any CVS markers
Approved by:	miwi@ (gecko@)
2014-03-11 08:23:24 +00:00
Baptiste Daroussin
73d7a316c1 Convert to USES=zip:infozip 2014-03-11 06:56:02 +00:00
Andrej Zverev
eaa78b1583 - update to 4.0056
Changes: http://search.cpan.org/dist/HTML-FormHandler/Changes
2014-03-11 05:43:18 +00:00
Gerald Pfeifer
1cd277bdce Update the default version of GCC used in the Ports Collection from
GCC 4.6.4 to GCC 4.7.3.  This entails updating the lang/gcc port as
well as changing the default in Mk/bsd.default-versions.mk.

Part II, Bump PORTREVISIONs.

PR:		182136
Supported by:	Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by:	bdrewery (two -exp runs)
2014-03-10 20:55:20 +00:00
Antoine Brodin
e234c013d2 Deprecate: marked BROKEN for more than 6 months 2014-03-10 18:53:22 +00:00
Baptiste Daroussin
4ea7b9edae Convert www to USES=zip 2014-03-10 18:01:09 +00:00
Rene Ladan
5111f8553d Mark deprecated, depends on expired www/p5-CGI-modules
Approved by:	portmgr (infrastructure blanket)
2014-03-10 12:32:36 +00:00
Rene Ladan
c9a690d33c Remove expired ports:
2014-03-10 deskutils/libopensync-plugin-synce: No more public distfiles
2014-03-10 irc/irchat-pj-xemacs21-mule: No more public distfiles
2014-03-10 irc/pure-xemacs21-mule: No more public distfiles
2014-03-10 lang/dice: No more public distfiles
2014-03-10 irc/dcc: No more public distfiles
2014-03-10 sysutils/backupme: No more public distfiles
2014-03-10 net/freeswitch-curl-devel: No more public distfiles
2014-03-10 misc/freeswitch-pizzademo-devel: No more public distfiles
2014-03-10 emulators/cygne-sdl: No more public distfiles
2014-03-10 mail/newmail: No more public distfiles
2014-03-10 x11-toolkits/xscoop: No more public distfiles
2014-03-10 security/didentd: No more public distfiles
2014-03-10 sysutils/wait_on: No more public distfiles
2014-03-10 net/freeswitch-sbc-devel: No more public distfiles
2014-03-10 multimedia/gxanim: No more public distfiles
2014-03-10 www/nd: No more public distfiles
2014-03-10 lang/fbbi: No more public distfiles
2014-03-10 textproc/csv2xml: No more public distfiles
2014-03-10 www/trac-calendar: No more public distfiles
2014-03-10 misc/stan: No more public distfiles
2014-03-10 japanese/gtkicq: No more public distfiles
2014-03-10 net/nc6: No more public distfiles
2014-03-10 net/jpcap: No more public distfiles
2014-03-10 games/quake-extras: No more public distfiles
2014-03-10 net/asfrecorder: No more public distfiles
2014-03-10 sysutils/pyrenamer: No more public distfiles
2014-03-10 palm/synce-sync-engine: No more public distfiles
2014-03-10 www/linux-mplayer-plugin: No more public distfiles
2014-03-10 net-mgmt/airport: No more public distfiles
2014-03-10 textproc/manued.el: No more public distfiles
2014-03-10 sysutils/jailer: No more public distfiles
2014-03-10 sysutils/blimitd: No more public distfiles
2014-03-10 print/abntex: No more public distfiles
2014-03-10 sysutils/monkeytail: No more public distfiles
2014-03-10 dns/dns_mre: No more public distfiles
2014-03-10 japanese/libjcode: No more public distfiles
2014-03-10 sysutils/jailutils: No more public distfiles
2014-03-10 net/freeswitch-vanilla-devel: No more public distfiles
2014-03-10 sysutils/hdup: No more public distfiles
2014-03-10 print/cups-smb-backend: No more public distfiles
2014-03-10 x11/settitle: No more public distfiles
2014-03-10 sysutils/anteater: No more public distfiles
2014-03-10 www/trac-pendingticket: No more public distfiles
2014-03-10 www/admuser: No more public distfiles
2014-03-10 x11-themes/gnome-icons-snowish: No more public distfiles
2014-03-10 www/metacafe_dl: No more public distfiles
2014-03-10 irc/irchat-pj-emacs21: No more public distfiles
2014-03-10 www/horde3-wicked: No more public distfiles
2014-03-10 java/drexelsnmp: No more public distfiles
2014-03-10 mail/sigit: No more public distfiles
2014-03-10 misc/freeswitch-scripts-devel: No more public distfiles
2014-03-10 www/vtiger-customerportal: No more public distfiles
2014-03-10 irc/pure-emacs21: No more public distfiles
2014-03-10 www/extsm: No more public distfiles
2014-03-10 misc/cwish: No more public distfiles
2014-03-10 www/phpscheduleit: No more public distfiles
2014-03-10 palm/synce-serial: No more public distfiles
2014-03-10 palm/synce-vdccm: No more public distfiles
2014-03-10 net/freeswitch-insideout-devel: No more public distfiles
2014-03-10 sysutils/fusefs-fur: No more public distfiles
2014-03-10 mail/clamfilter: No more public distfiles
2014-03-10 textproc/cost: No more public distfiles
2014-03-10 palm/synce-gvfs: No more public distfiles
2014-03-10 net/nxserver: No more public distfiles
2014-03-10 sysutils/throttle: No more public distfiles
2014-03-10 japanese/aterm: No more public distfiles
2014-03-10 mail/teapop: No more public distfiles
2014-03-10 www/eldav.el: No more public distfiles
2014-03-10 graphics/gsnapshot: No more public distfiles
2014-03-10 japanese/zangband: No more public distfiles
2014-03-10 audio/xmms-wma: No more public distfiles
2014-03-10 misc/projectionlib: No more public distfiles
2014-03-10 11:50:26 +00:00
Olli Hauer
2bf93aa846 -add stage support 2014-03-09 19:51:44 +00:00
Olli Hauer
37bd565d71 - add stage support 2014-03-09 18:09:55 +00:00
Olli Hauer
d67a482188 add stage support 2014-03-09 17:42:56 +00:00
Julien Laffaye
ccc8f79b07 - Update to 2.3.13
- Remove deprecated easy_install support
- STAGE support
2014-03-09 17:21:48 +00:00
Julien Laffaye
0cfabf8c91 - Update to 20131014 2014-03-09 17:20:30 +00:00
Olli Hauer
7d5e9e156e - add stage support 2014-03-09 16:59:33 +00:00
Olli Hauer
03ff560404 - add stage support
- make DBI an OPTION instead guessing during build time
- adjust pkg-plist
2014-03-09 15:28:37 +00:00
Sunpoet Po-Chuan Hsieh
b51d5cf16d - Remove USE_DISTUTILS=yes: use setuptools since it's dependency now
- Strip shared library
- Bump PORTREVISION for package change
2014-03-09 14:51:15 +00:00
Olli Hauer
d98420510c - add stage support
- add LICENSE
- fix PORTDOCS
2014-03-09 13:55:20 +00:00
Olli Hauer
993b9650aa - add stage support
- add LICENSE
- adopt new LIB_DEPENDS syntax
2014-03-09 13:03:28 +00:00
Olli Hauer
24f3713903 - update to version 2.0.8
- add stage support
- add LICENSE

Changes:
 * VERSION: 2.0.8
 * mod_vhost_ldap.c: Don't copy server struct if we have per request document root

 * VERSION: 2.0.7
 * mod_vhost_ldap.c: Revert escaping wildcard character as it was
                     already done before by ldap_bv2escaped_filter_value
 * VERSION: 2.0.6
 * mod_vhost_ldap.c: Properly escape wildcard string to search
                     for literal *.hostname
 * mod_vhost_ldap.c, vhost_ldap.conf: Add new boolean option VhostLDAPWildcard
                                      to disable wildcard search completely
 * mod_vhost_ldap.c: Fix cgi-bin processing (Courtesy of Anders Kaseorg)

 * VERSION: 2.0.5
 * mod_vhost_ldap.c: Make a private copy of server config to each
                     request to be thread safe. (Courtesy Anders Kaseorg)

 * VERSION: 2.0.3
 * mod_vhost_ldap.c: Workaround concurrency issues with ap_document_root
                     by adding mutex before it is set and release before
                     handler is run.

 * VERSION: 2.0.1
 * mod_vhost_ldap.c: Remove cleanup routine, it was causing segfaults.

 * VERSION: 2.0.0 release
 * mod_vhost_ldap.c: Sleep for (fibonacci numbers) seconds after LDAP failure
 * mod_vhost_ldap.c: Add a log WARNING when LDAP is unreachable
 * mod_vhost_ldap.c: Don't set r->filename, return DECLINE on success, only
                     mangle documentroot and others, and let other apache
                     modules handle real filenames
 * mod_vhost_ldap.c: Create and use function set_document_root inspired by apache2.2
 * mod_vhost_ldap.c: Return correct error codes on failures and not DECLINED
 * mod_vhost_ldap.c: Put translate_name hook at FIRST place

 * VERSION: 1.2.0 release
 * mod_vhost_ldap.c: release apache-2.2 version as 1.2.0

 * VERSION: 1.0.1 release
 * mod_vhost_ldap.c: add support for apache-2.2.x
2014-03-09 13:00:36 +00:00
Gerald Pfeifer
724b707762 Convert to staging (which just means removing the NO_STAGE flag here). 2014-03-09 01:10:27 +00:00
Gerald Pfeifer
871016a02f Update to version 1.4.3. Adjust the URL in pkg-descr. Sort pkg-plist.
PR:		182301
Submitted by:	lwhsu
Approved by:	maintainer timeout (clsung, >5 months)
2014-03-09 00:46:57 +00:00
Antoine Brodin
c6c742d7cc Deprecate a few unmaintained ports (leaf ports, non staged and unmaintained since more than 12 years) 2014-03-08 22:26:21 +00:00
Sunpoet Po-Chuan Hsieh
fb79857986 - Remove USE_DISTUTILS=yes: use setuptools since it's dependency now
- Strip shared library
- Bump PORTREVISION for package change
2014-03-08 20:33:13 +00:00
Wen Heping
8b91860074 - Update to 1.21.6
- Update CONFLICTS
2014-03-08 15:38:53 +00:00
Wen Heping
15d537b8d2 - Update to 1.19.12
- Apply the patch from upstream to fix the run error with pcre-8.34
- Update CONFLICTS
2014-03-08 15:26:05 +00:00
Wen Heping
9b3f75cfb2 - Mark DEPRECATED
- Update CONFLICTS
2014-03-08 13:41:38 +00:00
Matthew Seaman
06e7799de0 Update to 0.18
ChangeLog:	http://cpansearch.perl.org/src/FALCONE/RT-Authen-ExternalAuth-0.18/ChangeLog
2014-03-08 12:49:01 +00:00
Sunpoet Po-Chuan Hsieh
3a64d130a6 - Fix PORTVERSION: it goes backward from 0.0501 to 0.06
- Fix *_DEPENDS: p5-Test-Mock-LWP is a test-only dependency
- Bump PORTREVISION for dependency change
2014-03-08 09:25:14 +00:00
Sunpoet Po-Chuan Hsieh
2870239e17 - Use USES=zip 2014-03-08 08:22:50 +00:00
Sunpoet Po-Chuan Hsieh
b93d6dd26e - Use USES=zip 2014-03-08 00:12:20 +00:00
Sunpoet Po-Chuan Hsieh
1b2f9d03e3 - Use USES=zip 2014-03-08 00:12:13 +00:00
Sunpoet Po-Chuan Hsieh
b09fe7d26c - Use USES=zip 2014-03-08 00:12:09 +00:00
Martin Matuska
8a5b47b4f9 Horde package update:
horde 5.1.5 -> 5.1.6
imp 6.1.6 -> 6.1.7

Horde_Alarm 2.0.5 -> 2.1.0
Horde_Auth 2.1.1 -> 2.1.2
Horde_Autoloader 2.0.1 -> 2.1.0
Horde_Browser 2.0.4 -> 2.0.5
Horde_Crypt 2.4.0 -> 2.4.1
Horde_Date 2.0.7 -> 2.0.8
Horde_Dav 1.0.3 -> 1.0.4
Horde_Db 2.0.4 -> 2.1.0
Horde_Editor 2.0.3 -> 2.0.4
Horde_Form 2.0.6 -> 2.0.7
Horde_Group 2.0.2 -> 2.0.3
Horde_Imap_Client 2.18.4 -> 2.18.6
Horde_SessionHandler 2.2.3 -> 2.2.4
Horde_Share 2.0.4 -> 2.0.5
Horde_Url 2.2.1 -> 2.2.2
Horde_Vfs 2.1.2 -> 2.2.0
2014-03-07 21:52:57 +00:00
Olli Hauer
f3b64b5d67 - change maintainer to Eero Haenninen <fax@nohik.ee> [1]
[1] Andrea (old maintainer) don't use the module at the moment
    and Eero (new maintainer) agreed to take over via PM.
2014-03-07 20:39:52 +00:00
Rene Ladan
0bb9429996 No need any longer to remove the Courgette tests from the unit tests. 2014-03-07 19:58:13 +00:00
Rene Ladan
b6ada3d868 Bump PORTREVISION to prevent checksum failures when downloading the
non-rerolled distribution file.

Use PORTVERSION instead of DISTVERSION while here.
2014-03-07 18:31:57 +00:00
Rene Ladan
bd364a9f1e Switch to using Google's tarball for both the browser and the test data.
This removes one chain in the link of trust since the tarball is no longer
modified and rerolled locally.

This means the Courgette code is now included, but it is only compiled and
used on Windows platforms to distribute binary updates.

Legal documentation:
http://law.justia.com/cases/federal/district-courts/massachusetts/madce/1:2009cv11813/125212/47/

Discussed with: portmgr/core (tabthorpe), FreeBSD Foundation (gnn)
2014-03-07 18:25:34 +00:00
Wen Heping
d74d475c8d - Fix build 2014-03-07 04:53:19 +00:00
Kevin Lo
5663836f96 Update to 6.0.2 2014-03-07 01:43:11 +00:00
Juergen Lock
f98f27680c - Add missing deps.
- Add clang fixes cherry-picked from git head. [1]

PR:		ports/186894
Submitted by:	Mitja <lumiwa@gmail.com>
Obtained from:	http://git.videolan.org/?p=npapi-vlc.git;a=log [1]
2014-03-06 22:29:15 +00:00
Pawel Pekala
d2df1e04e0 - Update to version 4.9 [1]
- Use options helpers, subs
- Add staging support

PR:		ports/186717 [1]
Submitted by:	Zane C.B-H. <vvelox@vvelox.net>
Approved by:	maintainer
2014-03-06 20:29:47 +00:00
Sunpoet Po-Chuan Hsieh
2c7b8bf0bd - Remove outdated PERL_LEVEL check
With hat:	perl
2014-03-06 18:51:17 +00:00
Tijl Coosemans
15337d471b - Fix compilation with newer glib20.
- Prefer libc iconv over libiconv.

PR:		ports/186948
2014-03-06 18:21:04 +00:00
Pawel Pekala
1ccf7416c6 - Update to 2.1.0
- Fix to PHP extension list
- Clean-up of option handling code
- Add staging support

PR:		ports/187262
Submitted by:	maintainer
2014-03-06 17:05:01 +00:00
Rene Ladan
1f941f58c2 www/chromium: Update to 33.0.1750.146
Security:	http://vuxml.org/freebsd/b4023753-a4ba-11e3-bec2-00262d5ed8ee.html
MFH:		2014Q1
2014-03-06 07:10:02 +00:00
Olli Hauer
989f930358 - update to version 2.1.4
- unbreak port

PR:		ports/187270
Submitted by:	Jeff Lawson <jeff.lawson@flightaware.com>
Approved by:	Peter Lai <cowbert@gmail.com> (maintainer)
2014-03-06 06:09:38 +00:00
Sergey A. Osokin
c69cf0332f Update from 1.5.10 to 1.5.11.
<ChangeLog>

*) Security: memory corruption might occur in a worker process on 32-bit
   platforms while handling a specially crafted request by
   ngx_http_spdy_module, potentially resulting in arbitrary code
   execution (CVE-2014-0088); the bug had appeared in 1.5.10.
   Thanks to Lucas Molas, researcher at Programa STIC, Fundación Dr.
   Manuel Sadosky, Buenos Aires, Argentina.

*) Feature: the $ssl_session_reused variable.

*) Bugfix: the "client_max_body_size" directive might not work when
   reading a request body using chunked transfer encoding; the bug had
   appeared in 1.3.9.
   Thanks to Lucas Molas.

*) Bugfix: a segmentation fault might occur in a worker process when
   proxying WebSocket connections.

*) Bugfix: a segmentation fault might occur in a worker process if the
   ngx_http_spdy_module was used on 32-bit platforms; the bug had
   appeared in 1.5.10.

*) Bugfix: the $upstream_status variable might contain wrong data if the
   "proxy_cache_use_stale" or "proxy_cache_revalidate" directives were
   used.
   Thanks to Piotr Sikora.

*) Bugfix: a segmentation fault might occur in a worker process if
   errors with code 400 were redirected to a named location using the
   "error_page" directive.

*) Bugfix: nginx/Windows could not be built with Visual Studio 2013.

</ChangeLog>
2014-03-06 00:07:54 +00:00
Sergey A. Osokin
55db6ebbc0 Update from 1.4.5 to 1.4.6.
<ChangeLog>

*) Bugfix: the "client_max_body_size" directive might not work when
   reading a request body using chunked transfer encoding; the bug had
   appeared in 1.3.9.
   Thanks to Lucas Molas.

*) Bugfix: a segmentation fault might occur in a worker process when
   proxying WebSocket connections.

</ChangeLog>
2014-03-06 00:01:07 +00:00
Mathieu Arnold
5e768b9a3f Reset maintainer, bounces.
<mi@aldan.algber.com>: Host or domain name not found. Name service error for
    name=aldan.algber.com type=AAAA: Host not found

Sponsored by:	Absolight
2014-03-05 23:13:40 +00:00
Sunpoet Po-Chuan Hsieh
104dd8c99d - Update to 4.86
Changes:	http://search.cpan.org/dist/Mojolicious/Changes
2014-03-05 22:00:02 +00:00
Antoine Brodin
ff0b858698 Chase www/aolserver deprecation 2014-03-05 18:19:06 +00:00
Barbara Guida
bc6db4794f Update to 1.12.7
Approved by:	flo (mentor, implicit)
2014-03-05 18:09:15 +00:00
Barbara Guida
42e2b2e69f Update to 2.5.1
Approved by:	flo (mentor, implicit)
2014-03-05 17:55:54 +00:00
Thierry Thomas
75f6614f43 Fix the build with clang.
PR:		ports/182834
Submitted by:	"Julian H. Stacey" <jhs (at) berklix.com>
Rewritten by:	maintainer
2014-03-05 14:47:32 +00:00
Philippe Audeoud
6a65993e4a - Mark as deprecated because www/privoxy natively supports ipv6
PR:		ports/176816
Submitted by:	Fabian Keil <fk@fabiankeil.de>
Approved by:	maintainer timed out
2014-03-05 13:44:00 +00:00
Baptiste Daroussin
38eb08eec1 Enforce using libevent2 via the compat API (libevent2 performs way better, libevent1 should die in short term) 2014-03-05 13:21:16 +00:00
Rene Ladan
d4644e39a8 Forgot to commit a chunk for extra-patch-gcc in r347055 2014-03-05 08:25:53 +00:00
Max Brazhnikov
f3f8c20d6a KDE/FreeBSD team presents KDE SC 4.12.3 and KDE Workspace 4.11.7!
deskutils/kdepim4:
- Add depedency on coreutils, kleopatra needs md5sum and sha1sum programs [1]

misc/kdehier4:
- add tests directory (r343428 commit to Templates/BSD.local.dist)

security/kwallet:
- moved to security/kwalletmanager (renamed upstream)

x11/kdelibs:
- remove workaround, which is not needed after global fix in
  Mk/bsd.kde4.mk (r315373)

PR:		ports/187259 [1]
Submitted by:	Tobias Berner <tcberner@gmail.com>
2014-03-04 19:15:39 +00:00
Thomas Abthorpe
ce7e5808ac - Reassign to the heap at maintainer's request 2014-03-04 18:29:44 +00:00
Rene Ladan
6524f66fba Fix build on 8.4 (which uses GCC now because of c++11-lib)
Instead of removing the -Wno-unknown-warning-option, split this out in a
Clang specific version and a GCC specific version (yay).
Submitted by:	George Mitchell via freebsd-ports
2014-03-04 18:27:45 +00:00
Thomas Abthorpe
284cd479c9 - Reassign to ruby@, at maintainer's request
With hat:	portmgr
2014-03-04 18:26:22 +00:00
Antoine Brodin
cbbf851553 - Stage support
- Switch from easy_install to install
- Use PYDISTUTILS_AUTOPLIST
2014-03-04 16:39:32 +00:00
Antoine Brodin
04f461effb - Stage support
- Switch from easy_install to install
- Use PYDISTUTILS_AUTOPLIST
2014-03-04 16:30:53 +00:00
Sunpoet Po-Chuan Hsieh
d54ac6dcf3 - Restore OPTIONS_DEFINE
Approved by:	portmgr (blanket)
2014-03-04 15:55:54 +00:00
Martin Wilke
003292ff2b - Stage support 2014-03-04 15:40:48 +00:00
Martin Wilke
6a3717567f - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-04 15:40:32 +00:00
Martin Wilke
c578afabf3 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-04 15:40:03 +00:00
Martin Wilke
146478530c - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-04 15:39:47 +00:00
Martin Wilke
c066899194 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-04 15:38:41 +00:00
Antoine Brodin
0dbb58e2ed Deprecate: Unmaintained, interactive and restricted 2014-03-04 13:32:28 +00:00
Antoine Brodin
a1e626a6d6 - Use PYDISTUTILS_AUTOPLIST (generated package was empty)
- Remove infozip dependency
2014-03-04 11:36:53 +00:00
Antoine Brodin
61ebc9b643 - Use PYDISTUTILS_AUTOPLIST (generated package was empty)
- Remove infozip dependency
2014-03-04 11:29:45 +00:00
Dirk Meyer
954b32d73f - remove broken MANPREFIX
- update LICENSE
2014-03-04 06:52:19 +00:00
Dirk Meyer
280380c162 - remove broken MANPREFIX 2014-03-04 06:51:37 +00:00
Thomas Abthorpe
f1c9f1c38f - Set EXPIRATION_DATE and mark DEPRECATED, at maintainer's request 2014-03-03 20:34:11 +00:00
Sunpoet Po-Chuan Hsieh
144b6642b7 - Add LICENSE
- Add MYSQL option
- Convert to new options helper
- Remove GALLERY2DIR
- Support STAGEDIR
- Reformat pkg-descr
2014-03-03 17:05:55 +00:00
Max Brazhnikov
e99748262f Add new port www/otter-browser:
Otter Browser, project aiming to recreate classic Opera (12.x) UI using Qt 5.

WWW: http://otter-browser.org/

Submitted by:	Tobias Berner <tcberner@gmail.com> via kde-freebsd maillist
2014-03-03 16:53:06 +00:00
Max Brazhnikov
4cd1e8830e KDE/FreeBSD team is happy to present Qt 5 in ports!
Alberto Villa (avilla@) has done all the hard work to create Qt 5 ports.
Trivial update from 5.2.0-beta1 to 5.2.1 by me.

Special thanks for Adriaan de Groot <groot@kde.org> for his assistance for
Qt-5.2.0 update.

Approved by:	portmgr (bapt) (for Mk/bsd.port.mk)
2014-03-03 16:50:32 +00:00
Martin Wilke
ccf6bcb926 - Add a workaround to fix conflicts with tests/__init__.py
Reported by:	bdrewery
Obtained from:	macports
2014-03-03 03:19:03 +00:00
Martin Wilke
1785a5a7e9 - Stage support
- Generate auto-plist
2014-03-03 03:14:45 +00:00
Baptiste Daroussin
66d908d5d3 Convert to USES=libtool 2014-03-02 23:07:46 +00:00
Ruslan Makhmatkhanov
290bc6a46e www/py-werkzeug: support staging and general clean-up
- clarify license (BSD3C)
- do not use easy_install for installation and convert to auto-generated packing list
- add staging support
- install examples into staging area uncoditionally and remove EXAMPLES option
- remove inclusion of devel/py-virtualenv/files/py3k-fix-pkg-plist.inc - it's implemented in bsd.python.mk

Approved by:	portmgr (blanket)
2014-03-02 22:53:22 +00:00
Olli Hauer
b4251833a4 - fix commit r346541
Pointyhat to: miwi
2014-03-02 21:51:34 +00:00
Olli Hauer
7dc50dd148 - update to version 10.29
Changes:
Version 10.29
 - Supports IPv6 clients.

Version 10.28
 - Fixed: QS_ClientEventLimit did overwrite counters of other
   clients if multiple events have been configured.

Version 10.27
 - qslog features the option "-pu" and "-puc" used to gather
   request information on a per URL basis.
 - Fixed: Wrong includes within the support utilities.
 - Extends QS_ClientSerialize max. timeout from 1 to 5 minutes.

Version 10.26
 - QS_ClientSerialize supports the QS_ClientIpFromHeader directive.
 - Refactor method used to determine redirect port (user tracking)
   supporting servers not using virtual hosts.
 - Fixed: QS_UserTrackingCookieName uses correct server_rec to
   retrieve configuration.
 - Hook implementing user tracking is now called after mod_unique_id.
 - Slightly changed unique-id generator.
 - Adds fflush() to qsgrep utility when writing data to stdout.

Version 10.25
 - QS_EventLimitCount writes the current value to the process
   environment variables.
 - Fixed: QS_[Cond]ClientEventLimitCount logs request id and propagtes
   message code (067) to the QS_ErrorNotes variable.
 - New variable QS_IPConn representing the number of connections
   opened from the very same source IP (works in conjunction with
   QS_SrvMaxConnPerIP only).

Version 10.24
 - New directive QS_CondClientEventLimitCount.
 - QS_SrvMinDataRate: limits the max. data rate to the configured
   value (prevents invalid rate due to misconfiguration server or
   died child process).

Version 10.23
 - Fixed: QS_ClientEventLimitCount log message 067 contains now
   the IP address of the request header if QS_ClientIpFromHeader
   is used.
 - QS_SetEnvRes: supports multiple variables with the same name.

Version 10.22
 - Process QS_SetEnvResHeader(Match) and QS_SetEnvRes at error
   filter too.

Version 10.21
 - Fixed: qslogger may had detected the wrong message severity.
 - Adds debug message when detecting "NullConnection" events.
 - Built-in request header rules: adapt If-Match, If-None-Match,
   Cookie, and Cookie2 HTTP header patterns.

Version 10.20
 - Fixed: QS_CondLocRequestLimitMatch did work only if other QS_Loc*
   directive had been configured.

Version 10.19
 - New directive QS_RedirectIf.

Version 10.18
 - QS_ClientEventLimitCount may be cleared by environment
   variable (suffixed by "_Clear", e.g. QS_Limit_Clear).

Version 10.17
 - QS_ClientEventLimitCount supports unlimited number of events.
 - Stores the value of the QS_ClientEventLimitCount variables as
   environment variables suffixed by "_Counter", e.g. QS_Limit_Counter
   for the default QS_Limit variable, in order to be processed by
   other rules.
 - Add Content-Security-Policy to the default response header
   white list.
 - qslog features enhanced "-pc" mode providing more information:
   * Collects content type information (%{content-type}o).
   * Duration between the first and the last request.
   * Average response in ms.
   * "ci" indicates if we have seen the client at the end or the
     beginning of the file (maybe not all requests in the log
     due to log rotation).
   * Bytes downloaded.
   * Writes status characters to stderr.
   * HTTP request methods (GET/POST)
- qsgeo features option "-l" and is able to process "qslog -pc" files.

Version 10.16
 - qslog adds 'E' (event identifiers) to the format string.
   QSEVENTPATH environment variable specifies a file containing
   all known event names (comma separated list).
 - qslog average counter (a/A) count only if a numeric value
   is available.
 - qssing does not try to execute invalid program name (space only).

PR:		ports/187132
Submitted by:	Eero Haenninen <fax@nohik.ee>
Approved by:	Andrea Cervesato <andrea@cervesato.it> (maintainer)
2014-03-02 21:25:30 +00:00
Ruslan Makhmatkhanov
98cd15f284 Do not use devel/py-virtualenv/files/py3k-fix-pkg-plist.inc - this functionality
was included into bsd.python.mk
2014-03-02 19:51:02 +00:00
Dmitry Sivachenko
8b0799261e Update to version 0.019. 2014-03-02 09:45:12 +00:00
Thomas Abthorpe
50825c3e6b - Update to 3.11
- Convert to STAGEDIR

PR:		ports/186083
Submitted by:	James Bailie <jimmy@mammothcheese.ca> (maintainer)
2014-03-02 05:47:53 +00:00
Thomas Abthorpe
2350e2caec - Reassign ports to the heap
- Thank you hq@ for your years of service!
2014-03-02 05:22:25 +00:00
John Marino
5240dd5347 www/phalcon: Fix DragonFly build (No-Op for FreeBSD)
DragonFly 64-bit platform is called "x86_64", not "amd64".
Add this option to the variable substition -- and move this
to a separate line for better visibility.  No-Op and no bump
for FreeBSD.
2014-03-01 18:52:55 +00:00
Martin Wilke
4330bf9ddf - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:15:00 +00:00
Martin Wilke
73bdcbc9a7 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:14:28 +00:00
Martin Wilke
21856a5612 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:14:09 +00:00
Martin Wilke
8176cb081f - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:12:21 +00:00
Martin Wilke
570eedc4de - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:12:11 +00:00
Martin Wilke
8cb61e7fd9 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:11:12 +00:00
Martin Wilke
25626329a9 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:10:56 +00:00
Martin Wilke
f6b2331795 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:10:10 +00:00
Martin Wilke
c1965cf77c - Stage support 2014-03-01 18:09:52 +00:00
Martin Wilke
74bed7e8de - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:06:10 +00:00
Martin Wilke
ba8ce3db58 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:05:46 +00:00
Martin Wilke
806e7b95e3 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:04:57 +00:00
Martin Wilke
4e9e09e15f - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:03:49 +00:00
Martin Wilke
a34df48cf0 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:03:21 +00:00
Martin Wilke
9f8a27fdf1 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:02:01 +00:00
Martin Wilke
ec37e07996 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:01:19 +00:00
Martin Wilke
31c64d8950 - Convert to autoplist
- Stage support
- Bump PORTREVISION
2014-03-01 18:00:37 +00:00
Sunpoet Po-Chuan Hsieh
7098f7fa30 - Add LICENSE
- Remove outdated PERL_LEVEL check
2014-03-01 17:36:11 +00:00
Sunpoet Po-Chuan Hsieh
a911f403a5 - Add LICENSE
- Remove outdated PERL_LEVEL check
2014-03-01 17:24:54 +00:00
Juergen Lock
c2ec085934 - Stagify.
- Fix plist now that we care about /var .
2014-03-01 15:53:33 +00:00
Dmitry Sivachenko
efa69d9536 Update to version 0.8 2014-03-01 14:34:24 +00:00
Juergen Lock
47452dcb43 - Finally stagify the vdr ports. \o/
- Use new LIB_DEPENDS syntax.
- Change multimedia/vdr-plugins defaults and bump PORTREVISION for it.
  (switch from xvdr to vnsiserver and disable plugins depending on ffmpeg0)
2014-03-01 12:21:13 +00:00
John Marino
5333d3d5cb www/emacs-w3m: Mark jobs unsafe 2014-03-01 07:47:08 +00:00
Rene Ladan
ef50dbb213 PHP 5.2 has reached it end-of-life in the FreeBSD Ports Tree, time
to say goodbye.  Upstream unsupported it since 2011-01-06 (see
http://php.net/eol.php )

Strip PHP 5.2 out of Mk/bsd.php.mk
2014-03-01 00:06:29 +00:00
Antoine Brodin
14c681ddae Mark more ports BROKEN
Error logs are available in the pkg-fallout archives

Reported by:	pkg-fallout since at least january 2014
2014-02-28 19:45:27 +00:00
Martin Wilke
4018da44c2 - Stage support 2014-02-28 16:22:01 +00:00
Martin Wilke
a8f5bb373f - Stage support 2014-02-28 16:21:41 +00:00
Martin Wilke
4b9a981018 - Stage support 2014-02-28 16:21:29 +00:00
Martin Wilke
87cd6bfc41 - Stage support 2014-02-28 16:21:19 +00:00
Martin Wilke
627a3c6b7e - Stage support 2014-02-28 16:21:05 +00:00
Martin Wilke
4ca3b43086 - Stage support 2014-02-28 16:20:44 +00:00
Martin Wilke
8bc0d7dd1a - Stage support 2014-02-28 16:20:30 +00:00
Martin Wilke
f03835c012 - Stage support 2014-02-28 16:20:17 +00:00
Martin Wilke
c9114bfa5b - Stage support 2014-02-28 16:20:06 +00:00
Martin Wilke
598a8b4631 - Stage support 2014-02-28 16:19:51 +00:00
Martin Wilke
5f060850fd - Stage support 2014-02-28 16:19:35 +00:00
Martin Wilke
22e99783a7 - Stage support 2014-02-28 16:19:22 +00:00
Martin Wilke
89ec234f6c - Stage support 2014-02-28 16:19:10 +00:00
Martin Wilke
962fd8298f - Stage support 2014-02-28 16:18:34 +00:00
Martin Wilke
13a61fcc92 - Stage support 2014-02-28 16:18:23 +00:00
Sunpoet Po-Chuan Hsieh
7b0f9f1d14 - Update to 4.0.18
Changes:	http://www.tinymce.com/develop/changelog/index.php?type=tinymce
2014-02-28 15:11:12 +00:00
Alex Dupre
41df6f9f7c Asynch HttpClient is a HTTP/1.1 compliant HTTP agent implementation based
on HttpCore NIO and HttpClient components. It is a complementary module
to Apache HttpClient intended for special cases where ability to handle a
great number of concurrent connections is more important than performance
in terms of a raw data throughput.

WWW: http://hc.apache.org/httpcomponents-asyncclient-4.0.x/
2014-02-28 13:13:09 +00:00
Rene Ladan
81200ec6d8 - Fix build on FreeBSD < 10, which need a C++11 library.
- Fix a strncpy() in a patch I wrote by actually allocating storage space fo
- Bump PORTREVISION

MFH:		2014Q1
2014-02-28 10:23:09 +00:00
Sunpoet Po-Chuan Hsieh
d6a81d4200 - Remove outdated PERL_LEVEL check 2014-02-28 01:58:16 +00:00
Sunpoet Po-Chuan Hsieh
1361e713b3 - Remove outdated PERL_LEVEL check 2014-02-28 01:58:11 +00:00
Sunpoet Po-Chuan Hsieh
ebdf16e1c0 - Add LICENSE
- Use COPYTREE_SHARE
- Support STAGEDIR
- Remove outdated PERL_LEVEL check
2014-02-28 00:24:17 +00:00
Sunpoet Po-Chuan Hsieh
c081f54fc1 - Add PORTSCOUT: reject developer releases 2014-02-27 23:16:02 +00:00
Rene Ladan
529cd25c5b Remove expired ports:
2014-02-26 www/trac-hierwiki: Runtime is broken, doesn't support Trac>0.11
2014-02-27 net-p2p/microdc2: Broken for more than 6 month
2014-02-27 www/openvrml: Broken for more than 6 month
2014-02-27 science/peekabot: Broken for more than 6 month
2014-02-27 misc/xbiso: Broken for more than 6 month
2014-02-27 net/hornetq: Broken for more than 6 month
2014-02-27 sysutils/slmon: Broken for more than 6 month
2014-02-27 www/trac-revtree: Broken for more than 6 months
2014-02-27 security/crack: Broken for more than 6 month
2014-02-27 sysutils/graphicboot: Broken for more then 6 month
2014-02-27 graphics/kgraphviewer: Broken for more than 6 month
2014-02-27 sysutils/ckl: Broken for more than 6 month
2014-02-27 japanese/trac: Broken for more than 6 month
2014-02-27 lang/opa: Broken for more than 6 month
2014-02-27 sysutils/mmore: Broken for more than 6 month
2014-02-27 www/trac-announcer: Broken for more than 6 month
2014-02-27 22:39:42 +00:00
Sunpoet Po-Chuan Hsieh
81a8564c01 - Update to 4.85
Changes:	http://search.cpan.org/dist/Mojolicious/Changes
2014-02-27 20:52:53 +00:00
Martin Matuska
a3d596d6b9 Update mail/pear-Horde_Imap_Client to 2.18.4
Update www/pear-Horde_Http to 2.0.5
2014-02-27 15:45:08 +00:00
Wen Heping
52ab6f4bf5 - Update to 1.11.10
- Add LICENSE
- Stage support
2014-02-27 13:49:08 +00:00
Emanuel Haupt
6564b8045a Support staging 2014-02-27 13:35:11 +00:00
Emanuel Haupt
a9e79e79a9 - Support staging
- Use shebangfix
- Define EXAMPLES option
2014-02-27 13:32:50 +00:00
Alex Dupre
78941f8d94 Update to 4.3.3 release. 2014-02-27 13:20:11 +00:00
Alex Dupre
2998538cf4 Fix link. 2014-02-27 13:19:50 +00:00
Emanuel Haupt
4c8380565e - Support staging
- Use shebangfix
- Define DOCS option
2014-02-27 13:08:38 +00:00
Emanuel Haupt
91e42cc7ad Support staging 2014-02-27 13:02:27 +00:00
Emanuel Haupt
d24a0f1333 Support staging 2014-02-27 13:00:16 +00:00
Wen Heping
538d39c684 - Update to 0.2.5 2014-02-27 09:45:26 +00:00
Sunpoet Po-Chuan Hsieh
65f8d056a0 - Update to 4.0.17
Changes:	http://www.tinymce.com/develop/changelog/index.php?type=tinymce
2014-02-27 08:21:15 +00:00
Olli Hauer
218bce8643 - update to version 1.3.4
- do not use USES=scons [1]
- adjust MASTER_SITES
- adopt new LIB_DEPENDS notation

[1] The upstream Scons script is terrible broken, the ports framework
    sets args unknown to the SConstruct script and every unknown arg
    breaks the script :( Unluckily I haven't found a way to strip the
    breaking args with our shiny USES=scons framework)

Changes:
Serf 1.3.4 [2014-02-08, from /tags/1.3.4, rxxxx]
  Fix issue #119: Endless loop during ssl tunnel setup with Negotiate authn
  Fix issue #123: Can't setup ssl tunnel which sends Connection close header
  Fix a race condition when initializing OpenSSL from multiple threads (r2263)
  Fix issue #138: Incorrect pkg-config file when GSSAPI isn't configured
2014-02-26 20:59:23 +00:00
Dmitry Sivachenko
301fffd3f3 Update to version 2.0.2. 2014-02-26 20:42:52 +00:00
Martin Wilke
b7118810a5 - Stage support
- Support autoplist
- Bump PORTREV
2014-02-26 07:21:43 +00:00
Martin Wilke
399eb55e5c - Stage support
- Convert to Autoplist
- Bump PORTREV
2014-02-26 06:12:19 +00:00
Martin Wilke
320f84ff25 - Fix stage support 2014-02-26 06:11:38 +00:00
Rene Ladan
db5399d0fd Add one more forgotten patch to fix the build.
Submitted by:	nox
2014-02-26 00:35:54 +00:00
Rene Ladan
e17145ae38 Add a patch that slipped through first to try to fix the build once more ...
Noticed by:	John Carr, nox
2014-02-26 00:13:30 +00:00
Rene Ladan
b21c619912 Fix manual patch editing.
Pointy hat:	rene
Submitted by:	Thomas Hoffmann via freebsd-chromium
2014-02-25 20:50:50 +00:00
Rene Ladan
84acf4957d Update distinfo for r346060
Noticed by:	antoine
MFH:		2014Q1
2014-02-25 19:21:00 +00:00
Rene Ladan
c055a2984b www/chromium: Update to 33.0.1750.117 [0]
Fix the crash when closing the history/settings tab [1]

Submitted by:	John Carr <jfc@mit.edu> via freebsd-chromium [1]
Security:	http://vuxml.org/freebsd/9dd47fa3-9d53-11e3-b20f-00262d5ed8ee.html [0]
2014-02-25 18:58:03 +00:00
Sunpoet Po-Chuan Hsieh
81f49865db - Use ECHO_CMD instead of ECHO 2014-02-25 15:40:12 +00:00
Sunpoet Po-Chuan Hsieh
bbc00a1847 - Support STAGEDIR
- While I'm here, use single space after WWW:

Approved by:	portmgr (blanket)
2014-02-25 14:59:31 +00:00
TAKATSU Tomonari
0cbe65e47c - Repocopy print/py-reportlab to print/py-reportlab1
to preserve version 1.x and to update to 3.0

  print/py-reportlab:
    - Update print/py-reportlab to 3.0 based on print/py-reportlab2
    - Support STAGEDIR
    - Use PYDISTUTILS_AUTOPLIST
      * Remove pkg-plist, accordingly
    - Set CONFLICTS
    - Add PORTSCOUT
    - Replace tab with a single space after WWW: in pkg-descr

  print/py-reportlab1:
    - Support STAGEDIR
    - Add PKGNAMESUFFIX not to duplicate ports with the same name
    - Set CONFLICTS
    - Use PYDISTUTILS_AUTOPLIST
      * Remove pkg-plist, accordingly
    - Make use of PORTDOCS
    - Set OPTIONS_DEFINE explicitly
    - Fix include statement
    - Make docs unconditional to stage
    - Replace tab with a single space after WWW: in pkg-descr

  print/py-reportlab2:
    - Update CONFLICTS
    - Set PORTSCOUT

  dependent ports:
    - Switch dependency from print/py-reportlab to print/py-reportlab1
      * biology/py-biopython
      * deskutils/gourmet
      * deskutils/griffith
      * games/pythonsudoku
      * misc/pdfmap
      * print/py-trml2pdf
      * www/py-satchmo

PR:		ports/186970
Submitted by:	tota (myself)
Approved by:	Muhammad Moinur Rahman (maintainer)
2014-02-25 12:44:10 +00:00