summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2001-12-04By default, prevent invocation of GNU "auto*" driven by the generatedjlam2-4/+2
Makefiles during the build process by touching various auto{conf,make} source files to make them up-to-date. Packages that require regenerating the configure script and Makefile.in files should make the appropriate calls to auto{conf,make} in a pre-configure target. This allows the various targets listed in ${_CONFIG_PREREQ} to modify the generated files without triggering the GNU auto* tools and having the modifications be overwritten.
2001-12-03Miscellaneous man page fixes.wiz2-25/+31
2001-12-03Update to KDE 2.2.2skrll6-38/+48
Closes pkg/14728 from Mark Davies <mark@mcs.vuw.ac.nz>. Changes from him with updates from myself. From www.kde.org... The principal improvements over KDE 2.2.1, release two months ago, include: o security-related - SSL certificate loading - symlink vulnerability in .wmrc access by KDM introduced in 2.2 - security problem with eFax (used by klprfax) - potential problem in PAM invocation by KDM - potential harmful side-effect of failed KDM session starts o new features - added support for CodeWeavers' CrossOver plug-in (provides support for QuickTime, etc.) - added support for the wheelmouse for scrolling through the KGhostview PS/PDF viewer component - ability to search for multiple patterns at a time in the file search dialog - debugging multi-threaded applications with KDevelop o improvements/fixes - handling of HTTP links that redirect to FTP - POST using SSL through a proxy and sending headers through proxies - saving of recently-selected files in the file dialog - handling of non-ASCII characters over SMB - toolbar button captions with certain styles - selecting items with the mouse in Konqueror - sorting in Konqueror's textview - saving current settings as a theme in the theme manager - crashes in KMail with certain mails - crash on invoking the KDM chooser - non-Latin languages with KDevelop performance - icon loading optimized - file dialog speedups - stop spinning SMB client processes - handling of large files in Kate
2001-12-03Update wu-ftpd to 2.6.2.abs2-19/+5
Changes since 2.6.1 (several of which where in the 2.6.1nb1 version) o Added checks for missing "]" and "}" in filename globs, this completes the file globbing heap corruption vulnerability fix. o Added checks to the globbing code for overflow of restbuf, and additional globerr setting and checking to speed up return on error. o Changed the globbing code to use qsort, much faster when sorting a large number of strings. o Handle ftpglob() returning a vector containing just a NULL string, fixes problems caused by CWD ~{ o Somehow the fix for pasv-allow didn't actually make it into 2.6.1 o Provide a compile-time option to revert NLST to showing directories. o Fix missing format strings in debugging code.
2001-12-03Use PKGREVISION to manage the package-specific version number when itjlam3-6/+6
differs from the distfile version number. G/C some the unused variables in php4/Makefile.common related to the old way of handling version numbers.
2001-12-02Update snort to 1.8.3; changes since 1.8.2 include:kleink2-5/+5
Major repairs include a fix to frag2 on Linux platforms, the icmp decoder and printout routines were updated to match the data structures that I implemented in 1.8.1 and the flexresp code was repaired and should now be faster, plus the usual rule updates. I also added a new "-B" command line switch to convert IP addresses in a pcap file to a new specified IP subnet addresses.
2001-12-02bsd.pkg.install.mk calls the INSTALL script at the right timesjlam3-8/+3
automatically, so no need to do it ourselves.
2001-11-30Update to 4.0.0mjl2-7/+11
- The module has been completely redesigned to add support for SNMPv3 and to follow the SNMP Management Framework defined by RFC 2571. - Perl version 5.6.0 or greater is now required to use the module. - Updated the method calls to expect the same argument syntax regardless of whether they are invoked by "blocking" or "non-blocking" objects. - The non-core modules Crypt::DES, Digest::MD5, Digest::SHA1, and Digest::HMAC are now required to support SNMPv3. - Added the ability to specify the local address and port number used by each object. - Corrected an error in the Net::SNMP::FSM module that would cause all response messages to be dropped in "non-blocking" mode if there is a recv() error. - Updated the logic in the "blocking" response handling method such the transmit buffer is properly updated if there is a decode error while parsing the GetResponse-PDU. - Counter, Guages, and TimeTick values that are incorrectly encoded as negative signed integers are now converted to unsigned values. This feature can be disabled by setting the "-unsigned" flag to false using the translate() method. - An empty community name is now allowed. - Updated the "non-blocking" example script.
2001-11-30Update to 0.36mjl2-5/+5
* For whatever reason, Thread->self returns undef under ActivePerl. This is now handled properly in Net::Daemon::Log.
2001-11-30Update net/wu-ftpd to 2.6.1nb1abs2-4/+20
Adds the following wu-ftpd.org post 2.6.1 patches: - ftpglob - missing_format_strings - nlst-shows-dirs - pasv-port-allow-correction The first (ftpglob) covers a potential root compromise.
2001-11-29Buildlinkify.wiz1-12/+3
2001-11-29A dependency on automake implies a dependency on autoconf; there's no needjlam2-4/+2
to list them both when we listing just automake will do.
2001-11-29Add and enable hesiodseb1-1/+2
2001-11-29Trivially buildlinkify. Also correct typo: NEED_HESIOD should bejlam1-3/+6
USE_HESIOD if the buildlink.mk file is to be believed, and we should include bsd.prefs.mk first so that a USE_HESIOD from /etc/mk.conf can be picked up.
2001-11-29The hesoid package has only static libraries, so use use a BUILD_DEPENDSjlam1-2/+2
instead of a normal DEPENDS.
2001-11-29Initial import of hesiod-3.0.2.seb5-0/+97
Provided in PR 14649 by Kevin P. Neal <kpneal@pobox.com>. Minor enhancements and buildlink.mk made by seb. A package builder can force the use of this package by defining NEED_HESIOD in case the base system already provides Hesiod API in the C library. Note: NetBSD's C library provides minimum Hesiod support, the library included in this package is the MIT original one and so provides the whole Hesiod API. Hesiod is a name service library that can provide general name service for a variety of applications. It is based on the Domain Name system (DNS). The Hesiod library and hesinfo tool allow easy queries to Hesiod name service.
2001-11-29Get rid of manually adding "nbX" to PKGNAME when a pkg was changed inhubertf13-26/+31
pkgsrc. Instead, a new variable PKGREVISION is invented that can get bumped independent of DISTNAME and PKGNAME. Example #1: DISTNAME= foo-X.Y PKGREVISION= Z => PKGNAME= foo-X.YnbZ Example #2: DISTNAME= barthing-X.Y PKGNAME= bar-X.Y PKGREVISION= Z => PKGNAME= bar=X.YnbZ (!) On subsequent changes, only PKGREVISION needs to be bumped, no more risk of getting DISTNAME changed accidentally.
2001-11-28Update snort to 1.8.2; changes since 1.8.1 include:kleink4-14/+20
* fixed UTC timestamps * fixed SIGUSR1 handling, should reset properly now after getting a signal * fixed PID path generation code, PID files go in the right place now * fixed stability problems in stream4 * fixed stability problems in frag2 * tweaks to spo_unified for better integration with barnyard * added -f switch to turn off fflush() calls in binary logging mode * added new config keyword to stream4, "log_flushed_streams", which causes all buffered packets in the stream reassembler for that session to be logged in the event of an event on that stream (must be used in conjunction with spo_log_tcpdump) * added packet precacheing for flexresp TCP packets, responses should be generated more quickly * fixed rules parser code for various failure modes * several new rules files and a new classification system
2001-11-27Check return value of strrchr before dereferencing it.wiz2-1/+15
Problem reported (with fix) in pkg/14745 by John Heasley.
2001-11-27upgrade to 9.2.0.itojun7-94/+165
list of changes between 9.1.3 to 9.2.0 is available at: http://www.isc.org/products/BIND/bind9.html
2001-11-27upgrade to 9.2.0. minor bugfixes only.itojun2-5/+5
(will overwrite net/bind9 by net/bind9-current)
2001-11-26Replace remained SAMBA_SHARE to SAMBA_DATA. It was changed in revisiontaca1-4/+4
1.69, but some were remained. Fix the problem that some data files are installed into root directory, noted from Lennart Augustsson <lennart@augustsson.net> private mail.
2001-11-26Buildlinkify, in the sense that only the perl headers are found injlam10-29/+37
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.
2001-11-25Use the general INSTALL/DEINSTALL scripts and look for config files injlam3-58/+8
${PKG_SYSCONFDIR}.
2001-11-25VTUN_SYSCONFDIR is obsolete...use PKG_SYSCONFDIR instead.jlam3-9/+7
2001-11-25APACHE_SYSCONFDIR is obsolete...set PKG_SYSCONFSUBDIR to httpd instead.jlam1-5/+3
2001-11-25PKG_SYSCONFDIR is where the configuration files for a package may be found.jlam2-4/+8
This value may be customized in various ways: PKG_SYSCONFBASE is the main config directory under which all package configuration files are to be found. PKG_SYSCONFSUBDIR is the subdirectory of PKG_SYSCONFBASE under which the configuration files for a particular package may be found. PKG_SYSCONFDIR.${PKGBASE} overrides the value of ${PKG_SYSCONFDIR} for a particular package. Users will typically want to set PKG_SYSCONFBASE to /etc, or accept the default location of ${PREFIX}/etc. This obsoletes the use of CONFDIR, which was active for only 6 days, so no need to have a workaround to still accept old CONFDIR settings.
2001-11-25Add & enable ip6_intzuntum1-1/+2
2001-11-25Initial import of ip6_intzuntum4-0/+34
Convert valid IPv6 addresses to ip6.int PTR values. Convert valid IPv4 addresses to in-addr.arpa PTR values. Anything not valid is simply printed as is. Handles :: notation and embedded IPv4 addresses. If the address is followed by /n, the PTR is truncated to n bits.
2001-11-22Update gtk-gnutella to 0.17; Changelog since 0.16:kleink2-5/+5
# v 0.17 2001.10.24 - Integrated routing table optimization patch from Mark Schreiber - Shortened default connecting timeouts, especially to other nodes - Index shared files in an array for faster retrieval - Enforce strict NUL termination of Query packets we process - Integrated search table bin categorization patch from Kenn Brooks Hamm
2001-11-22Updated to version 1.09 (PR#14608). Some of the changes since 1.0703:martti4-395/+203
- DummyInetd, Telnet, SNPP and PH modules was removed from this release, and they became a new module. - DESCR cleanup, remove non-existing module - new maintainer
2001-11-22upgrade to 1.4.0.itojun3-11/+11
http://www.domtools.com/pub/dlint1.4.0-changes.txt ---- Version 1.4.0 released November 19, 2000 * Added support for BIND 9 (Dig 9.0.1).
2001-11-22make it compile.itojun2-1/+14
2001-11-22Update 6to4 to 1.2: allow using anycast service as defined in RFC 3068.hubertf4-11/+22
Code contributed by Keith Moore <moore@cs.utk.edu> in PR 14647.
2001-11-22no need to PROVIDE anything since this isn't part of the dependency graphlukem1-2/+1
2001-11-21These rc.d scripts are copied to ${RCD_SCRIPTS_DIR} == /etc/rc.d, so changejlam6-36/+36
the test for pre-rc.d systems to just whether /etc/rc.subr is present.
2001-11-21As noted in pkg/13129, smb2www doesn't work with samba-2.2 and up. Makejlam1-3/+2
this depend on samba<2.2.0 instead. Also remove extraneous dependency on perl as it's already implied.
2001-11-21Use the general INSTALL/DEINSTALL scripts, and minimize the differencesjlam8-205/+114
between this package and the net/samba package.
2001-11-21Cosmetic changes.jlam1-8/+8
2001-11-21Remove unneeded DEINSTALL script as we use the general one.jlam1-98/+0
2001-11-21Remove extra blank line.jlam1-2/+1
2001-11-21dd the new rc.d scripts to the PLIST.jlam1-1/+3
2001-11-21Use the general INSTALL/DEINSTALL scripts instead of the homegrown ones.jlam5-98/+108
Also split the one rc.d script into one for each daemon and one admin script (idea from Luke Mewburn <lukem@wasabisystems.com>).
2001-11-21upgrade to 9.2.0rc10.itojun3-6/+7
change summary from ISC announcement: Several bugs in 9.2.0rc9 have been fixed.
2001-11-19Strongly buildlinkify and libtoolize (NetBSD's interesting contributions tojlam6-5/+122
technical vocabulary).
2001-11-18Introduce MANVERSION (now set to 20010212), so proper file name is usedzuntum1-3/+5
in both DISTFILES and EXTRACT_ONLY (last time I broke it by updating DISTFILES without altering EXTRACT_ONLY approperiately). Pointed out by Amitai Schlair <schmonz@schmonz.com> in private mail. Thanks!
2001-11-17Add and enable fmirror.he1-1/+2
2001-11-17Yet another FTP mirroring program. From it's README file:he4-0/+32
fmirror is a program for mirroring files and directories from a remote ftp server. It allows regex-matching for files that are to be included and excluded. It uses a combination of timestamp, file size and file permissions to decide what files to transfer from the ftp server. The primary goal of fmirror is to use as little memory as possible, but still be able to do its job efficiently. The program's author is Finn Arne Gangstad <finnag@fast.no>
2001-11-15Remove duplicated line.taca1-2/+1
2001-11-13Switch to date-versioned manpages tarballzuntum2-6/+6