cvs commit: ports/devel/itext Makefile ports/devel/itext/files patch-core_com_lowagie_text_pdf_PdfStamperImp.java

2012-07-12 Thread Alex Dupre
ale 2012-07-12 08:32:12 UTC

  FreeBSD ports repository

  Modified files:
devel/itext  Makefile 
  Added files:
devel/itext/files
 patch-core_com_lowagie_text_pdf_PdfStamperImp.java 
  Log:
  Add a patch to process broken PDFs (Info dictionary shall be an indirect 
reference).
  
  Revision  ChangesPath
  1.48  +1 -1  ports/devel/itext/Makefile
  1.1   +22 -0 
ports/devel/itext/files/patch-core_com_lowagie_text_pdf_PdfStamperImp.java (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/lang/gcc48 Makefile distinfo

2012-07-12 Thread Gerald Pfeifer
gerald  2012-07-12 08:37:49 UTC

  FreeBSD ports repository

  Modified files:
lang/gcc48   Makefile distinfo 
  Log:
  Update to the 20120708 snapshot of GCC 4.8.0.
  
  Revision  ChangesPath
  1.539 +1 -1  ports/lang/gcc48/Makefile
  1.402 +2 -2  ports/lang/gcc48/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/mail/exim Makefile distinfo options pkg-message ports/mail/exim/files patch-pass-fd-to-tcpwrappers patch-src::EDITME

2012-07-12 Thread Eygene Ryabinkin
rea 2012-07-12 09:05:52 UTC

  FreeBSD ports repository

  Modified files:
mail/eximMakefile distinfo options pkg-message 
mail/exim/files  patch-src::EDITME 
  Added files:
mail/exim/files  patch-pass-fd-to-tcpwrappers 
  Log:
  mail/exim: upgrade to 4.80
  
  Extracts from the NewStuff,
ftp://exim.inode.at/exim/ChangeLogs/NewStuff-4.80
  
   1. New authenticator driver, "gsasl".  Server-only (at present).
  This is a SASL interface, licensed under GPL, which can be found at
  http://www.gnu.org/software/gsasl/.
  This system does not provide sources of data for authentication, so
  careful use needs to be made of the conditions in Exim.
  
   2. New authenticator driver, "heimdal_gssapi".  Server-only.
  A replacement for using cyrus_sasl with Heimdal, now that $KRB5_KTNAME
  is no longer honoured for setuid programs by Heimdal.  Use the
  "server_keytab" option to point to the keytab.
  
   3. The "pkg-config" system can now be used when building Exim to reference
  cflags and library information for lookups and authenticators, rather
  than having to update "CFLAGS", "AUTH_LIBS", "LOOKUP_INCLUDE" and
  "LOOKUP_LIBS" directly.  Similarly for handling the TLS library support
  without adjusting "TLS_INCLUDE" and "TLS_LIBS".
  
  In addition, setting PCRE_CONFIG=yes will query the pcre-config tool to
  find the headers and libraries for PCRE.
  
   4. New expansion variable $tls_bits.
  
   5. New lookup type, "dbmjz".  Key is an Exim list, the elements of which will
  be joined together with ASCII NUL characters to construct the key to pass
  into the DBM library.  Can be used with gsasl to access sasldb2 files as
  used by Cyrus SASL.
  
   6. OpenSSL now supports TLS1.1 and TLS1.2 with OpenSSL 1.0.1.
  
  Avoid release 1.0.1a if you can.  Note that the default value of
  "openssl_options" is no longer "+dont_insert_empty_fragments", as that
  increased susceptibility to attack.  This may still have interoperability
  implications for very old clients (see version 4.31 change 37) but
  administrators can choose to make the trade-off themselves and restore
  compatibility at the cost of session security.
  
   7. Use of the new expansion variable $tls_sni in the main configuration 
option
  tls_certificate will cause Exim to re-expand the option, if the client
  sends the TLS Server Name Indication extension, to permit choosing a
  different certificate; tls_privatekey will also be re-expanded.  You must
  still set these options to expand to valid files when $tls_sni is not set.
  
  The SMTP Transport has gained the option tls_sni, which will set a 
hostname
  for outbound TLS sessions, and set $tls_sni too.
  
  A new log_selector, +tls_sni, has been added, to log received SNI values
  for Exim as a server.
  
   8. The existing "accept_8bitmime" option now defaults to true.  This means
  that Exim is deliberately not strictly RFC compliant.  We're following
  Dan Bernstein's advice in http://cr.yp.to/smtp/8bitmime.html by default.
  Those who disagree, or know that they are talking to mail servers that,
  even today, are not 8-bit clean, need to turn off this option.
  
   9. Exim can now be started with -bw (with an optional timeout, given as
  -bw).  With this, stdin at startup is a socket that is
  already listening for connections.  This has a more modern name of
  "socket activation", but forcing the activated socket to fd 0.  We're
  interested in adding more support for modern variants.
  
  10. ${eval } now uses 64-bit values on supporting platforms.  A new "G" suffix
  for numbers indicates multiplication by 1024^3.
  
  11. The GnuTLS support has been revamped; the three options gnutls_require_kx,
  gnutls_require_mac & gnutls_require_protocols are no longer supported.
  tls_require_ciphers is now parsed by gnutls_priority_init(3) as a priority
  string, documentation for which is at:
  http://www.gnu.org/software/gnutls/manual/html_node/Priority-Strings.html
  
  SNI support has been added to Exim's GnuTLS integration too.
  
  For sufficiently recent GnuTLS libraries, ${randint:..} will now use
  gnutls_rnd(), asking for GNUTLS_RND_NONCE level randomness.
  
  12. With OpenSSL, if built with EXPERIMENTAL_OCSP, a new option tls_ocsp_file
  is now available.  If the contents of the file are valid, then Exim will
  send that back in response to a TLS status request; this is OCSP Stapling.
  Exim will not maintain the contents of the file in any way: administrators
  are responsible for ensuring that it is up-to-date.
  
  See "experimental-spec.txt" for more details.
  
  13. ${lookup dnsdb{ }} supports now SPF record types. They are handled
  identically to TXT record lookups.
  
  14. New expansion variable $tod_epoch_l for higher-precision t

cvs commit: ports/www/chromium Makefile distinfo pkg-plist ports/www/chromium/files patch-base__allocator__allocator.gyp patch-base__process_util_posix.cc patch-base__sys_byteorder.h patch-build__comm

2012-07-12 Thread Rene Ladan
rene2012-07-12 09:19:26 UTC

  FreeBSD ports repository

  Modified files:
www/chromium Makefile distinfo pkg-plist 
www/chromium/files   patch-base__sys_byteorder.h 
 patch-build__common.gypi 
 patch-chrome__browser__chrome_browser_main_posix.cc 
 
patch-chrome__browser__chrome_content_browser_client.cc 
 patch-chrome__browser__process_singleton.h 
 patch-chrome__browser__shell_integration_linux.cc 
 
patch-chrome__browser__ui__webui__chrome_web_ui_controller_factory.cc 
 patch-content__renderer__webplugin_delegate_proxy.cc 
 patch-net__proxy__proxy_service.cc 
 patch-third_party__WebKit__Source__WebCore__config.h 
 patch-tools__gyp__pylib__gyp__common.py 
  Added files:
www/chromium/files   
 
patch-chrome__browser__extensions__api__api_resource_controller.cc 
 patch-chrome__chrome_browser.gypi 
 patch-chrome__chrome_browser_extensions.gypi 
 patch-chrome__common__extensions__api__api.gyp 
 patch-chrome__renderer__pepper__ppb_pdf_impl.cc 
 
patch-content__browser__web_contents__web_contents_impl.cc 
 patch-content__public__common__sandbox_init.h 
 patch-content__test__layout_browsertest.cc 
 patch-tools__clang__scripts__plugin_flags.sh 
 patch-ui__base__l10n__l10n_util.cc 
 patch-ui__surface__surface.gyp 
 patch-ui__surface__transport_dib.h 
 patch-ui__surface__transport_dib_freebsd.cc 
 patch-ui__surface__transport_dib_linux.cc 
  Removed files:
www/chromium/files   patch-base__allocator__allocator.gyp 
 patch-base__process_util_posix.cc 
 patch-chrome__renderer__chrome_ppb_pdf_impl.cc 
 patch-chrome__test__ui__ui_layout_test.cc 
 patch-content__browser__tab_contents__tab_contents.cc 
 patch-content__content_browser.gypi 
 patch-net__base__listen_socket_unittest.cc 
 patch-ui__gfx__surface__surface.gyp 
 patch-ui__gfx__surface__transport_dib.h 
 patch-ui__gfx__surface__transport_dib_freebsd.cc 
 patch-ui__gfx__surface__transport_dib_linux.cc 
  Log:
  Update to 20.0.1132.57
  
  Submitted by:   George Liaskos
  
  Revision  ChangesPath
  1.87  +5 -4  ports/www/chromium/Makefile
  1.42  +2 -2  ports/www/chromium/distinfo
  1.8   +0 -829
ports/www/chromium/files/patch-base__allocator__allocator.gyp (dead)
  1.4   +0 -34 
ports/www/chromium/files/patch-base__process_util_posix.cc (dead)
  1.2   +23 -5 ports/www/chromium/files/patch-base__sys_byteorder.h
  1.11  +5 -6  ports/www/chromium/files/patch-build__common.gypi
  1.2   +8 -8  
ports/www/chromium/files/patch-chrome__browser__chrome_browser_main_posix.cc
  1.6   +5 -5  
ports/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.cc
  1.1   +25 -0 
ports/www/chromium/files/patch-chrome__browser__extensions__api__api_resource_controller.cc
 (new)
  1.3   +14 -14
ports/www/chromium/files/patch-chrome__browser__process_singleton.h
  1.2   +9 -8  
ports/www/chromium/files/patch-chrome__browser__shell_integration_linux.cc
  1.2   +6 -6  
ports/www/chromium/files/patch-chrome__browser__ui__webui__chrome_web_ui_controller_factory.cc
  1.6   +21 -0 
ports/www/chromium/files/patch-chrome__chrome_browser.gypi (new)
  1.1   +11 -0 
ports/www/chromium/files/patch-chrome__chrome_browser_extensions.gypi (new)
  1.1   +11 -0 
ports/www/chromium/files/patch-chrome__common__extensions__api__api.gyp (new)
  1.2   +0 -29 
ports/www/chromium/files/patch-chrome__renderer__chrome_ppb_pdf_impl.cc (dead)
  1.1   +29 -0 
ports/www/chromium/files/patch-chrome__renderer__pepper__ppb_pdf_impl.cc (new)
  1.2   +0 -11 
ports/www/chromium/files/patch-chrome__test__ui__ui_layout_test.cc (dead)
  1.4   +0 -11 
ports/www/chromium/files/patch-content__browser__tab_contents__tab_contents.cc 
(dead)
  1.1   +11 -0 
ports/www/chromium/files/patch-content__browser__web_contents__web_contents_impl.cc
 (new)
  1.6   +0 -10 
ports/www/chromium/files/patch-content__content_browser.gypi (dead)
  1.1   +11 -0 
ports/www/chromium/files/patch-content__public__common__sandbox_init.h (new)
  1.5   +9 -9  
ports/www/chromium/files/patch-content__renderer__webplugin_del

cvs commit: ports/www/libmicrohttpd Makefile distinfo

2012-07-12 Thread Pietro Cerutti
gahr2012-07-12 11:54:47 UTC

  FreeBSD ports repository

  Modified files:
www/libmicrohttpdMakefile distinfo 
  Log:
  - Update to 0.9.20
  
  PR: 169100
  Submitted by:   gahr
  Approved by:maintainer (timeout > 15 days)
  
  Revision  ChangesPath
  1.12  +3 -3  ports/www/libmicrohttpd/Makefile
  1.8   +2 -2  ports/www/libmicrohttpd/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/audio/gmpc-mserver Makefile ports/multimedia/xbmc Makefile

2012-07-12 Thread Pietro Cerutti
gahr2012-07-12 11:56:24 UTC

  FreeBSD ports repository

  Modified files:
audio/gmpc-mserver   Makefile 
multimedia/xbmc  Makefile 
  Log:
  - Chase www/libmicrohttpd shlib version bump
  - Bump PORTREVISION
  
  Revision  ChangesPath
  1.19  +2 -2  ports/audio/gmpc-mserver/Makefile
  1.28  +1 -1  ports/multimedia/xbmc/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/devel Makefile ports/devel/cmake Makefile pkg-plist ports/devel/cmake-modules Makefile pkg-descr pkg-plist

2012-07-12 Thread Pietro Cerutti
gahr2012-07-12 12:00:13 UTC

  FreeBSD ports repository

  Modified files:
develMakefile 
devel/cmake  Makefile pkg-plist 
  Added files:
devel/cmake-modules  Makefile pkg-descr pkg-plist 
  Log:
  - Split devel/cmake port into devel/cmake and cmake/cmake-modules, in order
to keep Modules and Templates separated.
  
  Approved by:avilla (kde)
  
  Revision  ChangesPath
  1.5020+1 -0  ports/devel/Makefile
  1.1   +29 -0 ports/devel/cmake-modules/Makefile (new)
  1.1   +10 -0 ports/devel/cmake-modules/pkg-descr (new)
  1.1   +612 -0ports/devel/cmake-modules/pkg-plist (new)
  1.54  +9 -2  ports/devel/cmake/Makefile
  1.32  +0 -612ports/devel/cmake/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/devel/cmake/files patch-CMakeLists.txt

2012-07-12 Thread Pietro Cerutti
gahr2012-07-12 12:01:04 UTC

  FreeBSD ports repository

  Added files:
devel/cmake/filespatch-CMakeLists.txt 
  Log:
  - Do not install Modules or Templates from devel/cmake, now that we have
devel/cmake-modules
  
  Revision  ChangesPath
  1.1   +31 -0 ports/devel/cmake/files/patch-CMakeLists.txt (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/textproc/pootle Makefile pkg-descr

2012-07-12 Thread Alex Kozlov
ak  2012-07-12 12:14:53 UTC

  FreeBSD ports repository

  Modified files:
textproc/pootle  Makefile pkg-descr 
  Log:
  - Add conflicts
  - Convert to new options framework
  - Fix WWW in pkg-descr (thanks to Dru Lavigne)
  
  PR: ports/169727
  Submitted by:   Denis Pokataev  (maintainer)
  
  Revision  ChangesPath
  1.18  +14 -10ports/textproc/pootle/Makefile
  1.3   +1 -1  ports/textproc/pootle/pkg-descr
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/emulators/wine-gecko-devel Makefile distinfo

2012-07-12 Thread Alex Kozlov
ak  2012-07-12 12:39:46 UTC

  FreeBSD ports repository

  Modified files:
emulators/wine-gecko-devel Makefile distinfo 
  Log:
  - Update to 1.6
  
  PR: ports/169746
  Submitted by:   David Naylor  (maintainer)
  
  Revision  ChangesPath
  1.8   +1 -1  ports/emulators/wine-gecko-devel/Makefile
  1.6   +2 -2  ports/emulators/wine-gecko-devel/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/sysutils/battray Makefile distinfo

2012-07-12 Thread Frederic Culot
culot   2012-07-12 13:05:40 UTC

  FreeBSD ports repository

  Modified files:
sysutils/battray Makefile distinfo 
  Log:
  - Update to 1.5
  
  PR: ports/169793
  Submitted by:   Martin Tournoij  (maintainer)
  
  Revision  ChangesPath
  1.4   +1 -2  ports/sysutils/battray/Makefile
  1.3   +2 -2  ports/sysutils/battray/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/www/nginx-devel Makefile distinfo

2012-07-12 Thread Sergey A. Osokin
osa 2012-07-12 13:45:46 UTC

  FreeBSD ports repository

  Modified files:
www/nginx-devel  Makefile distinfo 
  Log:
  Update SPDY patch from version 46 to 47.
  
  Revision  ChangesPath
  1.487 +1 -1  ports/www/nginx-devel/Makefile
  1.421 +2 -2  ports/www/nginx-devel/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/math/proofgeneral Makefile ports/math/proofgeneral/files patch-doc-Makefile.doc

2012-07-12 Thread Alex Kozlov
ak  2012-07-12 14:05:30 UTC

  FreeBSD ports repository

  Modified files:
math/proofgeneralMakefile 
math/proofgeneral/files patch-doc-Makefile.doc 
  Log:
  - Fix build with new texi2html
  - Ignore attempts to compile with XEmacs, it is not supported by the 
ProofGeneral developers.
  
  PR: ports/169774
  Submitted by:   Timothy Beyer  (maintainer)
  
  Revision  ChangesPath
  1.31  +5 -3  ports/math/proofgeneral/Makefile
  1.5   +10 -1 ports/math/proofgeneral/files/patch-doc-Makefile.doc
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/textproc/weka Makefile distinfo

2012-07-12 Thread Alex Kozlov
ak  2012-07-12 14:14:15 UTC

  FreeBSD ports repository

  Modified files:
textproc/wekaMakefile distinfo 
  Log:
  - Update to 3.6.7
  
  PR: ports/169802
  Submitted by:   Simon Olofsson 
  
  Revision  ChangesPath
  1.16  +1 -1  ports/textproc/weka/Makefile
  1.12  +2 -2  ports/textproc/weka/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/japanese/font-migmix Makefile distinfo

2012-07-12 Thread Hiroki Sato
hrs 2012-07-12 15:56:37 UTC

  FreeBSD ports repository

  Modified files:
japanese/font-migmix Makefile distinfo 
  Log:
  Update to 20120411-2.
  
  Revision  ChangesPath
  1.6   +13 -13ports/japanese/font-migmix/Makefile
  1.5   +8 -8  ports/japanese/font-migmix/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/japanese/font-migu Makefile distinfo pkg-plist ports/japanese/font-migu/files 20-unhint-migu.conf 62-fonts-migu.conf pkg-install.in

2012-07-12 Thread Hiroki Sato
hrs 2012-07-12 15:57:13 UTC

  FreeBSD ports repository

  Modified files:
japanese/font-migu   Makefile distinfo pkg-plist 
japanese/font-migu/files 20-unhint-migu.conf 
 62-fonts-migu.conf pkg-install.in 
  Log:
  Update to 20120411-2.
  
  Revision  ChangesPath
  1.3   +13 -17ports/japanese/font-migu/Makefile
  1.3   +8 -12 ports/japanese/font-migu/distinfo
  1.2   +1 -3  ports/japanese/font-migu/files/20-unhint-migu.conf
  1.2   +1 -3  ports/japanese/font-migu/files/62-fonts-migu.conf
  1.3   +1 -6  ports/japanese/font-migu/files/pkg-install.in
  1.3   +1 -13 ports/japanese/font-migu/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/japanese/font-ume Makefile distinfo

2012-07-12 Thread Hiroki Sato
hrs 2012-07-12 15:58:12 UTC

  FreeBSD ports repository

  Modified files:
japanese/font-umeMakefile distinfo 
  Log:
  Update to 441.
  
  Revision  ChangesPath
  1.19  +2 -2  ports/japanese/font-ume/Makefile
  1.13  +2 -2  ports/japanese/font-ume/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/japanese/font-vlgothic Makefile distinfo

2012-07-12 Thread Hiroki Sato
hrs 2012-07-12 15:58:34 UTC

  FreeBSD ports repository

  Modified files:
japanese/font-vlgothic Makefile distinfo 
  Log:
  Update to 20120629.
  
  Revision  ChangesPath
  1.32  +2 -2  ports/japanese/font-vlgothic/Makefile
  1.27  +2 -2  ports/japanese/font-vlgothic/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/japanese/font-motoya-al pkg-descr

2012-07-12 Thread Hiroki Sato
hrs 2012-07-12 15:57:48 UTC

  FreeBSD ports repository

  Modified files:
japanese/font-motoya-al pkg-descr 
  Log:
  Update repository URL.
  
  Revision  ChangesPath
  1.2   +1 -1  ports/japanese/font-motoya-al/pkg-descr
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/devel/arduino Makefile distinfo pkg-descr pkg-plist

2012-07-12 Thread Wesley Shields
wxs 2012-07-12 18:50:36 UTC

  FreeBSD ports repository

  Modified files:
devel/arduinoMakefile distinfo pkg-descr pkg-plist 
  Log:
  Update to 1.0.1.
  Convert to optionsNG.
  
  PR: ports/169790
  Submitted by:   wblock@ (maintainer)
  
  Revision  ChangesPath
  1.11  +11 -30ports/devel/arduino/Makefile
  1.7   +2 -2  ports/devel/arduino/distinfo
  1.4   +3 -0  ports/devel/arduino/pkg-descr
  1.8   +192 -148  ports/devel/arduino/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/security/snortsam/files snortsam.sh.in

2012-07-12 Thread Michael Scheidell
scheidell2012-07-12 19:51:43 UTC

  FreeBSD ports repository

  Modified files:
security/snortsam/files snortsam.sh.in 
  Log:
  - remove rcscript REQUIRE: LOGIN
  
  PR: ports/169524
  Approved by:maintainer (timeout, 14 days)
  
  Revision  ChangesPath
  1.6   +1 -2  ports/security/snortsam/files/snortsam.sh.in
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/misc/freebsd-doc-all Makefile ports/misc/freebsd-doc-en Makefile distinfo pkg-plist.html-common pkg-plist.html-split ports/misc/freebsd-doc-fr pkg-plist.common pkg-plist.html pkg-pli

2012-07-12 Thread Marc Fonvieille
blackend2012-07-12 19:51:44 UTC

  FreeBSD ports repository (doc committer)

  Modified files:
misc/freebsd-doc-all Makefile 
misc/freebsd-doc-en  Makefile distinfo pkg-plist.html-common 
 pkg-plist.html-split 
misc/freebsd-doc-fr  pkg-plist.common pkg-plist.html 
 pkg-plist.html-common 
 pkg-plist.html-split pkg-plist.pdf 
 pkg-plist.ps pkg-plist.txt 
misc/freebsd-doc-hu  pkg-plist.html-split 
misc/freebsd-doc-ja  pkg-plist.html-split 
misc/freebsd-doc-mn  pkg-plist.html-common 
misc/freebsd-doc-nl  pkg-plist.html-common 
 pkg-plist.html-split 
  Log:
  Update to r39187 of the FreeBSD docset.
  
  Approved by:doceng (implicit)
  
  Revision  ChangesPath
  1.47  +1 -1  ports/misc/freebsd-doc-all/Makefile
  1.51  +1 -1  ports/misc/freebsd-doc-en/Makefile
  1.45  +2 -2  ports/misc/freebsd-doc-en/distinfo
  1.14  +1 -0  ports/misc/freebsd-doc-en/pkg-plist.html-common
  1.29  +1 -1  ports/misc/freebsd-doc-en/pkg-plist.html-split
  1.4   +2 -0  ports/misc/freebsd-doc-fr/pkg-plist.common
  1.4   +2 -0  ports/misc/freebsd-doc-fr/pkg-plist.html
  1.4   +2 -0  ports/misc/freebsd-doc-fr/pkg-plist.html-common
  1.8   +20 -0 ports/misc/freebsd-doc-fr/pkg-plist.html-split
  1.4   +2 -0  ports/misc/freebsd-doc-fr/pkg-plist.pdf
  1.4   +2 -0  ports/misc/freebsd-doc-fr/pkg-plist.ps
  1.4   +2 -0  ports/misc/freebsd-doc-fr/pkg-plist.txt
  1.31  +1 -1  ports/misc/freebsd-doc-hu/pkg-plist.html-split
  1.38  +6 -5  ports/misc/freebsd-doc-ja/pkg-plist.html-split
  1.5   +1 -0  ports/misc/freebsd-doc-mn/pkg-plist.html-common
  1.6   +1 -0  ports/misc/freebsd-doc-nl/pkg-plist.html-common
  1.10  +1 -0  ports/misc/freebsd-doc-nl/pkg-plist.html-split
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/net/liboauth Makefile distinfo

2012-07-12 Thread Johan van Selst
johans  2012-07-12 20:41:33 UTC

  FreeBSD ports repository

  Modified files:
net/liboauth Makefile distinfo 
  Log:
  Update oauth to 0.9.7 (bugfix release)
  
  Revision  ChangesPath
  1.9   +1 -2  ports/net/liboauth/Makefile
  1.7   +2 -2  ports/net/liboauth/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


Re: cvs commit: ports/security/snortsam/files snortsam.sh.in

2012-07-12 Thread Doug Barton
This is a bad change, and probably does not do what you're intending.

The proper way to handle this would be to use REQUIRE: LOGIN.

It's also worth noting that the reasons for using REQUIRE: LOGIN by
default for ports scripts unless there is a good reason not to include
grouping them together rather than scattering them throughout the boot
process. It's not just a matter of unprivileged users.

Please see
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html
for more information.

Doug


On 07/12/2012 12:51 PM, Michael Scheidell wrote:
> scheidell2012-07-12 19:51:43 UTC
> 
>   FreeBSD ports repository
> 
>   Modified files:
> security/snortsam/files snortsam.sh.in 
>   Log:
>   - remove rcscript REQUIRE: LOGIN
>   
>   PR: ports/169524  
> http://www.FreeBSD.org/cgi/query-pr.cgi?pr=169524
>   Approved by:maintainer (timeout, 14 days)
>   
>   Revision  ChangesPath
>   1.6   +1 -2  ports/security/snortsam/files/snortsam.sh.in
> 
> http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/security/snortsam/files/snortsam.sh.in.diff?&r1=1.5&r2=1.6&f=u
> 


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/security/nettle Makefile distinfo pkg-plist

2012-07-12 Thread Johan van Selst
johans  2012-07-12 21:02:06 UTC

  FreeBSD ports repository

  Modified files:
security/nettle  Makefile distinfo pkg-plist 
  Log:
  - Update Nettle to 2.5 release
  - Remove local patch that is no longer needed
  - This release is ABI/API compatible with the previous version
  
  PR: ports/169742
  Submitted by:   Niclas Zeising 
  
  Revision  ChangesPath
  1.35  +5 -7  ports/security/nettle/Makefile
  1.14  +2 -2  ports/security/nettle/distinfo
  1.16  +7 -5  ports/security/nettle/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/www/chromium/files patch-third_party__WebKit__Source__WebCore__config.h

2012-07-12 Thread Raphael Kubo da Costa
rakuco  2012-07-12 21:19:33 UTC

  FreeBSD ports repository

  Modified files:
www/chromium/files   
 patch-third_party__WebKit__Source__WebCore__config.h 
  Log:
  Fix patch-third_party__WebKit__Source__WebCore__config.h
  
  Submitted by:   Jan Henrik Sylvester 
  
  Revision  ChangesPath
  1.5   +1 -1  
ports/www/chromium/files/patch-third_party__WebKit__Source__WebCore__config.h
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/astro/josm Makefile distinfo

2012-07-12 Thread Dmitry Marakasov
amdmi3  2012-07-12 22:15:45 UTC

  FreeBSD ports repository

  Modified files:
astro/josm   Makefile distinfo 
  Log:
  - Update to 5315
  
  Revision  ChangesPath
  1.48  +1 -1  ports/astro/josm/Makefile
  1.39  +2 -2  ports/astro/josm/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/devel/arduino/files patch-hardware-arduino-cores-arduino-Print.cpp

2012-07-12 Thread Wesley Shields
wxs 2012-07-13 00:48:08 UTC

  FreeBSD ports repository

  Removed files:
devel/arduino/files  
 patch-hardware-arduino-cores-arduino-Print.cpp 
  Log:
  Remove file that should have been removed in previous commit.
  
  Approved by:wblock@ (maintainer)
  
  Revision  ChangesPath
  1.2   +0 -12 
ports/devel/arduino/files/patch-hardware-arduino-cores-arduino-Print.cpp (dead)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/java/javavmwrapper Makefile ports/java/javavmwrapper/src javavm.1 javavmwrapper.sh

2012-07-12 Thread Greg Lewis
glewis  2012-07-13 05:38:44 UTC

  FreeBSD ports repository

  Modified files:
java/javavmwrapper   Makefile 
java/javavmwrapper/src javavm.1 javavmwrapper.sh 
  Log:
  . Make the version numbers consistent so they can be compared correctly.
E.g. for jdk1.6.0 and openjdk6 will use '6' as the version.
  . Modify the preference order for Java VMs used by the internal fallback
logic to reflect that openjdk is now the default Java VM rather than diablo.
  . Remove code for Java vendors that are no longer in the ports tree (e.g.
blackdown, ibm).
  . Remove code for handling version numbers that are no longer present in
the tree (e.g. only 1.5 and up is supported).
  . Note that openjdk is a native Java VM.
  . If the environment variable JAVAVM_FALLBACK_ONLY is set then only use the
internal logic to select a Java VM, don't use the ports logic even if the
ports collection is installed. [1]
  . Update the manual page for JAVAVM_FALLBACK_ONLY.
  . Bump version to 2.4.
  
  PR: 167799 [1]
  
  Revision  ChangesPath
  1.35  +1 -1  ports/java/javavmwrapper/Makefile
  1.14  +11 -1 ports/java/javavmwrapper/src/javavm.1
  1.25  +56 -79ports/java/javavmwrapper/src/javavmwrapper.sh
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/www/p5-Mojolicious Makefile

2012-07-12 Thread Sunpoet Po-Chuan Hsieh
sunpoet 2012-07-13 06:03:28 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Mojolicious   Makefile 
  Log:
  - Fix typo in previous commit
  
  Revision  ChangesPath
  1.27  +1 -1  ports/www/p5-Mojolicious/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"


cvs commit: ports/devel/py-flake8 Makefile distinfo pkg-plist

2012-07-12 Thread Sofian Brabez
sbz 2012-07-13 06:18:38 UTC

  FreeBSD ports repository

  Modified files:
devel/py-flake8  Makefile distinfo pkg-plist 
  Log:
  - Update to 1.4
  
  PR: ports/169784
  Submitted by:   William Grzybowski  (maintainer)
  
  Revision  ChangesPath
  1.2   +1 -1  ports/devel/py-flake8/Makefile
  1.2   +2 -2  ports/devel/py-flake8/distinfo
  1.2   +25 -25ports/devel/py-flake8/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"