summaryrefslogtreecommitdiff
path: root/net/net-snmp
AgeCommit message (Collapse)AuthorFilesLines
2007-02-15Added conflicts.rillig1-1/+2
2007-02-05Forgotten patch in last commit.joerg1-0/+50
2007-02-05Fix DragonFly build changes. I have no clue to add an optional filejoerg4-6/+78
into the build system, so override cpu_nlist on DragonFly.
2007-02-05Changes 5.4:adam33-585/+205
- The default configuration now enables embedded Perl and the Perl modules by default when possible unless explicitly disabled. You may use the --disable-embedded-perl and --without-perl-modules configure options, respectively, to revert to the former default configuration.
2006-10-18Apply patch from net-snmp CVS repository to fix Perl module SNMP's bulkwalkseb3-15/+36
function. - patch from http://net-snmp.cvs.sourceforge.net/net-snmp/net-snmp/perl/SNMP/SNMP.xs?r1=5.50.2.6&r2=5.50.2.7&view=patch&pathrev=V5-3-patches - revision log http://net-snmp.cvs.sourceforge.net/net-snmp/net-snmp/perl/SNMP/SNMP.xs?view=log&pathrev=V5-3-patches#rev5.50.2.7 - bug reference http://sourceforge.net/tracker/?func=detail&atid=112694&aid=1533078&group_id=12694 Bump PKGREVISION to 2
2006-10-18Remove obsolete patches/patch-mib2cupdate: recently superseded byseb1-24/+0
patches/patch-et
2006-10-11Removed an RCS Id.rillig2-9/+3
2006-10-11Fixed "test ==".rillig3-15/+49
2006-10-02Fix a NetBSD/sparc64 bug: give sysctl() a pointer on a size_t not on an int!seb3-2/+43
While here check for sysctl() return value. Now snmpd on NetBSD/sparc64 should report more meaningful values for OIDs like UCD-SNMP-MIB::memAvailReal.0. Bump PKGREVISION.
2006-10-01Split LP64 related patch file (patch-ea) from christos@ so that there isseb19-447/+498
one patched file per patch file.
2006-09-24Don't use bmake feature in Makefile, use MAKE_ENV instead.joerg3-10/+9
2006-09-15Fix a crapload of 64 bit inconsistencies (int <-> ptr, int * <-> size_t *)christos2-1/+456
This now has a chance to work on sparc64.
2006-09-14Advertize NET_SNMP_SYS_CONTACT, NET_SNMP_SYS_LOCATION, NET_SNMP_PERSISTENTDIRghen1-1/+6
and NET_SNMP_MIBDIRS as being user-settable.
2006-08-22Revive patch-dt for the sake of DragonFly.joerg2-1/+20
2006-08-11DiskIO fix, courtesy of Jan Andresadam2-6/+10
2006-07-30Fix building on Darwin (and some other platforms?)adam2-3/+15
2006-07-29Changes 5.3.1:adam10-74/+120
snmpd: - fix trap processing from SMUX peers - fix disman/event monitoring crashes - fix bug 1399369: ifNumber broken - fix re-init of daemons after SIGHUP snmptrapd: - fix bug 1420758/1458815: snmptrapd aborts/loops in select() - fix re-init of daemons after SIGHUP snmplib: - fix OID lookups for fully qualified object names (eg .iso.org) snmpusm: - performance improvement when changing localized keys perl: - The perl modules now check to make sure they're building against the proper Net-SNMP version. misc: - Coverity fixes
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-07-06Export OPSYS explicitly. This worked before, but according to PR 33931joerg1-1/+3
it got broken.
2006-06-19regenchristos1-2/+2
2006-06-19Try to make this work for 3.0christos1-3/+4
2006-06-17- don't use getfsstat, use getvfsstat.christos4-3/+176
- add code to do disk i/o statistics for NetBSD and enable it.
2006-05-12Fix PR#33316adam1-2/+2
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-19Add DragonFly support. Bump revision due to PLIST changes.joerg27-14/+1067
2006-03-14Modify the pkginstall framework so that it manages all aspects ofjlam1-3/+1
INSTALL/DEINSTALL script creation within pkgsrc. If an INSTALL or DEINSTALL script is found in the package directory, it is automatically used as a template for the pkginstall-generated scripts. If instead, they should be used simply as the full scripts, then the package Makefile should set INSTALL_SRC or DEINSTALL_SRC explicitly, e.g.: INSTALL_SRC= ${PKGDIR}/INSTALL DEINSTALL_SRC= # emtpy As part of the restructuring of the pkginstall framework internals, we now *always* generate temporary INSTALL or DEINSTALL scripts. By comparing these temporary scripts with minimal INSTALL/DEINSTALL scripts formed from only the base templates, we determine whether or not the INSTALL/DEINSTALL scripts are actually needed by the package (see the generate-install-scripts target in bsd.pkginstall.mk). In addition, more variables in the framework have been made private. The *_EXTRA_TMPL variables have been renamed to *_TEMPLATE, which are more sensible names given the very few exported variables in this framework. The only public variables relating to the templates are: INSTALL_SRC INSTALL_TEMPLATE DEINSTALL_SRC DEINSTALL_TEMPLATE HEADER_TEMPLATE The packages in pkgsrc have been modified to reflect the changes in the pkginstall framework.
2006-03-11Removed the unconditional dependency to bash. Also removed the bashismsrillig3-6/+30
from the mib2c-update program. Bumped PKGREVISION.
2006-03-10One executable shell program needs bash instead of sh. Bumped PKGREVISION.rillig1-1/+9
2006-03-08Allow to build diskio and mibII modules on Darwin 8.x. Without them,minskim1-2/+2
the package doesn't build due to some undefined functions.
2006-03-08Remove a duplicate case value on Darwin 8.x.minskim2-4/+25
2006-02-19Use REQD_DIRS instead of OWN_DIRS -- should fix CHECK_FILES build.wiz1-2/+2
2006-01-24Changes 5.3.0.1:adam17-380/+123
*** Security Fix *** Changes 5.3: *** Important Notes *** Several very significant changes have been made in Net-SNMP for this release that warrant special attention. - shared library version number no longer matches the release number. We now follow the versioning scheme recommended by libtool. For the 5.3 release this means that the libraries now have a SONAME ending with ".so.10", e.g. libnetsnmp.so.10. - snmpd has not been truncating log files at startup, as documented in the man pages, for a while now. This default behaviour has been restored. Please use the '-A' flag if you want to continue appending to your log files at startup. - snmptrapd will no longer accept all traps by default. It must be configured with authorized SNMPv1/v2c community strings and/or SNMPv3 users. Non-authorized traps/informs will be dropped. - Due to a copyright statement that didn't allow modifications, snmpnetstat has been completely rewritten. The new version now accepts the same command-line options as the other tools, which has introduced a number of incompatible changes. However, it does now finally support SNMPv3.
2006-01-18Use PKG_SYSCONFDIR.kim1-2/+3
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-5/+5
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-10-18fix a couple of broken #ifdefs, making this build on Solaris.grant2-18/+10
2005-10-18make this reliably find libwrap.grant1-2/+2
2005-10-03Get rid of some more stuff that was to be removed after 2005Q3.wiz1-3/+1
2005-08-06Bump the PKGREVISIONs of all (638) packages that hardcode the locationsjlam1-1/+2
of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
2005-08-01Add support for NET_SNMP_USE_SSL legacy var.wiz1-3/+5
2005-08-01Add RCS Id.wiz5-0/+5
2005-08-01Remove trailing whitespace.wiz1-2/+2
2005-08-01Convert to options framework.wiz2-37/+45
While here, sort Makefile a bit to make it easier to read.
2005-07-31make net-snmp build on darwin 8.2.0 patches from darwin sourcesrtr4-0/+209
2005-07-31make net-snmp build on darwin 8.2.0.rtr3-10/+14
these patches shouldn't break netbsd.
2005-07-16Remove some unnecessarily strong dependencies on perl that resultedjlam1-2/+1
from including perl5/buildlink3.mk. These packages just need the Perl interpreter, and can just add "perl" to USE_TOOLS instead.
2005-07-14Bump BUILDLINK_RECOMMENDED to 5.2.1.2 for recent security issue.adrianp1-2/+2