summaryrefslogtreecommitdiff
path: root/net-mgmt/net-snmp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* net-mgmt/net-snmp: Fix scenario where a user does not have a config in the ↵Ryan Steinmetz2024-07-192-2/+5
| | | | | | | default location PR: 280284 Reported by: gebhart@secnetix.de
* net-mgmt/net-snmp: Add an upgrade message for running snmpd as non-rootMark Johnston2024-07-022-1/+45
| | | | | | | | | Explain that snmpd now drops privileges by default, and describe how one can configure snmpd to run without any root privileges at all. Approved by: zi Sponsored by: Klara, Inc. Sponsored by: Stormshield
* net-mgmt/net-snmp: Make snmpd and snmptrapd drop privileges by defaultMark Johnston2024-06-203-11/+18
| | | | | | | | | | Now that we have a better idea of what problems can arise with this change, let's try again, this time providing better documentation and some troubleshooting steps. Approved by: zi Sponsored by: Klara, Inc. Sponsored by: Stormshield
* net-mgmt/net-snmp: Fix a typo in the pkg-messageMark Johnston2024-06-201-1/+1
| | | | | | Approved by: zi Sponsored by: Klara, Inc. Sponsored by: Stormshield
* net-mgmt/net-snmp: Provide an option for snmptrapd to drop privsMark Johnston2024-06-201-4/+20
| | | | | | | | | | As with snmpd, we can run snmptrapd with reduced privileges, which is certainly desirable since snmptrapd's main function is to receive SNMP traps and log them somewhere. Approved by: zi Sponsored by: Klara, Inc. Sponsored by: Stormshield
* net-mgmt/net-snmp: Update ownership of snmpd.logMark Johnston2024-06-042-2/+2
| | | | | | | | | | Otherwise snmpd isn't able to re-open its log file after rotation, when configured to run as the snmpd user. Approved by: zi Sponsored by: Stormshield Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D45317
* net-mgmt/net-snmp: Print a warning if config files aren't readableMark Johnston2024-06-041-5/+25
| | | | | | | | | | | Motivated by a bug report from dvl@. In his case, snmpd was able to read the configuration file initially, but failed to reload it upon receiving SIGHUP during log rotation. Approved by: zi Sponsored by: Stormshield Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D45343
* net-mgmt/net-snmp: Avoid changing to the snmpd user for nowMark Johnston2024-05-142-2/+13
| | | | | | | | | | | | | | | Switching the user might break existing configurations, for reasons that are not fully clear yet. Avoid surprises by letting users opt-in to that change, for now. Also provide an rc.conf variable to make it easy to configure snmpd to drop privileges if they so choose. Reported by: dvl Approved by: zi Sponsored by: Klara, Inc. Sponsored by: Stormshield Differential Revision: https://reviews.freebsd.org/D45199
* net-mgmt/net-snmp: Let snmpd run as a non-root userMark Johnston2024-05-093-9/+47
| | | | | | | | | | | | | | | | | | | - Compile without /dev/kmem access. This requires a small patch which opens libkvm in a dummy mode which uses sysctls to implement most of its interfaces rather than /dev/kmem access. This way we can drop the dependency on /dev/kmem without rewriting existing code. - Add a new snmpd user. Configure snmpd to drop privileges once it's finished initialization. - Remove the JAIL option. Now that snmpd avoids using /dev/kmem, there's no need to have a special mode for running snmpd in jails. The patch has been proposed upstream here: https://sourceforge.net/p/net-snmp/mailman/net-snmp-coders/thread/ZjEwNV5BiTOQ-Adi%40nuc/#msg58766857 Approved by: zi Sponsored by: Klara, Inc. Sponsored by: Stormshield Differential Revision: https://reviews.freebsd.org/D45031
* net-mgmt/net-snmp: Fix the IPV6 MIB implementationMark Johnston2024-05-092-14/+129
| | | | | | | | | | | | | | | | The implementations of var_tcp6() and var_udp6() on FreeBSD don't work and fail to compile. var_tcp6() also makes uses of kmem access, which I'm trying to disable in snmpd. Provide a patch to fix these problems. This has been committed to the 5.9 branch upstream. Readd mibII/ipv6 since it now compiles and works in my manual testing. Also, simply remove the IPV6 option. It has no effect, as --enable-ipv6 is the default. Approved by: zi Sponsored by: Klara, Inc. Sponsored by: Stormshield Differential Revision: https://reviews.freebsd.org/D45030
* net-mgmt/net-snmp: Fix freebsd15.hMark Johnston2024-05-092-7/+3
| | | | | | | | | | | | | It was copied from freebsd14.h without updating it. Also remove some bogus copying in the port makefile. 5.9.4 provides freebsdN.h for N up to 14, and we have a patch which adds freebsd15.h. So, get rid of the copying too. Approved by: zi Sponsored by: Klara, Inc. Sponsored by: Stormshield Differential Revision: https://reviews.freebsd.org/D45029
* framework: reintroduce the feature enabling codeMathieu Arnold2024-04-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | For each feature (see in Mk/Features) users can now set these variables in their make.conf. Using LTO as an example. To enable globally: WITH_LTO= yes To disable globally (for example ssp is enabled by default): WITHOUT_LTO= yes To enable for a specific list of ports: WITH_LTO_PORTS= lang/perl5.36 To disable for a specific list of ports: WITHOUT_LTO_PORTS= lang/perl5.36 Differential Revision: https://reviews.freebsd.org/D44750
* net-mgmt/net-snmp: Update to 5.9.4Ryan Steinmetz2024-03-0410-91/+79
| | | | | PR: 277436 Submitted by: Ivan Rozhuk <rozhuk.im@gmail.com>
* net-mgmt/net-snmp: Impelled to share/manMuhammad Moinur Rahman2024-01-232-144/+145
| | | | Approved by: portmgr (blanket)
* net-mgmt/net-snmp: Add include for freebsd 15.x to fix buildRyan Steinmetz2023-09-081-0/+2
|
* net-mgmt/net-snmp: Fix ports depending on this port under 15-CURRENTCy Schubert2023-09-053-4/+14
| | | | | | | | | | Also add freebsd15.h to ${LOCALBASE}/include/net-snmp/system, missing in 710a64c4471d. ${LOCALBASE}/include/net-snmp/system/freebsd15.h is used by ports which depend on net-mgmt/net-snmp. Without this file they also fail to build under 15-CURRENT. Approved by: portmgr (blanket) Fixes: 710a64c4471d
* net-mgmt/net-snmp: Fix build for 15-CURRENTCy Schubert2023-09-031-0/+6
| | | | | | Add support for 15-CURRENT by adding a freebsd15.h (header) file. Approved by: portmgr (blanket)
* devel/py-setuptools: convert individual consumers to ${PY_SETUPTOOLS}Charlie Li2023-07-171-2/+2
| | | | | | | | Currently a no-op, but in the future outputs the correct setuptools port depending on whether USES_PYTHON=distutils is specified. With hat: python PR: 270510, 270358
* all: remove explicit versions in USES=python for "3.x+"Rene Ladan2023-06-271-1/+1
| | | | | | | | | | | | | | | | | | | The logic in USES=python will automatically convert this to 3.8+ by itself. Adjust two ports that only had Python 3.7 mentioned but build fine on Python 3.8 too. finance/quickfix: mark BROKEN with PYTHON libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option] QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found ^~~~~~~~~~ 1 warning and 1 error generated. Reviewed by: portmgr, vishwin, yuri Differential Revision: <https://reviews.freebsd.org/D40568>
* net-mgmt/net-snmp: fix net-snmp-config on jail hostsDan Langille2023-02-242-2/+11
| | | | | | | | | | | re https://github.com/net-snmp/net-snmp/issues/280 This patch allows 'net-snmp-config --create-snmpv3-user' to succeed if run on a jail host and snmpd is also running in one of the jails. Thhis patch limits the check to the host, ingnoring jails. PR: 269791
* net-mgmt/net-snmp: Fix missing datarootdir, Bump PORTREVISIONRyan Steinmetz2022-12-032-1/+11
|
* net-mgmt/net-snmp: Fix build under 14-CURRENT > 1400066Cy Schubert2022-09-273-0/+56
| | | | | IPFRAGTTL was removed in 81a34d374ed6e5a7b14f24583bc8e3abfdc66306 (1400067). Define the value in the port.
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* net-mgmt: remove 'Created by' linesTobias C. Berner2022-07-201-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A big Thank You to the original contributors of these ports: * @BABOLO <.@babolo.ru> * Alex Samorukov, samm@freebsd.org * Alexander Kriventsov <avk@vl.ru> * Alexander Sulfrian <alexander@sulfrian.net> * Alexander Y. Grigoryev <alexander.4mail@gmail.com> * Alexandre Biancalana <ale@biancalanas.net> * Alexandre Snarskii <snar@paranoia.ru> * Alexandre Snarskii <snar@snar.spb.ru> * Alexey Bobkov <mr.deadlystorm@gmail.com> * Alexey Dokuchaev <danfe@FreeBSD.org> * Alexey V. Degtyarev * Anders Nordby <anders@FreeBSD.org> * Anders Troback * Andreas Klemm <andreas@klemm.gtn.com> * Andrew 'derfi' Sidorov <derfi@vei.ru> * Andrew Pantyukhin <infofarmer@FreeBSD.org> * Andrew Thompson <andy@fud.org.nz> * Andrew Thompson <thompsa@freebsd.org> * Anton Berezin <tobez@FreeBSD.org> * Anton Berezin <tobez@tobez.org> * Athanasios Douitsis <aduitsis@cpan.org> * Babak Farrokhi <farrokhi@FreeBSD.org> * Bartlomiej Rutkowski <r@robakdesign.com> * Bill Fenner <fenner@FreeBSD.org> * Blaz Zupan <blaz@si.FreeBSD.org> * BluePex Security Solutions <freebsd-ports@bluepex.com> * Boris Samorodov <bsam@FreeBSDD.org> * Brad Davis <brd@FreeBSD.org> * Brad Hendrickse <bradh@uunet.co.za> * Brian Somers <brian@FreeBSD.org> * Bruce M Simpson <bms@FreeBSD.org> * Bruce Simpson * Chris S.J. Peron <maneo@bsdpro.com> * Chris St Denis <chris@smartt.com> * Christer Edwards <christer.edwards@gmail.com> * Christopher N. Harrell <cnh@ivmg.net> * Clement Laforet <sheepkiller@cultdeadsheep.org> * Corey Smith <corsmith@gmail.com> * Craig Boston <craig@yekse.gank.org> * Dave Cottlehuber <dch@FreeBSD.org> * Dave Cottlehuber <dch@skunkwerks.at> * David O'Brien (obrien@NUXI.com) * David Shane Holden <dpejesh@yahoo.com> * David Yeske <dyeske@gmail.com> * Denis Shaposhnikov <dsh@vlink.ru> * Dennis Herrmann <adox@mcx2.org> * Dikshie <dikshie@sfc.wide.ad.jp> * Dmitry Sivachenko <demon@FreeBSD.org> * Domas Mituzas <midom@dammit.lt> * Douglas Fraser <doug@idmf.net> * Douglas K. Rand <rand@iteris.com> * Douglas K. Rand <rand@meridian-enviro.com> * Edwin Groothuis <edwin@mavetju.org> * El Vampiro <vampiro@rootshell.ru> * Emanuel Haupt <ehaupt@FreeBSD.org> * Eric F Crist <ecrist@secure-computing.net> * Eric Turgeon <ericturgeon.bsd@gmail.org> * Eugene Grosbein <eugen@FreeBSD.org> * Fotis Zabaras <fotis@zabaras.eu> * Frank Wall <freebsd@moov.de> * Frank Wall <fw@moov.de> * Gea-Suan Lin <gslin@gslin.org> * Geoffroy Desvernay <dgeo@centrale-marseille.fr> * George Reid <greid@ukug.uk.freebsd.org> * Gerrit Beine <gerrit.beine@gmx.de> * Henrik Brix Andersen <henrik@brixandersen.dk> * Holger Lamm <holger@eit.uni-kl.de> * Hsin-Han You <hhyou@cs.nctu.edu.tw> * Hung-Yi Chen <gaod@hychen.org> * Inacio <nacho319+freebsdZilla@gmail.com> * J.R. Oldroyd <fbsd@opal.com> * JJ Behrens <jj@nttmcl.com> * Jake Smith <jake@xz.cx> * James FitzGibbon <jfitz@FreeBSD.org> * James Flemer <jflemer@acm.jhu.edu> * Janos Mohacsi <janos.mohacsi@bsd.hu> * Janos Mohacsi <mohacsi@niif.hu> * Janos.Mohacsi@bsd.hu * Janos.Mohacsi@dante.org.uk * Jason Helfman <jgh@FreeBSD.org> * Jeremy Chadwick <koitsu@FreeBSD.org> * Jerry A! <jerry@thehutt.org> * Jev Björsell <ports@ecadlabs.com> * Joe Clarke <marcus@marcuscom.com * Joe Clarke <marcus@marcuscom.com> * Johannes Jost Meixner <johannes@FreeBSD.org> * Johannes Jost Meixner <johannes@perceivon.net> * Josh Carroll <josh.carroll@gmail.com> * KIKUCHI Koichiro <koichiro@rworks.jp> * Kevin Hung <khung@nullaxiom.com> * Kian Mohageri <kian.mohageri@gmail.com> * Kimura Fuyuki <fuyuki@hadaly.org> * Kirill Ponomarew <ponomarew@oberon.net> * Kris Kennaway <kris@FreeBSD.org> * Lars Engels <lars.engels@0x20.net> * Lars Thegler <lars@thegler.dk> * Lawrence Chen <beastie@tardisi.com> * Lev Walkin <vlm@lionet.info> * Luca Pizzamiglio <pizzamig@FreeBSD.org> * Mahdi Mokhtari <mokhi63@gmail.com> * Manuel Kreutz <mk@nomtec.net> * Marcin Cieslak <saper@system.pl> * Mark Felder <feld@FreeBSD.org> * Mark Pulford <mark@kyne.com.au> * Martin Jackson <mhjacks@swbell.net> * Martin Matuska <mm@FreeBSD.org> * Mathieu Simon <freebsd@simweb.ch> * Matt Moriarity <matt@mattmoriarity.com> * Matt Peterson <matt@peterson.org> * Matthew Seaman <matthew@FreeBSD.org> * Michael L. Hostbaek (mich@freebsdcluster.org) * Michael Lyngbøl <lyngbol@wheel.dk> * Michael Reifenberger <mr@FreeBSD.org> * Michal Hanula <michal@hanu.la> * Mike Bristow <mike@urgle.com> * Mikhail T. <mi@aldan.algebra.com> * Mikolaj Golub <to.my.trociny@gmail.com> * Muhammad Moinur Rahman <5u623l20@gmail.com> * Muhammad Moinur Rahman <bofh@FreeBSD.org> * Nicholas Esborn <nick@netdot.net> * Nick F <ffault@gmail.com> * Nick Hilliard * Nick Hilliard <nick@foobar.org> * Pakhom Golynga <pg@pakhom.spb.ru> * Paul Chvostek <paul@it.ca> * Paul Dlug <paul@nerdlabs.com> * Paul Dlug<paul@nerdlabs.com> * Pavel I Volkov * Peter C. Lai <cowbert@gmail.com> * Phil Phillips * Pierre David <pdagog@gmail.com>, Jean Benoit <jean@unistra.fr> * Rihaz Jerrin <rihaz.jerrin@gmail.com> * Roar Pettersen <roar@uib.no> * Russell A. Jackson <rjackson@cserv62.csub.edu> * Ryan Steinmetz * Ryan Steinmetz <rpsfa@rit.edu> * Ryan Steinmetz <zi@FreeBSD.org> * Serge Maslov <serge@maslov.biz> * Sergey Skvortsov <skv@protey.ru> * Sevan Janiyan <venture37@geeklan.co.uk> * Shaun Amott <shaun@inerd.com> * Simon 'corecode' Schubert <corecode@corecode.ath.cx> * Stefan Esser <se@FreeBSD.org> * Stefan Lambrev <cheffo@freebsd-bg.org> * Stephen J. Roznowski <sjr@home.net> * Steve Wills <swills@FreeBSD.org> * Steven Kreuzer <skreuzer@FreeBSD.org> * Tassilo Philipp <tphilipp@potion-studios.com> * Thomas Spreng <spreng@socket.ch> * Tim Bishop <tdb@FreeBSD.org> * Timur I. Bakeyev <bat@cpan.org> * Tom Judge <tj@FreeBSD.org> * Tor Halvard "Squat" Furulund <squat@squat.no> * Tsung-Han Yeh <snowfly@yuntech.edu.tw> * Tsung-Han Yeh <snowfly@yunteche.du.tw> * Tuc <freebsd-ports@t-b-o-h.net> * Vaida Bogdan * Veniamin Gvozdikov <vg@FreeBSD.org> * Vladimir Ermakov <samflanker@gmail.com> * Vladimir Kotal <vlada@devnull.cz> * Wei-chun Chao * Xavier Beaudouin <kiwi@oav.net> * Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw> * Yuan-Chung Hsiao <ychsiao@ychsiao.org> * anarcat@anarcat.ath.cx * arved * babak@farrokhi.net * brock@cotcomsol.com * clement@FreeBSD.org * cnh@ivmg.net * dom@happygiraffe.net * dpejesh@yahoo.com * ecronin@gizmolabs.org * ehaupt@FreeBSD.org * gpalmer * gslin <gslin@gslin.org> * hr <holgerrepp@googlemail.com> * ijliao * itojun@itojun.org * jabley * jabley@clear.co.nz * jamrich.majo@gmail.com * janos.mohacsi@bsd.hu * joris * joseph@randomnetworks.com * marck@rinet.ru * mich@FreeBSD.org * mich@freebsdcluster.org * nbm * rea-fbsd@codelabs.ru * rflynn@acsalaska.net * salexanov@gmail.com * sanpei@FreeBSD.org * steinex * torstenb * trevor * vfom@narod.ru * # Created by Kevin Bowling <kbowling@FreeBSD.org> With hat: portmgr
* net-mgmt/net-snmp: Fix asterisk buildRyan Steinmetz2022-06-192-3/+4
| | | | | Always install IPv6 headers, regardless of IPv6 OPTION PR: 264749
* net-mgmt/net-snmp: Update to 5.9.1Dan Langille2022-05-134-43/+6
| | | | | | | | | | | | | | | | | | | | re https://net-snmp.sourceforge.io/about/ChangeLog.html libnetsnmp: - Fixed the mib-parsing-bug introduced shortly before 5.7 agent: - fixed rounding errors for disk percentage calculations openbsd: - better support for recent openbsd releases features: - bug fixes with minimalist support after additional user feedback Many other miscellaneous minor bug fixes Approved by: maintainer (via private communication)
* *: fix tab vs. space issues, and comments according to the guide.Jimmy Olgeni2021-10-161-1/+1
|
* cleanup: drop support for EOL FreeBSD 11.XRene Ladan2021-09-301-1/+1
| | | | | | | | | | | | | | | | | Search criteria used: - 11.4 - OSREL* - OSVER* - *_FreeBSD_11 Input from: - adridg: devel/qca-legacy - jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds - sunpoet: security/p5-*OpenSSL* Reviewed by: doceng, kde, multimedia, perl, python, ruby, rust Differential Revision: https://reviews.freebsd.org/D32008 Test Plan: make index
* net-mgmt/net-snmp: Fix CPE informationBernhard Froehlich2021-09-031-1/+1
| | | | Approved by: portmgr (blanket)
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-062-5/+1
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* net-mgmt/net-snmp: Fix packaging with Python 3.8 if option PYTHON is setKai Knoblich2021-03-291-1/+1
| | | | | | | | PR: 253815 Approved by: python (with hat) Notes: svn path=/head/; revision=569486
* - Move SCTP support to an OPTION, off by default, to reflect 13.x changesRyan Steinmetz2021-03-081-3/+8
| | | | | | | | | - Bump PORTREVISION PR: 254056 Notes: svn path=/head/; revision=567846
* - Bring in upstream commit to resolve badly formed responses ↵Ryan Steinmetz2021-02-132-1/+27
| | | | | | | | | | | (92f0fe9e0dc3cf7ab6e8cc94d7962df83d0ddbec) - Bump PORTREVISION PR: 253393 Notes: svn path=/head/; revision=565173
* - Add memory calculation fixRyan Steinmetz2020-11-152-0/+12
| | | | | | | | | | - Bump PORTREVISION PR: 251103 Submitted by: ncrogers@gmail.com Notes: svn path=/head/; revision=555237
* - Fix PYTHON OPTIONRyan Steinmetz2020-09-143-13/+24
| | | | | | | | | | - Require python 3.5+ PR: 249298 Submitted by: John Hein <jcfyecrayz@liamekaens.com> Notes: svn path=/head/; revision=548623
* - Update to 5.9Ryan Steinmetz2020-09-1224-989/+53
| | | | | | | - Add OPTION to disable libpkg support Notes: svn path=/head/; revision=548358
* - Add OPSYS to conditionalRyan Steinmetz2020-01-031-2/+2
| | | | | | | PR: 243048 Notes: svn path=/head/; revision=521941
* Chase rename of security/openssl111Bernard Spil2020-01-011-2/+2
| | | | | | | | | - Categories n-z MFH: 2020Q1 Notes: svn path=/head/; revision=521749
* Drop the ipv6 virtual category for n* category as it is not relevant anymoreBaptiste Daroussin2019-10-091-1/+1
| | | | Notes: svn path=/head/; revision=514143
* net-mgmt/net-snmp: revert back to 5.7.3 due to side-effectsKurt Jaeger2019-09-3024-135/+783
| | | | | | | | | PR: 232025 Submitted by: dvl Reviewed by: zi, otis@sk.FreeBSD.org Notes: svn path=/head/; revision=513422
* net-mgmt/net-snmp: fix for first byte of IF-MIB::ifPhysAddress is always 0Kurt Jaeger2019-09-291-0/+24
| | | | | | | | | | | | | | | - netsnmp_arch_interface_container_load() writes terminating NUL directly to the sdl_data *past* the length specified in sdl_nlen, overwriting first byte of physadrr. PR: 231996 Submitted by: Yuri Pankov <yuripv@yuripv.net> Reviewed by: Bart Van Assche <bvanassche@acm.org> (upstream maintainer) Approved by: zi (maintainer) Obtained from: https://sourceforge.net/p/net-snmp/code/merge-requests/20/ Notes: svn path=/head/; revision=513264
* net-mgmt/net-snmp: Do not set LIB_DEPENDS twiceTobias Kortkamp2019-09-291-2/+0
| | | | Notes: svn path=/head/; revision=513202
* net-mgmt/net-snmp: update 5.7.3 -> 5.8Kurt Jaeger2019-09-2824-781/+135
| | | | | | | | | PR: 232025 Approved by: zi (maintainer timeout) Relnotes: https://sourceforge.net/p/net-snmp/mailman/message/36386084/ Notes: svn path=/head/; revision=513140
* Convert to UCL & cleanup pkg-message (categories n)Mathieu Arnold2019-08-141-0/+6
| | | | | | | (and missed 3 missed files from previous categories.) Notes: svn path=/head/; revision=508903
* - Real unbreak with openssl111 from portsDima Panov2019-07-071-5/+7
| | | | | | | | | | | | | | - Use ${OPENSSLBASE} instead of hardcode path - Add more conditions to check for extra patch - TLS option is fine now PR: 228898 Submitted by: myself (this patch) Approved by: maintainer timeout (>2 months after submission) MFH: 2019Q3 Notes: svn path=/head/; revision=506141
* - Add 13.x supportRyan Steinmetz2018-12-252-1/+8
| | | | | | | | PR: 234395 Submitted by: Mark Linimon <linimon@freebsd.org> Notes: svn path=/head/; revision=488325
* security/openssl-devel was removed, but there is a security/openssl111 now.Mathieu Arnold2018-11-101-1/+1
| | | | Notes: svn path=/head/; revision=484599
* Remove compatibility code for FreeBSD < 11.2 from all ports.Rene Ladan2018-11-021-5/+1
| | | | | | | | | | Simplify some ports where DragonFlyBSD no longer needs to be special-cased. Submitted by: rene Reviewed by: bapt, jbeich Differential Revision: https://reviews.freebsd.org/D17724 Notes: svn path=/head/; revision=483807