aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAgeFilesLines
* Make all GNUstep ports install into the System domain so that the Local ↵David Chisnall2015-09-194-24/+24
| | | | | | | | | | | | | | domain is available for stuff built from source. Some ports were already installing in the System domain, for these just remove the Makefile lines explicitly specifying the install domain. The rest are installed in the Local domain, remove any overrides, update their pkg-plists and any explicit paths in the Makefiles and then bump port revision. Approved by: bapt (mentor) Differential Revision: https://reviews.freebsd.org/D2977 Notes: svn path=/head/; revision=397315
* - Update to 1.40Sunpoet Po-Chuan Hsieh2015-09-182-3/+3
| | | | | | | Changes: http://search.cpan.org/dist/Net-SSH-Perl/Changes Notes: svn path=/head/; revision=397282
* - Drop 8.x supportDmitry Marakasov2015-09-181-8/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=397237
* - Merge fix for upstream bug 331Ryan Steinmetz2015-09-172-0/+29
| | | | | | | | | - Bump PORTREVISION Submitted by: Victor Sudakov <sudakov@sibptus.tomsk.ru> Notes: svn path=/head/; revision=397199
* - Update to 2.2.0Sunpoet Po-Chuan Hsieh2015-09-172-4/+4
| | | | | | | | | | Changes: https://github.com/ruby-amqp/bunny/blob/master/ChangeLog.md PR: 202508 Submitted by: Dave Cottlehuber <dch@skunkwerks.at> Approved by: maintainer (timeout, 4 weeks) Notes: svn path=/head/; revision=397195
* - Mark DEPRECATED and set EXPIRATION_DATE to 2015-09-30Sunpoet Po-Chuan Hsieh2015-09-171-0/+3
| | | | Notes: svn path=/head/; revision=397194
* - Update to 2.0.0Sunpoet Po-Chuan Hsieh2015-09-172-3/+3
| | | | | | | Changes: https://github.com/ruby-amqp/amq-protocol/blob/master/ChangeLog.md Notes: svn path=/head/; revision=397193
* - Add NO_ARCHSunpoet Po-Chuan Hsieh2015-09-172-2/+3
| | | | | | | - Sort PLIST Notes: svn path=/head/; revision=397166
* - Update to 1.39Sunpoet Po-Chuan Hsieh2015-09-173-44/+51
| | | | | | | | | | | - Use = instead of += - Add NO_ARCH - Sort PLIST Changes: http://search.cpan.org/dist/Net-SSH-Perl/Changes Notes: svn path=/head/; revision=397163
* - Add NO_ARCHSunpoet Po-Chuan Hsieh2015-09-172-1/+2
| | | | | | | - Sort PLIST Notes: svn path=/head/; revision=397147
* - Add NO_ARCHSunpoet Po-Chuan Hsieh2015-09-172-1/+2
| | | | | | | - Sort PLIST Notes: svn path=/head/; revision=397143
* - Add NO_ARCHSunpoet Po-Chuan Hsieh2015-09-172-2/+3
| | | | | | | - Sort PLIST Notes: svn path=/head/; revision=397139
* - Update to 1.10.0Danilo Egea Gondolfo2015-09-173-20/+23
| | | | | | | - Add SLURM to OPTIONS_DEFAULT (it's enabled by default in the configure script) Notes: svn path=/head/; revision=397096
* net/foreman-proxy: update to 1.9.1 and do minor cleanupsMichael Moll2015-09-164-35/+27
| | | | Notes: svn path=/head/; revision=397086
* Remove ansi version fo wxGTK 2.8 and only keep the unicode versionBaptiste Daroussin2015-09-161-1/+1
| | | | | | | | | | | All applications in the ports tree works correctly with unicode version of wxGTK Newer version of wxGTK are unicode only (3.0+) Note that now WX_UNICODE macro is noop Notes: svn path=/head/; revision=397077
* - Switch to @sampleDmitry Marakasov2015-09-162-8/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=397075
* Update 4.3.70 --> 4.3.71Cy Schubert2015-09-162-4/+3
| | | | Notes: svn path=/head/; revision=397065
* It seems some people keep adding $FreeBSD$ to patch files.Mathieu Arnold2015-09-162-6/+0
| | | | | | | | | | | Patches must not be changed by the vcs, this includes the svn:keyword expansion. Set fbsd:nokeywords to a couple of patches. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=397064
* Update the Qt4 ports to 4.8.7.Raphael Kubo da Costa2015-09-161-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to upstream, this is the last planned Qt4 release. A list of changes since 4.8.6 can be found here: <http://download.qt.io/official_releases/qt/4.8/4.8.7/changes-4.8.7> Porting notes and changes: - Remove several patches that have been upstreamed. - Make Uses/qmake.mk pass the contents of LIBS to the qmake environment. [1] - Repurpose devel/qt4/files/extrapatch-src-corelib-global-qglobal.h now the original patch is part of the release (curiously enough, the original patch was never actually used, as the ?= assignment in r362837 after r362770 was never possible). This works around the way compiler support for C++11 features is detected in Qt 4.8.7: while it originally only uses the compiler to determine if something is supported or not, the initializer lists feature also depends on the C++ standard library being used. It's a problem in FreeBSD 9.x, where USES=compiler:c++0x or USES=compiler:c++11-lang means we will use clang to build a port but use libstdc++ from base (GCC 4.2). The latter obviously does not support initializer lists, and the build fails because Qt tries to include headers that do not exist (<initializer_list>). Since detecting libstdc++'s version is not trivial (we need to include a non-lightweight header like cstdio and then check for __GLIBCXX__), we just enable Q_COMPILER_INITIALIZER_LISTS support only when libc++ is used (there should be no reason for someone to be using clang with GCC 4.8's libstdc++, for example). x11/kdelibs4's FindQt4.cmake had to include a backported change from the upstream FindQt4.cmake in CMake itself to use a C++ compiler to detect flags like Q_WS_X11, otherwise the inclusion of <ciso646> in qglobal.h makes the build fail. This patch contains changes by me, makc@ and alonso@. PR: 202552 [1] PR: 202808 [exp-run] Submitted by: pawel@ [1] Notes: svn path=/head/; revision=397043
* Update to version 5.14.9Pawel Pekala2015-09-152-3/+3
| | | | | | | | | | | | | | | | | | | | | | --- 5.14.9 2015/09/15 Fix segv in ZOOM_connection_fire_event_socket YAZ-858 The odr_in memory taken by handle_srw_response, and, thus if result set is destructed before we expect the HTTP response (hres) it may be come invalid. Therefore we inspect hres before the call to ZOOM_handle_sru. Fix possible deadlock in backtrace (2nd attempt) YAZ-856 An alarm is set up so that backtrace is terminated if it hangs. Even if backtrace the handler also attempts to spawn gdb. --- 5.14.8 2015/09/14 Fix SEGV for s=sl for 3 terms and syntax error YAZ-857 --- 5.14.7 2015/09/13 Fix possible deadlock in backtrace YAZ-856 Various minor text tweaks in documentation Notes: svn path=/head/; revision=397016
* - Fix shebangsDmitry Marakasov2015-09-151-2/+16
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=396998
* - Add NO_ARCHDmitry Marakasov2015-09-142-10/+11
| | | | | | | | | | | | | | - Remove deprecated and unused MAN1 - Improve do-install readability - Switch to OPTIONS helpers - Install manpage PR: 202713 Submitted by: amdmi3 Approved by: maintainer timeout (jadawin, 2 weeks) Notes: svn path=/head/; revision=396910
* Fix resolvers.Dmitry Sivachenko2015-09-141-0/+11
| | | | | | | Obtained from: haproxy ML Notes: svn path=/head/; revision=396899
* Make it so that the default Perl is always called perl5.Mathieu Arnold2015-09-1428-41/+41
| | | | | | | | | | | | | | | | | | | - Move Perl's man1 files along with its man3 files. - Move where Perl installs its modules man1 pages. - Convert the ports installing man1 pages. - Make different Perl versions installable at the same time. Though you should note that only the default version can be used to install Perl modules, and the non default Perl versions cannot use the modules installed via ports if they contain .so as they are installed in a version specific directory. Reviewed by: bapt (the Mk bits) Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3542 Notes: svn path=/head/; revision=396892
* Update to 1.6-dev5.Dmitry Sivachenko2015-09-142-3/+3
| | | | Notes: svn path=/head/; revision=396891
* - Update to 0.30.1Danilo Egea Gondolfo2015-09-132-3/+3
| | | | Notes: svn path=/head/; revision=396844
* Define NDEBUG and disable debugging when DEBUG is disabled, and do so forXin LI2015-09-131-8/+11
| | | | | | | both client and server. Notes: svn path=/head/; revision=396801
* - Update to 3.6.2Sunpoet Po-Chuan Hsieh2015-09-122-3/+3
| | | | | | | Changes: https://github.com/weppos/whois/blob/master/CHANGELOG.markdown Notes: svn path=/head/; revision=396774
* - Update to 1.1.1Sunpoet Po-Chuan Hsieh2015-09-122-3/+3
| | | | | | | Changes: https://github.com/fog/fog-sakuracloud/blob/master/CHANGELOG.md Notes: svn path=/head/; revision=396763
* Update to 2.0.2Olivier Duchateau2015-09-122-3/+3
| | | | Notes: svn path=/head/; revision=396742
* Apply upstream fix for CVE-2015-6908.Xin LI2015-09-122-2/+13
| | | | | | | | | Obtained from: OpenLDAP git 6fe51a9ab04fd28bbc171da3cf12f1c1040d6629 Security: CVE-2015-6908 MFH: 2015Q3 Notes: svn path=/head/; revision=396731
* - Temporarily disable -Werror to fix build on 11.x. Boost < 1.59.0 hasHiroki Sato2015-09-115-1/+58
| | | | | | | | | | | a lot of unused local typedefs while the newer versions use __attribulte__((unused)) to suppress the warning. - Add patches to remove BOOST_PFTO_WRAPPER(). This macro is obsolete in the newer versions of Boost. Notes: svn path=/head/; revision=396727
* Fix compile error on 9.x and 11.x.Hiroki Sato2015-09-117-20/+154
| | | | | | | | Spotted by: amdmi3 PR: 203011 Notes: svn path=/head/; revision=396720
* - Add LICENSE_FILEDmitry Marakasov2015-09-101-0/+5
| | | | | | | | | | | - Add NO_ARCH - Fix shebangs Approved by: portmgr blanket MFH: 2015Q3 (blanket) Notes: svn path=/head/; revision=396625
* - Add LICENSE_FILEDmitry Marakasov2015-09-101-0/+4
| | | | | | | | | - Fix shebangs Approved by: portmgr blanket Notes: svn path=/head/; revision=396607
* - Add NO_ARCHDmitry Marakasov2015-09-101-1/+2
| | | | Notes: svn path=/head/; revision=396590
* - Update to 1.12Olivier Duchateau2015-09-102-3/+4
| | | | | | | | | - Add NO_ARCH Changelog: https://github.com/shazow/urllib3/blob/master/CHANGES.rst#112-2015-09-03 Notes: svn path=/head/; revision=396571
* - Fix shebangsDmitry Marakasov2015-09-091-0/+4
| | | | | | | | | | - Add NO_ARCH Approved by: portmgr blanket MFH: 2015Q3 (blanket) Notes: svn path=/head/; revision=396507
* Add net/kea, a new open source DHCPv4/DHCPv6 server being developedHiroki Sato2015-09-0912-0/+657
| | | | | | | by Internet Systems Consortium. Notes: svn path=/head/; revision=396506
* - use my full name in the "Created by:" field, suggested by danfe.Fukang Chen2015-09-091-1/+1
| | | | | | | | | | - update my email address to loader@FreeBSD.org. Approved by: danfe Differential Revision: https://reviews.freebsd.org/D3612 Notes: svn path=/head/; revision=396502
* Upgrade to 2.1Vanilla I. Shu2015-09-094-19/+58
| | | | | | | | PR: 202415 Submitted by: maintainer Notes: svn path=/head/; revision=396475
* - Add NO_ARCHDmitry Marakasov2015-09-091-1/+2
| | | | Notes: svn path=/head/; revision=396469
* Unbreak the build on FreeBSD 10.2 (until official support arrives).Alexey Dokuchaev2015-09-091-4/+6
| | | | Notes: svn path=/head/; revision=396453
* - Mark BROKEN on 10.2: does not buildDmitry Marakasov2015-09-081-0/+4
| | | | | | | | | make[4]: don't know how to make ./param.amd64_fbsd_102.h. Stop Approved by: portmgr blanket Notes: svn path=/head/; revision=396425
* Fix path.Dmitry Sivachenko2015-09-084-4/+4
| | | | Notes: svn path=/head/; revision=396387
* Build and install halog binary.Dmitry Sivachenko2015-09-084-0/+10
| | | | Notes: svn path=/head/; revision=396385
* Update to 2.4.42.Xin LI2015-09-083-18/+6
| | | | | | | MFH: 2015Q3 Notes: svn path=/head/; revision=396354
* - Update to devel/courier-unicode to 1.4Guido Falsi2015-09-071-1/+1
| | | | | | | - Chase shlib bump Notes: svn path=/head/; revision=396348
* - Add LICENSE.Hiroki Sato2015-09-0712-54/+113
| | | | | | | | | - Do not override CFLAGS. - Fix some compiler warnings. - Take maintainership. Notes: svn path=/head/; revision=396343
* Rename and split net/mcast-tools into net/pim6-tools, net/pim6sd,Hiroki Sato2015-09-0726-90/+321
| | | | | | | and net/pim6dd. Notes: svn path=/head/; revision=396342