pkgsrc/net
salo b656a5c116 Update to version 3.70.
Significant changes:

- Rewrote core port scanning engine, which is now named ultra_scan().
  Improved algorithms make this faster (often dramatically so) in
  almost all cases.  Not only is it superior against single hosts, but
  ultra_scan() can scan many hosts (sometimes hundreds) in parallel.
  This offers many efficiency/speed advantages.  For example, hosts
  often limit the ICMP port unreachable packets used by UDP scans to
  1/second.  That made those scans extraordinarily slow in previous
  versions of Nmap.  But if you are scanning 100 hosts at once,
  suddenly you can receive 100 responses per second.  Spreading the
  scan amongst hosts is also gentler toward the target hosts.  Nmap
  can still scan many ports at the same time, as well.  If you find
  cases where ultra_scan is slower or less accurate, please send a
  report (including exact command-lines, versions used, and output, if
  possible) to Fyodor.

- Added --max_hostgroup option which specifies the maximum number of
  hosts that Nmap is allowed to scan in parallel.

- Added --min_hostgroup option which specifies the minimum number of
  hosts that Nmap should scan in parallel (there are some exceptions
  where Nmap will still scan smaller groups -- see man page).  Of
  course, Nmap will try to choose efficient values even if you don't
  specify hostgroup restrictions explicitly.

- Rewrote TCP SYN, ACK, Window, and Connect() scans to use
  ultra_scan() framework, rather than the old pos_scan().

- Rewrote FIN, Xmas, NULL, Maimon, UDP, and IP Protocol scans to use
  ultra_scan(), rather than the old super_scan().

- Overhauled UDP scan.  Ports that don't respond are now classified as
  "open|filtered" (open or filtered) rather than "open".  The (somewhat
  rare) ports that actually respond with a UDP packet to the empty
  probe are considered open.  If version detection is requested, it
  will be performed on open|filtered ports.  Any that respond to any of
  the UDP probes will have their status changed to open.  This avoids a
  the false-positive problem where filtered UDP ports appear to be
  open, leading to terrified newbies thinking their machine is
  infected by back orifice.

- Nmap now estimates completion times for almost all port scan types
  (any that use ultra_scan()) as well as service scan (version
  detection).  These are only shown in verbose mode (-v).  On scans
  that take more than a minute or two, you will see occasional updates
  like:
  SYN Stealth Scan Timing: About 30.01% done; ETC: 16:04 (0:01:09 remaining)
  New updates are given if the estimates change significantly.

- Added --exclude option, which lets you specify a comma-separated
  list of targets (hosts, ranges, netblocks) that should be excluded
  from the scan.  This is useful to keep from scannig yourself, your
  ISP, particularly sensitive hosts, etc.  The new --excludefile reads
  the list (newline-delimited) from a given file.  All the work was
  done by Mark-David McLaughlin (mdmcl(a)cisco.com> and William McVey
  ( wam(a)cisco.com ), who sent me a well-designed and well-tested
  patch.

- Nmap now has a "port scan ping" system.  If it has received at least
  one response from any port on the host, but has not received
  responses lately (usually due to filtering), Nmap will "ping" that
  known-good port occasionally to detect latency, packet drop rate,
  etc.

- Service/version detection now handles multiple hosts at once for
  more efficient and less-intrusive operation.

- Nmap now wishes itself a happy birthday when run on September 1 in
  verbose mode!  The first public release was on that date in 1997.

- The port randomizer now has a bias toward putting
  commonly-accessible ports (80, 22, etc.) near the beginning of the
  list.  Getting a response early helps Nmap calculate response times and
  detect packet loss, so the scan goes faster.

- Host timeout system (--host_timeout) overhauled to support host
  parallelization.  Hosts times are tracked separately, so a host that
  finishes a SYN scan quickly is not penalized for an exceptionally
  slow host being scanned at the same time.

- When Nmap has not received any responses from a host, it can now
  use certain timing values from other hosts from the same scan
  group.  This way Nmap doesn't have to use absolute-worst-case
  (300bps SLIP link to Uzbekistan) round trip timeouts and such.

- Enabled MAC address reporting when using the Windows version
  of Nmap.  Thanks to Andy Lutomirski (luto(a)stanford.edu) for
  writing and sending the patch.

- Workaround crippled raw sockets on Microsoft Windows XP SP2 scans.
  I applied a patch by Andy Lutomirski (luto(a)stanford.edu) which
  causes Nmap to default to winpcap sends instead.  The winpcap send
  functionality was already there for versions of Windows such as NT and
  Win98 that never supported Raw Sockets in the first place.

- Changed how Nmap sends Arp requests on Windows to use the iphlpapi
  SendARP() function rather than creating it raw and reading the
  response from the Windows ARP cache.  This works around a
  (reasonable) feature of Windows Firewall which ignored such
  unsolicited responses.  The firewall is turned on by default as of
  Windows XP SP2.  This change was implemented by Dana Epp
  (dana(a)vulscan.com).

- Fixed some Windows portability issues discovered by Gisle Vanem
  (giva(a)bgnett.no).

- Upgraded libpcap from version 0.7.2 to 0.8.3.  This was an attempt
  to fix an annoying bug, which I then found was actually in my code
  rather than libpcap :).

- Removed Ident scan (-I).  It was rarely useful, and the
  implementation would have to be rewritten for the new ultra_scan()
  system.  If there is significant demand, perhaps I'll put it back in
  sometime.

- Documented the --osscan_limit option, which saves time by skipping
  OS detection if at least one open and one closed port are not found on
  the remote hosts.  OS detection is much less reliable against such
  hosts anyway, and skipping it can save some time.

- Updated nmapfe.desktop file to provide better NmapFE desktop support
  under Fedora Core and other systems.  Thanks to Mephisto
  (mephisto(a)mephisto.ma.cx) for sending the patch.

- Further nmapfe.desktop changes to better fit the freedesktop
  standard.  The patch came from Murphy (m3rf(a)swimmingnoodle.com).

- Fixed capitalization (with a perl script) of many over-capitalized
  vendor names in nmap-mac-prefixes.

- Ensured that MAC address vendor names are always escaped in XML
  output if they contain illegal characters (particularly '&').  Thanks
  to Matthieu Verbert (mve(a)zurich.ibm.com) for the report and a patch.

- Changed xmloutputversion in XML output from 1.0 to 1.01 to note that
  there was a slight change (which was actually the MAC stuff in 3.55).
  Thanks to Lionel CONS (lionel.cons(a)cern.ch) for the suggestion.

- Many Windows portability fix and bug fixes, thanks to patch from
  Gisle Vanem (giva(a)bgnett.no).  With these changes, he was able to
  compile Nmap on Windows using MingW + gcc 3.4 C++ rather than MS
  Visual Studio.

- Removed (addport) tags from XML output.  They used to provide open
  ports as they were discovered, but don't work now that the port
  scanners scan many hosts at once.  They did not specify an IP
  address.  Of course the appropriate (port) tags are still printed
  once scanning of a target is complete.

- Configure script now detects GNU/k*BSD systems (whatever those are),
  thanks to patch from Robert Millan (rmh@debian.org)

- Fixed various crashes and assertion failures related to the new
  ultra_scan() system, that were found by Arturo "Buanzo" Busleiman
  (buanzo(a)buanzo.com.ar), Eric (catastrophe.net), and Bill Petersen
  (bill.petersen(a)alcatel.com).

- Fixed some minor memory leaks relating to ping and list scanning as
  well as the Nmap output table.  These were found with valgrind (
  http://valgrind.kde.org/ ).

- Provide limited --packet_trace support for TCP connect() (-sT)
  scans.

- Fixed compilation on certain Solaris machines thanks to a patch by
  Tom Duffy (tduffy(a)sun.com)

- Fixed some warnings that crop up when compiling nbase C files with a
  C++ compiler.  Thanks to Gisle Vanem (giva(a)bgnett.no) for sending
  the patch.

- Tweaked the License blurb on source files and in the man page.  It
  clarifies some issues and includes a new GPL exception that
  explicitly allows linking with the OpenSSL library.  Some people
  believe that the GPL and OpenSSL licenses are incompatable without
  this special exception.

- Fixed some serious runtime portability issues on *BSD systems.
  Thanks to Eric (catastrophe.net) for reporting the problem.

- Changed the argument parser to better detect bogus arguments to the
  -iR option.

- Removed a spurious warning message relating to the Windows ARP cache
  being empty.  Patch by Gisle Vanem (giva(a)bgnett.no).

- Removed some C++-style line comments (//) from nbase, because some C
  compilers (particularly on Solaris) barf on those.  Problem reported
  by Raju Alluri <Raju.Alluri(a)Sun.COM>
2004-09-01 01:20:51 +00:00
..
6tunnel Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
adns Set MAINTAINER to tech-pkg@, not packages@. 2004-05-30 02:19:16 +00:00
aget Remove unnecessary trailing backslash. 2004-02-18 04:27:49 +00:00
airport2basestationconfig Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
airportbasestationconfig Quote ${ULIMIT_CMD_datasize} properly to avoid early evaluation. 2004-06-09 08:27:49 +00:00
airportmodemutility Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
amule Sergio Jimenez will maintain this package. 2004-07-27 05:44:46 +00:00
argus Initial import of argus-3.3 from pkgsrc-wip, contributed by 2004-07-07 17:22:30 +00:00
arla "Blind" conversion to bl3 -- does not compile on 1.6.x nor 2.0_BETA with 2004-07-01 13:42:09 +00:00
arpd Convert to buildlink3. 2004-04-25 08:11:38 +00:00
arping Initial import of arping-2.01 from pkgsrc-wip, contributed by 2004-07-07 17:30:12 +00:00
arpwatch Convert to buildlink3. 2004-04-25 08:11:38 +00:00
awhois Convert to buildlink3. 2004-04-25 07:49:56 +00:00
batchftp Enable pkgviews installation. 2004-07-07 14:40:00 +00:00
bftpd Convert to buildlink3. 2004-04-25 07:39:25 +00:00
bind4 Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
bind8 mk/bsd.pkg.install.mk now automatically registers 2004-04-23 22:07:52 +00:00
bind9 Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG, 2004-08-27 06:29:06 +00:00
bind9-current Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG, 2004-08-27 06:29:06 +00:00
bing s/bandwith/bandwidth/ 2004-02-21 07:27:16 +00:00
bittorrent Add a DESCR to bittorrent-gui, too. 2004-08-05 22:22:33 +00:00
bittorrent-gui Add a DESCR to bittorrent-gui, too. 2004-08-05 22:22:33 +00:00
boinc3-coreclient import the current "stable" version of BOINC, the distributing 2004-07-19 20:09:15 +00:00
boinc3-libs common libaries for BOINC-3 projects 2004-07-19 20:11:04 +00:00
boinc3-seti seti@home client for the BOINC-3 framework 2004-07-19 20:14:21 +00:00
bounce Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
bpalogin Update bpalogin to 2.0.2. Changes are bugfixes only. 2004-07-28 10:38:04 +00:00
bridged Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
bug-buddy Update to 2.6.1: 2004-04-16 14:03:49 +00:00
cdpd Convert to buildlink3. 2004-04-25 04:15:15 +00:00
cftp Remove info files entries from PLIST. 2004-03-08 22:38:05 +00:00
choparp s/chpoarp/choparp/. From Tomasz Marciniak. 2004-04-30 22:37:00 +00:00
chrony Convert to buildlink3. 2004-04-25 08:11:38 +00:00
cia Update "cia" package to version 20030922: 2003-09-22 11:27:58 +00:00
cidr Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
citrix_ica Improve wording, suggested by iceblox@IRC 2004-08-28 19:47:23 +00:00
cmu-dhcpd Patch aclocal.m4 so that it includes the <errno.h> header before 2004-03-15 08:35:43 +00:00
coda5_client Add definitions for DEINSTALL_EXTRA_TMPL and INSTALL_EXTRA_TMPL if 2003-08-30 22:51:11 +00:00
coda5_server Convert to buildlink3. 2004-04-27 04:29:17 +00:00
coda_doc
coda_intro
connect Update to 1.83, use DIST_SUBDIR, since old distfile is gone. 2004-07-19 13:36:11 +00:00
ctorrent Remove unneeded chunk. 2004-06-25 17:25:01 +00:00
dante Convert to buildlink3. 2004-04-12 21:54:27 +00:00
dc_gui2 Added UNLIMIT_RESOURCES+=datasize 2004-04-21 04:22:09 +00:00
dctc Convert to buildlink3. 2004-04-25 08:35:03 +00:00
ddclient don't call "install -d" with >1 argument. 2004-07-24 02:52:27 +00:00
delegate Installation of the RCD_SCRIPTS rc.d script is done automatic 2004-04-27 20:51:10 +00:00
dgd Update dgd to 1.2.0.4. Patch provided by the maintainer, Scott Thompson, 2004-03-08 01:56:53 +00:00
dhid Update to 5.2. Changes: 2004-07-25 15:27:02 +00:00
dhisd Convert to buildlink3 and correct two spelling errors in DESCR. 2004-04-25 08:59:48 +00:00
dip Don't (unnecessarily) include "varargs.h" which breaks the build on 2003-11-13 21:20:08 +00:00
djbdns Look into ${DISTDIR}/${DIST_SUBDIR} instead of ${DISTDIR} when copying 2004-04-10 20:28:52 +00:00
dlint s/it's/its/ 2004-01-20 22:15:21 +00:00
dnstop Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
dnstracer Convert to buildlink3 and correct a typo in DESCR. 2004-04-25 08:34:20 +00:00
docsis Updated docsis to 0.9.1. 2004-07-10 12:37:20 +00:00
driftnet Convert to buildlink3. 2004-04-25 08:47:21 +00:00
dtcp used SUBST_*. 2004-06-23 04:58:21 +00:00
dynipclient Convert to buildlink3. 2004-04-25 08:24:03 +00:00
echoping PKGREVISION bump because of libidn shlib major bump. 2004-05-26 14:55:46 +00:00
ed2k-gtk-gui Use the new BUILDLINK_TRANSFORM commands to more precisely state the 2004-08-28 06:05:31 +00:00
edonkey2k Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
entropy www.duh.org is no longer mirroring the distfile. 2004-07-25 15:29:29 +00:00
etherape Make use of the new USE_DIRS variable, instead of directly depending on the 2004-04-14 16:15:20 +00:00
ethereal Changes 0.10.6: 2004-08-13 11:31:28 +00:00
ettercap MAINTAINER unreachable by mail, setting to tech-pkg. 2004-08-17 03:54:28 +00:00
fair-identd
firewalk Convert to buildlink3. 2004-04-25 04:16:02 +00:00
firewalk-gtk Convert to buildlink3 and satisfy pkglint. 2004-04-25 04:17:14 +00:00
flan Accept sun-jdk13, sun-jdk14, jdk13 and jdk14. 2004-07-07 11:35:26 +00:00
flow-tools Change the way that legacy USE_* and FOO_USE_* options are converted 2004-08-22 19:32:51 +00:00
fmirror
fping Update fping and fping6 to 2.4b2nb1. 2003-09-04 12:47:37 +00:00
fping6 Update fping and fping6 to 2.4b2nb1. 2003-09-04 12:47:37 +00:00
freenet-tools Update to 0.2.23. 2004-07-25 15:36:31 +00:00
freeradius libtool uses $(CC) to link objects, not $(LD). 2004-08-27 07:29:24 +00:00
freewais-sf Convert to buildlink3. 2004-05-11 04:07:52 +00:00
ftpproxy Update ftpproxy package to 1.2.2. 2004-01-02 17:03:11 +00:00
gated Make two patches apply cleanly again (whatever happened here...). 2004-07-10 21:00:00 +00:00
GeoIP Fix PLIST. Should have been committed when this package was updated 2004-07-05 15:34:14 +00:00
gethost Enable pkgviews. 2004-04-16 20:26:10 +00:00
gftp Make use of the new USE_DIRS variable, instead of directly depending on the 2004-04-14 16:15:20 +00:00
gftp-gtk1 Make use of the new USE_DIRS variable, instead of directly depending on the 2004-04-14 16:15:20 +00:00
gift To allow plugins the use of pthreads giftd itself has to be built 2004-07-27 15:37:22 +00:00
gift-fasttrack Initial import of gift-fasttrack-0.8.6. 2004-05-08 02:04:53 +00:00
gift-gnutella Initial import of gift-gnutella-0.0.9.2. 2004-05-08 02:05:30 +00:00
gift-openft update to gift-openft-0.2.1.3 2004-07-27 15:39:21 +00:00
giftcurs Initial import of giftcurs-0.6.2 from pkgsrc-wip. 2004-05-08 02:06:48 +00:00
gini Drop maintainership; I don't have the enough free time to maintain 2004-05-07 01:14:46 +00:00
gkrellm-multiping PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
gkrellm-ping USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined. 2004-03-23 04:40:59 +00:00
gkrellm-snmp Convert to buildlink3. 2004-04-25 08:47:21 +00:00
gkrellm-wireless PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
gkrellm1-snmp Convert to buildlink3. 2004-04-25 08:47:21 +00:00
gkrellm1-wireless Convert to bl3. 2004-04-25 23:19:10 +00:00
gnapfetch Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
gnapster Convert to buildlink3. 2004-04-26 22:34:17 +00:00
gnet Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properly 2004-03-18 09:12:08 +00:00
gnet1 Unused. 2004-04-27 00:44:37 +00:00
gnetcat Convert to buildlink3 and remove USE_NEW_TEXINFO. 2004-04-25 07:57:01 +00:00
gnome-netstatus Update to 2.6.2: 2004-06-28 14:22:23 +00:00
gnome-vfs2-smb Set a correct value for CATEGORIES. 2004-04-15 20:10:43 +00:00
gnubile Convert to buildlink3. 2004-04-25 08:47:21 +00:00
gopher use buldlink3 so we strip gcc specific flags when not using gcc. 2004-07-10 01:55:32 +00:00
gtk-gnutella Changes 0.94: 2004-08-02 09:00:34 +00:00
gtk_wicontrol Convert to buildlink3. 2004-04-25 08:39:50 +00:00
gtksamba Convert to buildlink3. 2004-04-25 08:39:50 +00:00
gtm Convert to buildlink3. 2004-04-26 22:34:17 +00:00
hesiod Unused. 2004-04-25 00:39:47 +00:00
hf6to4 s/seperate/separate/; s/adresses/addresses/; 2004-01-31 23:56:47 +00:00
hlfl Initial import of hlfl-0.60.1 from pkgsrc-wip, packaged by pancake. 2004-07-06 07:49:59 +00:00
host Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
howl Include pthread.buildlink3.mk. Should fix the problem seen in 2004-08-16 23:21:56 +00:00
hping Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
httptunnel
icsi-finger Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
iftop Drop maintainership; I don't have the enough free time to maintain 2004-05-07 01:14:46 +00:00
IglooFTP bl3ify IglooFTP, s/USE_X11BASE/USE_X11, bump PKGREVISION. 2004-03-31 07:20:20 +00:00
ip6_int Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
ipa Convert to buildlink3. 2004-04-25 08:39:50 +00:00
ipcalc Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
ipcheck Update to 0.217: 2004-08-17 00:21:59 +00:00
iperf bl3ify. 2004-04-12 13:36:37 +00:00
ipgrab Import ipgrab from pkgsrc-wip. 2004-02-18 18:48:43 +00:00
iplog mk/bsd.pkg.install.mk now automatically registers 2004-04-23 22:07:52 +00:00
ipv6calc Convert to buildlink3. 2004-04-25 08:39:50 +00:00
ipw Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
irrd Add USE_INET6 to BUILD_DEFS as these packages use it. Part of PR#25743 from 2004-06-08 12:23:59 +00:00
ishell Fix Makefile to install correct files. No PKGREVISION bump because 2004-04-12 00:09:06 +00:00
isic Convert to buildlink3. 2004-04-25 04:18:15 +00:00
ispman Wildcard p5-ispman dependency. 2004-04-05 13:47:02 +00:00
ja-samba Update ja-samba package to 2.2.10.1.0 (samba-2.2.10-a-1.0). 2004-08-17 17:32:43 +00:00
jftpgw mk/bsd.pkg.install.mk now automatically registers 2004-04-23 22:07:52 +00:00
jigdo PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
jumpgate
jwhois Bump to jwhois-3.2.2nb7: IPv6 allocation update. 2004-08-17 16:38:11 +00:00
kdenetwork2 Convert to buildlink3. 2004-05-02 01:46:44 +00:00
kdenetwork3 Update to KDE 3.3 2004-08-21 14:56:17 +00:00
kphone Initial import of KPhone 4.0.3, a SIP (Session Initiation Protocol) user 2004-07-21 21:49:02 +00:00
LaBrea Convert to buildlink3. 2004-04-25 04:13:14 +00:00
lambdamoo Web site has moved; updated Makefile to reflect this. 2004-01-28 07:13:55 +00:00
lambdamoo-core Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
lambdamoo-doc USE_MAKEINFO=yes 2004-03-02 22:17:03 +00:00
latd Convert to buildlink3 and correct a spelling error in DESCR. 2004-04-25 08:21:53 +00:00
lft Convert to buildlink3. 2004-04-25 08:01:15 +00:00
lftp Updated to version 3.0.7. 2004-08-13 07:19:51 +00:00
libares Unused. 2004-04-25 00:39:47 +00:00
libdnet Unused. 2004-04-25 23:37:24 +00:00
libIDL Enable pkgviews installation. 2004-05-31 22:01:41 +00:00
liblive Convert to buildlink3. Also fix build with gcc3. 2004-04-12 21:39:41 +00:00
libnids Add a patch to support NetBSD-specific DLT_PPP_SERIAL type. It will be in 2004-05-29 22:14:23 +00:00
libpcap on Solaris, binaries that use libpcap.a always need -lnsl and -lsocket 2004-06-27 12:04:45 +00:00
libsoup Bump PKGREVISION. 2004-05-27 16:07:03 +00:00
libsoup-devel update to libsoup-devel-2.1.10 2004-06-01 16:58:06 +00:00
libsscript
linc Convert to buildlink3. 2004-04-12 21:16:37 +00:00
llnlxdir Convert to buildlink3 and move WRKSRC= to the right place. 2004-04-25 08:39:24 +00:00
llnlxftp Convert to buildlink3 and move WRKSRC. 2004-04-25 08:37:30 +00:00
lopster Reset maintainer to tech-pkg@ (from ad@, since he is not working on them 2004-05-07 11:54:35 +00:00
maradns Convert to buildlink3. 2004-04-25 08:24:03 +00:00
md-whois replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 14:50:05 +00:00
mirror call ${BSD_INSTALL}, not "install". 2004-01-27 14:06:46 +00:00
mldonkey Update to 2.5.21: 2004-05-25 10:38:18 +00:00
mouse-pppoe Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
mrstat
mrt Do not use "find -d". This option is not available on all supported platforms. 2004-01-28 23:24:08 +00:00
mrtg Updated mrtg to 2.10.15 2004-08-30 18:40:14 +00:00
mtr replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 14:50:05 +00:00
mtr-gtk replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 14:50:05 +00:00
nam Hack to fix build with threaded Tcl package: at configure time snarf the value 2004-04-12 17:28:47 +00:00
nap Convert to buildlink3 and fix build with gcc3. 2004-04-25 21:00:16 +00:00
napshare Convert to buildlink3. 2004-04-25 08:24:03 +00:00
nbtscan Update to version 1.5.1. Patch provided in PR 26574 by Isihara Takanori. 2004-08-07 09:10:01 +00:00
ncftp2 Convert to buildlink3. 2004-04-25 08:01:15 +00:00
ncftp3 update to ncftp-3.1.8 2004-08-30 21:44:23 +00:00
neat Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
nemesis Convert to buildlink3. 2004-04-25 04:19:27 +00:00
net-snmp Changes 5.1.2: 2004-08-13 11:28:49 +00:00
netatalk mk/bsd.pkg.install.mk now automatically registers 2004-04-23 22:07:52 +00:00
netcat add a valuable feature from Debian: quit after EOF on stdin 2004-08-05 14:47:46 +00:00
netname
netperf
netsaint-base Bump PKGREVISION and remove X11 support where appropiate. 2004-06-20 21:52:07 +00:00
netsaint-plugin-cluster Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
netsaint-plugin-snmp Make this use net-snmp; ucd-snmp is dead. 2004-02-22 16:40:50 +00:00
netsaint-plugins Use the new mk/pgsql.buildlink3.mk to select the correct PostgreSQL 2004-07-24 22:45:14 +00:00
ngrep Add a patch to fix privilege handling. 2004-07-05 21:42:46 +00:00
nicotine PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
nidentd Bump to 1.0nb1: Fix bug in handling of masquerading. 2003-10-07 19:35:34 +00:00
nmap Update to version 3.70. 2004-09-01 01:20:51 +00:00
nmapfe Update to version 3.70. 2004-09-01 01:20:51 +00:00
nocol Teach configure script about NetBSD 2* to make package build on NetBSD-2.0. 2004-07-10 20:19:11 +00:00
nprobe Finish conversion to buildlink3. 2004-04-27 04:30:54 +00:00
ns Hack to fix build with threaded Tcl package: at configure time snarf 2004-04-11 09:31:13 +00:00
nsca Convert to buildlink3. 2004-04-25 08:24:03 +00:00
nsd nsd 2.1.2. 2004-07-31 17:15:15 +00:00
nslint Honor *OWN and *GRP. 2004-04-16 21:06:41 +00:00
ntop Convert to buildlink3. 2004-04-25 08:24:03 +00:00
ntop2 Convert to buildlink3. 2004-05-05 03:02:01 +00:00
ntp4 * Enable pkgviews installation. 2004-07-23 19:59:41 +00:00
oidentd mk/bsd.pkg.install.mk now automatically registers 2004-04-23 22:07:52 +00:00
oinkmaster Initial import of oinkmaster-0.8, from pkgsrc-wip packaged by Adrian 2004-04-20 09:36:09 +00:00
openag PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
openh323 Convert to buildlink3. 2004-05-08 06:41:33 +00:00
openntpd Fix typo. 2004-07-23 20:04:49 +00:00
openslp LTCONFIG_OVERRIDE is deprecated. 2004-07-24 13:47:04 +00:00
openvpn Convert to buildlink3. 2004-04-11 07:23:57 +00:00
ORBit Unused. 2004-05-05 08:27:56 +00:00
ORBit2 update to 2.10.3 2004-07-09 22:06:54 +00:00
overnet Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
p5-DNS-ZoneParse Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-Geo-IP Import p5-Geo-IP from pkgsrc-wip. Packaged by xtraeme@ and updated by me. 2004-07-03 00:59:03 +00:00
p5-INET6 Convert to buildlink3. 2004-05-08 07:37:40 +00:00
p5-IO-Interface Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-IO-Socket-Multicast Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-ispman Convert to buildlink3. 2004-05-11 04:22:48 +00:00
p5-Net Update p5-Net to libnet-1.19 because I need the XVERP support in the mail() 2004-07-19 11:04:23 +00:00
p5-Net-Bind Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-Net-CIDR-Lite Initial import of Net::CIDR::Lite. 2004-02-17 22:41:44 +00:00
p5-Net-Daemon Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-Net-DNS Update to version 0.47. 2004-05-29 16:50:49 +00:00
p5-Net-DNSServer Convert to buildlink3. 2004-05-08 07:37:40 +00:00
p5-Net-Gnats Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-Net-Google Convert to buildlink3. 2004-05-08 04:50:50 +00:00
p5-Net-IP This package requires Perl v5.8.0. 2004-02-23 16:00:18 +00:00
p5-Net-IRC Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-Net-Pcap Initial import of p5-Net-Pcap, from pkgsrc-wip packaged by Adrian 2004-04-20 10:03:35 +00:00
p5-Net-Server Update net/p5-Net-Server to 0.87. Changes from version 0.86 include 2004-08-03 02:32:41 +00:00
p5-Net-SNMP Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-Net-Telnet Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-Net-Telnet-Cisco Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-Net-TFTP Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-Net-Z3950 Convert to buildlink3. 2004-05-08 07:37:40 +00:00
p5-NetPacket Import p5-NetPacket from pkgsrc-wip. Packaged by David Ferlier. 2004-05-10 01:59:00 +00:00
p5-RADIUS Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-SNMP Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-SNMP_Session Convert to buildlink3. 2004-04-27 06:05:57 +00:00
p5-SOAP-Lite Updated p5-SOAP-Lite to 0.60a. 2004-05-16 23:17:33 +00:00
p5-Socket6 Update p5-Socket6 to 0.17 2004-06-26 22:02:12 +00:00
p5-Wais Convert to buildlink3. 2004-05-11 04:07:52 +00:00
pchar Convert to buildlink3. 2004-04-25 08:11:38 +00:00
pconsole
pen Upgrade to 0.12.0. 2003-10-30 23:36:29 +00:00
pfnet Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
php4-ftp bl3ify 2004-04-25 00:18:14 +00:00
php4-snmp bl3ify 2004-04-25 00:18:14 +00:00
php4-sockets bl3ify 2004-04-25 00:18:14 +00:00
php4-yp bl3ify 2004-04-25 00:18:14 +00:00
pim6dd Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
pim6sd Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
pload bl3ify 2004-01-27 13:50:16 +00:00
poink
polsms Convert to buildlink3. 2004-04-25 08:01:15 +00:00
poptop Convert to buildlink3. 2004-04-25 08:01:15 +00:00
ppp-lzs This is initial import of ppp-lzs-1.2. 2004-08-27 00:16:50 +00:00
ppp-mppe Use option "-r" instead of "-e" for the '[' command since this is not 2004-05-23 15:09:06 +00:00
pptp
proftpd Add PAM support (pkg/26522) 2004-08-30 18:13:18 +00:00
proxycheck
publicfile
puf Drop maintainership; I don't have the enough free time to maintain 2004-05-07 01:14:46 +00:00
pure-ftpd Use the new mk/pgsql.buildlink3.mk to select the correct PostgreSQL 2004-07-24 22:45:14 +00:00
pxe Convert to buildlink3. 2004-04-25 06:58:43 +00:00
py-adns add python as category 2004-07-22 09:15:59 +00:00
py-dns add python as category 2004-07-22 09:15:59 +00:00
py-GeoIP add python as category 2004-07-22 09:15:59 +00:00
py-google Add/use buildlink3.mk files. 2004-08-13 08:57:14 +00:00
py-IP add python as category 2004-07-22 09:15:59 +00:00
py-mimelib add python as category 2004-07-22 09:15:59 +00:00
py-ORBit add python as category 2004-07-22 09:15:59 +00:00
py-soaplib add python as category 2004-07-22 09:15:59 +00:00
py-soappy Add/use buildlink3.mk files. 2004-08-13 08:57:14 +00:00
py-spreadmodule add python as category 2004-07-22 09:15:59 +00:00
py-twisted add python as category 2004-07-22 09:15:59 +00:00
py-twisted-docs add python as category 2004-07-22 09:15:59 +00:00
py-xmlrpclib add python as category 2004-07-22 09:15:59 +00:00
py-zsi add python as category 2004-07-22 09:15:59 +00:00
pygopherd Use VARBASE, drop maintainership. 2004-07-09 22:45:04 +00:00
pyslsk Convert to buildlink3. 2004-04-25 08:47:21 +00:00
qadsl link against required socket libs on Solaris. 2004-01-27 13:45:36 +00:00
quagga Convert to buildlink3. 2004-04-25 06:58:43 +00:00
ra-pna-proxy Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
ra-rtsp-proxy Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
radiusd-cistron Convert to buildlink3. 2004-04-25 08:47:21 +00:00
rdesktop PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
rdist6 Butcher this into compiling and apparently running ok on NetBSD-current. 2004-05-31 02:18:44 +00:00
rinetd Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
ripe-whois Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
ripe-whois-tools tidy up how extra libraries are passed and add libs required on 2004-01-27 13:40:03 +00:00
rootprobe s/analaysis/analysis/ 2004-02-21 07:31:31 +00:00
rp-l2tp replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 14:50:05 +00:00
rp-pppoe mk/bsd.pkg.install.mk now automatically registers 2004-04-23 22:07:52 +00:00
rsync Make build on Interix, essentially with the fix from PR pkg/25910. A better 2004-08-20 14:22:16 +00:00
ruby-drb Add ruby to CATEGORIES. 2004-03-16 02:01:09 +00:00
ruby-icmp Add ruby to CATEGORIES. 2004-03-16 02:01:09 +00:00
ruby-xmlrpc4r Add ruby to CATEGORIES. 2004-03-16 02:01:09 +00:00
samba Change the way that legacy USE_* and FOO_USE_* options are converted 2004-08-22 19:32:51 +00:00
samba2 Update samba2 package to 2.2.10 2004-08-07 08:18:37 +00:00
scdp Initial import of scdp-1.0.2 from pkgsrc-wip. Packaged by Tilman Linneweh. 2004-05-10 09:30:06 +00:00
scli Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG, 2004-08-27 06:29:06 +00:00
sdig Convert to buildlink3. 2004-04-25 08:11:38 +00:00
sdist
SDL_net Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properly 2004-03-18 09:12:08 +00:00
sendfile Convert to buildlink3. 2004-04-25 07:39:25 +00:00
sftp Convert to buildlink3. 2004-04-18 07:17:27 +00:00
sharity-light
sipcalc
sitescooper PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
slurm Convert to buildlink3. 2004-04-25 06:58:43 +00:00
smokeping Update smokeping to 1.30 2004-06-23 22:25:44 +00:00
sniffit Convert to buildlink3. 2004-04-18 07:30:16 +00:00
snort - Upgrade snort to 2.1.3 2004-07-01 17:10:22 +00:00
snort-mysql Convert to buildlink3. 2004-04-10 03:10:52 +00:00
snort-pgsql Use the new mk/pgsql.buildlink3.mk to select the correct PostgreSQL 2004-07-24 22:45:14 +00:00
socat PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
socks4 Use LICENSE=no-commercial-use. 2004-08-18 14:25:04 +00:00
socks5 Unused. 2004-04-25 23:34:07 +00:00
soup Changes 0.7.11: 2004-05-19 13:09:44 +00:00
speakfreely Convert to bl3. 2004-04-24 23:53:51 +00:00
speedtouch use MASTER_SITE_SOURCEFORGE instead of an arbitrary mirror 2004-08-05 13:38:00 +00:00
spegla Add MANINSTALL to BUILD_DEFS for completeness. 2003-09-15 16:27:53 +00:00
spread mk/bsd.pkg.install.mk now automatically registers 2004-04-23 22:07:52 +00:00
srsh Depend on security/openssh instead of security/ssh for machines that 2004-05-31 22:13:16 +00:00
ssync
stripes Fix REPLACE_PERL: pathnames listed should be relative to ${WRKSRC}. 2003-09-10 12:52:19 +00:00
tacacs
tcl-scotty Add a patch to fix a race condition in the straps program. If 2004-07-07 14:39:33 +00:00
tcpdmerge Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
tcpdpriv .include "../../bsd.pkg.mk" not .include <../../bsd.pkg.mk> 2004-07-10 09:04:57 +00:00
tcpdstat .include "../../mk/bsd.pkg.mk" not .include <../../mk/bsd.pkg.mk> 2004-07-10 09:08:44 +00:00
tcpdump Convert to buildlink3. 2004-04-18 07:30:16 +00:00
tcpflow Rather than saying "family = family;", say nothing at all. This does not 2004-08-25 07:56:18 +00:00
tcpick Import tcpick from pkgsrc-wip. Packaged by Jose Diaz Fernandez, and 2004-02-23 17:53:33 +00:00
tcpillust Enable tk84 and replace x11/tk with x11/tk83. Packages compatible 2004-03-08 20:27:13 +00:00
tcpreplay Convert to buildlink3. 2004-04-25 04:20:11 +00:00
tcpslice Convert to buildlink3. 2004-04-25 07:39:25 +00:00
tcptrace - make pkglint happy 2004-08-17 19:19:53 +00:00
tcptraceroute Convert to buildlink3. 2004-04-25 04:13:14 +00:00
tightvnc Convert to buildlink3. 2004-05-11 04:22:48 +00:00
tightvncviewer On Interix, use waitpid(-1, status, options) instead of 2004-08-21 05:50:44 +00:00
tinc Drop maintainership; I don't have the enough free time to maintain 2004-05-07 01:14:46 +00:00
tinyfugue Convert to buildlink3. 2004-04-25 06:58:43 +00:00
tkined - Use -ltcl and -ltk instead of -ltcl83 and -ltk83, which are 2004-06-05 04:30:44 +00:00
tn5250 Convert to buildlink3. 2004-04-25 08:01:15 +00:00
tnftp bump PKGREVISION for SIGINT fixes. 2004-07-27 10:25:24 +00:00
tnftpd Update to tnftpd 20040810. Notable changes: 2004-08-10 01:58:11 +00:00
tor Import tor into pkgsrc: 2004-08-13 19:33:41 +00:00
torrentutils Fix installation to make less warnings, and make defrag use 2004-08-29 19:46:45 +00:00
totd this blindly calls "gcc" with gcc specific flags, so use buildlink3 so 2004-07-25 00:10:38 +00:00
traceroute-as Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
trafshow Update to trafshow-4.0, use bl3, include curses.buildlink3.mk, clean 2004-02-16 21:20:04 +00:00
trickle Drop maintainership; I don't have the enough free time to maintain 2004-05-07 01:14:46 +00:00
tsclient Drop maintainership; I don't have the enough free time to maintain 2004-05-07 01:14:46 +00:00
tsocks Convert to buildlink3 and fix a typo in DESCR. 2004-04-25 08:00:46 +00:00
tspc Upgrade to version 1.0... I'd list all the changes to the file, 2003-10-02 05:38:14 +00:00
ttt Convert to buildlink3. 2004-04-25 07:39:25 +00:00
ucarp Forgot to remove this before importing... hmm 2004-07-08 10:31:29 +00:00
ucspi-tcp Enable pkgviews installation. 2004-07-26 19:16:09 +00:00
udptunnel
unison replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 14:50:05 +00:00
unison-devel Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
upclient mk/bsd.pkg.install.mk now automatically registers 2004-04-23 22:07:52 +00:00
userppp Reset maintainer to tech-pkg@ (from ad@, since he is not working on them 2004-05-07 11:54:35 +00:00
vcheck Convert to buildlink3. 2004-04-25 07:39:25 +00:00
vnc Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
vncviewer Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
vsftpd Updated to version 1.2.2. 2004-05-09 00:29:22 +00:00
vtun Convert to buildlink3. 2004-04-11 07:23:57 +00:00
wakeup Include "stdlib.h" to get missing prototype for exit(3) to fix build 2003-09-25 12:08:30 +00:00
wap-utils Convert to buildlink3. 2004-04-25 08:11:38 +00:00
waste Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG, 2004-08-27 06:29:06 +00:00
wget Remove some old rpath hacks that aren't needed with modern buildlink3. 2004-05-16 20:27:04 +00:00
whatmask Update to version 1.2 2003-12-19 12:23:56 +00:00
wimon Add pthread bl3, and some NOT_FOR_PLATFORM lines 2004-08-31 15:35:42 +00:00
wistumbler Convert to buildlink3. 2004-05-08 07:37:40 +00:00
wistumbler2 Update wistumbler2 to 2.00pre7, sent by the Author pancake in private 2004-03-07 23:59:01 +00:00
wminet Convert to buildlink3. 2004-04-18 07:07:06 +00:00
wmnet
wmpload USE_IMAKE implies USE_X11BASE, remove it. 2004-07-21 21:16:10 +00:00
wol Drop maintainership; I don't have the enough free time to maintain 2004-05-07 01:14:46 +00:00
wu-ftpd remove unneeded CONFIG_{GUESS,SUB}_OVERRIDE, as bsd.pkg.mk does this 2004-02-14 00:54:44 +00:00
x2vnc Convert to buildlink3. 2004-04-25 06:58:43 +00:00
xfce4-wavelan-plugin WLAN plugin for XFce4. 2004-07-13 09:20:35 +00:00
xipdump MASTER_SITE moved. 2004-06-01 17:51:28 +00:00
xmftp Convert to buildlink3. 2004-04-18 07:17:27 +00:00
xnap use MASTER_SITE_SOURCEFORGE instead of an arbitrary mirror 2004-08-05 13:38:00 +00:00
xorp expose hidden dependency on openssl and tell configure where to find it. 2004-07-25 00:06:33 +00:00
xrmftp Convert to buildlink3. 2004-04-18 07:17:27 +00:00
xspeakfree Relinquish maintainership of packages to tech-pkg@NetBSD.org. 2004-04-24 22:46:08 +00:00
xtraceroute Convert to buildlink3. 2004-04-18 07:30:16 +00:00
yafc Convert to buildlink3. 2004-04-25 06:58:43 +00:00
yale-tftpd Fix accessList processing when sub directories are involved. 2004-03-21 10:29:51 +00:00
yaz Convert to buildlink3. 2004-05-08 07:37:40 +00:00
ytalk split the common part of this into Makefile.common for forthcoming 2004-03-06 12:01:32 +00:00
ytalk-x11 initial import of ytalk-x11-3.1.1. this package is the same as 2004-03-06 12:05:20 +00:00
ywho use buildlink3 so we strip gcc specific arguments. 2004-07-24 23:56:29 +00:00
zebra Convert to buildlink3. 2004-04-25 07:49:56 +00:00
Makefile Import ppp-lzs from pkgsrc-wip. Thank you, Iain Hibbert. 2004-08-27 00:22:01 +00:00