Commit graph

4574 commits

Author SHA1 Message Date
Min Sik Kim
edf46eb5aa * PLIST is incomplete.
* The man page should show the actual paths to data files, not those
  in /usr/local.
2004-02-12 02:52:20 +00:00
Min Sik Kim
916d16863f libpathan is now in pkgsrc. 2004-02-12 02:43:36 +00:00
Min Sik Kim
a48a236475 libpathan has been moved to pkgsrc. 2004-02-12 02:41:23 +00:00
John R. Shannon
6974144096 Update to gcc-ss-3.4-20040211 2004-02-11 22:58:29 +00:00
John R. Shannon
29cc3276c7 Update to gcc-ss-3.4-20040211. 2004-02-11 22:42:56 +00:00
Bruce J.A. Nourish
9411419dab fix for libtoolization 2004-02-11 22:03:08 +00:00
Bruce J.A. Nourish
9fadfd98b3 libtoolize 2004-02-11 21:59:07 +00:00
Bruce J.A. Nourish
a64b0cbeee Change COMMENT 2004-02-11 21:57:39 +00:00
Sergey Svishchev
b19972c0a2 Update to dmidecode 2.3; while here, bl3ify. 2004-02-11 21:04:48 +00:00
Rich Davies
f6fb4d1b8b Add ruby-raggle and ruby-ncurses. 2004-02-11 20:40:09 +00:00
Adrian Portelli
891fcddf0e Version bump from 1.5.1 to 1.6
2004-01-13 Roy Hills <Roy.Hills@nta-monitor.com>

        * Makefile.am: Added new shell-script-based tests check-run1,
          check-run2, and check-run3.

        * ike-scan.1: Updated man page OPTIONS section and added FILES
          section.

        * Added Russ Allbery's inet_aton replacement function for systems
          like Solaris which don't have inet_aton in the standard library.
          Added inet_aton check to configure.ac.

        * ike-scan.c: Cast char * to unsigned char * before passing to
          isdigit().  isdigit can have problems with char if char is signed
          and value >127, esp. when it's implemeted as a macro that indexes
          into an array as on Solaris 8.

        * Use hexstring() to print cookie values rather than using htonl()
          on the two 32-bit pieces.  Some systems define htonl() to return
          unsigned long while others return unsigned int making it impossible
          to use the same printf format string on all systems.

2004-01-10 Roy Hills <Roy.Hills@nta-monitor.com>

        * iks-scan.c, isakmp.c: Added regular expression support for
          Vendor ID pattern matching.  Patterns in ike-vendor-ids
          are now Posix basic regular expressions which are compiled
          with "regcomp" and matched against the hex representation
          of the Vendor ID data with "regexec".

        * configure.ac: Added check for Posix regular expression
          support.

2003-12-30 Roy Hills <Roy.Hills@nta-monitor.com>

        * isakmp.c: Added transform attribute generation functions make_attr()
          and add_attr().  Use these functions in make_trans() to improve
          readability and allow for future flexibility.

        * ike-scan.c: Free various bits of malloc'ed storage when they are
          no longer used.  The pointers involved are: vid_data, patcopy,
          id_data, gss_data, hdr, sa, prop, transforms, ke, nonce, id and vid.
          These are all used only at initialisation time.  We don't save much
          memory by free'ing these, but it's better to be neat & tidy.

        * check-sizes.c: New test program which checks the sizes of structures
          and types.  This is referenced by the TESTS target in Makefile.am,
          so it gets run by "make check".

        * ike-scan.c: check_struct_sizes() is now obsolete and has been
          removed.

2003-12-29 Roy Hills <Roy.Hills@nta-monitor.com>

        * isakmp.c: Fixed bug which caused the data length for ID and VID
          payloads to be 8 bytes more than it really was (we were not
          subtracting the length of the header structure).

        * isakmp.c: Only check the returned VID against a candidate pattern if
          the VID data length is >= the candidate pattern length.

        * isakmp.c: Moved notification_msg[] from global to process_notify()
          function.  Use STR_OR_ID macro to display appropriate string from
          notification_msg[] which avoids a hard-coded constant.  Changed
          format of "Firewall-1" 9101 notify message.

2003-12-24 Roy Hills <Roy.Hills@nta-monitor.com>

        * ike-scan.c: Modified error message if bind() fails to be more
          specific depending on the value of errno.

        * ike-scan.c: Added --quiet option to prevent packet decode and thus
          shorten the output if required and --multiline option to split the
          decode over multiple lines (one line per payload).

        * ike-scan.c: Improved protocol decode.  SA and ID payloads are now
          decoded.  For SA, the various transform attributes are shown.

        * ike-scan.c: Added utility functions printable() and hexstring() to
          provide escaped-printable and hex representations of data.

        * isakmp.c: New process_id() function to process ID payload. Improved
          process_sa() function to decode transforms.  Transform decoding is
          no longer experimental.

2003-12-19 Roy Hills <Roy.Hills@nta-monitor.com>

        * isakmp.c: Added experimental support for displaying transform
          attributes.  This code is only enabled if the --experimental option is
          specified.  New attribute parseing function process_attr(),
          new macro STR_OR_ID, and new function numstr() as well as additional
          code in process_sa() function.

2003-12-11 Roy Hills <Roy.Hills@nta-monitor.com>

        * ike-scan.c: Added support for Vendor ID fingerprinting using
          fingerprints loaded from the file "ike-vendor-ids".  Added
          --vidpatterns (-I) option to specify Vendor ID patterns file
          location if it's not the default.

        * isakmp.c: Modified process_vid() to check for known Vendor ID
          and print entry from database if found.

2003-12-10 Roy Hills <Roy.Hills@nta-monitor.com>

        * ike-scan.c: Allow target hosts to be specified as IPnet/bits or
          IPstart-IPend as well as the traditional single host or IP address.
          The new function add_host_pattern() deals with these new formats.
          Added details to usage() to explain these additional formats.
          This functionallity was first requested by Chris Gripp in Jan 2003.

2003-11-28 Roy Hills <Roy.Hills@nta-monitor.com>

        * ike-scan.c: Removed unecessary gethostbyname() call.

2003-11-23 Roy Hills <Roy.Hills@nta-monitor.com>

        * ike-scan.c: Removed many global variables and made them local to
          main().  Only 4 global variables left now, all of which have
          some reason to stay global.

2003-11-22 Roy Hills <Roy.Hills@nta-monitor.com>

        * isakmp.c: Added support for GSS ID attribute in make_trans()
          function.

2003-11-21 Roy Hills <Roy.Hills@nta-monitor.com>

        * isakmp.c: Added support for lifesize (KB) to add_trans() and
          make_trans() functions.

        * ike-scan.h: Modified function definitions for add_trans(),
          make_trans(), and initialise_ike_packet() to take lifesize
          argument.

        * ike-scan.c: Added support for --lifesize (-z) option.  Default
          is not to include this attribute.

2003-11-18 Roy Hills <Roy.Hills@nta-monitor.com>

        * isakmp.c: Wrote ISAKMP packet parsing routines: skip_payload,
          process_isakmp_hdr, process_sa, process_vid, process_notify.
          These are used by the new display_packet() routine in ike-scan.c

        * ike-scan.c: Re-wrote display_packet() function to parse ISAKMP
          packet in a flexible way using functions in isakmp.c.  This
          allows us to display multiple Vendor ID payloads (previously we
          could only display the first), and also to detect and print
          vendor ID payloads anwhere in the packet (previously it had to be
          immediately after the SA payload, which may not be the case with
          aggressive mode).
2004-02-11 19:09:14 +00:00
Bruce J.A. Nourish
b467b04915 Rename to net-quanta. 2004-02-11 17:41:01 +00:00
Bruce J.A. Nourish
67cf971c0e QUANTA is a toolkit for supporting Optiputer applications over optical
networks.

Getting TeraNode applications to work optimally on a high speed optical
network is not as simple as connecting ones computer to the Internet.
Today's protocol stacks and scientific applications cannot and do not
know how to utilize this extreme level of bandwidth even when it is
available. We intend to address this problem with Quanta, a
cross-platform adaptive networking toolkit for supporting the
extraordinary networking requirements of Tera-Nodes.

Note: This has nothing to do with www/quanta*, the KDE HTML editor.
2004-02-11 17:37:42 +00:00
Rich Davies
233354f404 RSS console in Ruby.
Screen aware, auto-detects browser, and lots more.
2004-02-11 17:17:23 +00:00
Rich Davies
3075ccbc00 Ruby interface to ncurses. 2004-02-11 15:48:37 +00:00
Michal Pasternak
dfa8e74b56 Typo! 2004-02-11 09:31:01 +00:00
Michal Pasternak
9cd63fd885 bl3ify, use pkgsrc cal3d 2004-02-11 09:24:09 +00:00
Michal Pasternak
57bde9e80d -cal3d, -cal3d_cally 2004-02-11 09:22:34 +00:00
Michal Pasternak
a12bc4930f Tim Rightnour <root at garbled dot net> took that packages, imported to pkgsrc-wip, and is willing to activley maitain it. 2004-02-11 09:22:14 +00:00
Michal Pasternak
4d6f602145 +diveintopython 2004-02-11 07:08:36 +00:00
Min Sik Kim
331acd9ec8 bl3ify and use yacc. 2004-02-11 06:03:01 +00:00
Min Sik Kim
452d769cd6 DOM header files are provided by xerces-c. 2004-02-11 05:57:47 +00:00
Min Sik Kim
aa3351138c bl3ify and cosmetic changes. 2004-02-11 05:48:33 +00:00
Min Sik Kim
2c654e292d Needs thread support by python. 2004-02-11 05:24:51 +00:00
Bruce J.A. Nourish
26f085a931 Various fixes; bl3 support. 2004-02-11 05:24:22 +00:00
Bruce J.A. Nourish
899e0225b3 Remove todo 2004-02-11 05:21:40 +00:00
Bruce J.A. Nourish
a74af204b9 Minor fixes and buildlink3 support. 2004-02-11 05:19:35 +00:00
Min Sik Kim
0bb3db2bc3 ike-scan 1.6 is out. 2004-02-11 05:13:40 +00:00
Jeremy C. Reed
35dba3a3f6 libXt needs IceProcessMessages and SmcSaveYourselfDone and others.
So add to ICE and SM libraries to LDFLAGS.

If there is a better way to do this, please let me know.

(This problem would probably fix itself with software using the
pkg-config system.)
2004-02-11 05:10:18 +00:00
Bruce J.A. Nourish
a39a5e887c Part of previous commit. 2004-02-11 04:49:35 +00:00
Bruce J.A. Nourish
341ebe20fc Fixes for NetBSD, buildlink work and other small changes. 2004-02-11 04:48:54 +00:00
Michal Pasternak
49edf46f1f Dive Into Python is a free Python book for experienced programmers.
This package installs HTML (many files) variant of the book together with
sample source applications.
2004-02-11 04:46:42 +00:00
Jeremy C. Reed
7fd33df41d The final library uses libXext, so depend on it.
And bump PKGREVISION.
Also in buildlink3.mk, add to LDFLAGS so -lXext is used.
2004-02-11 04:26:20 +00:00
Min Sik Kim
19eabe1778 Enable libpathan, dbxml, py-dbxml. 2004-02-11 04:24:19 +00:00
Bruce J.A. Nourish
2c1085155a Added QUANTA 2004-02-11 01:48:54 +00:00
Bruce J.A. Nourish
a5f2b1b053 QUANTA is a toolkit for supporting Optiputer applications over optical
networks.

Getting TeraNode applications to work optimally on a high speed optical
network is not as simple as connecting ones computer to the Internet.
Today's protocol stacks and scientific applications cannot and do not
know how to utilize this extreme level of bandwidth even when it is
available. We intend to address this problem with Quanta, a
cross-platform adaptive networking toolkit for supporting the
extraordinary networking requirements of Tera-Nodes.

Note: This has nothing to do with www/quanta*, the KDE HTML editor.
2004-02-11 01:47:43 +00:00
Bruce J.A. Nourish
07ca077223 Prelimiary buildlink2 support 2004-02-11 01:40:57 +00:00
Thomas Klausner
ceb4aae584 Enable NetBSD-*-i386 -- "rar t file" works at least on 1.6ZF/i386 without
problems or additional support libraries.
2004-02-10 23:48:14 +00:00
Adrian Portelli
23993d6f59 Add more documentation and database setup scripts on install. 2004-02-10 23:36:06 +00:00
Adrian Portelli
690a09240a Version bump from 0.7 to 0.8. Mainly a security fix addressing:
- Do not answer to TCP segments that carry both SYN and RST flags. Without
  this fix, it is easy to remotely detect Honeyd.
- Drop privileges if permitted by configuration.
2004-02-10 23:31:45 +00:00
Bruce J.A. Nourish
ab780abca0 Add Coin. 2004-02-10 23:01:52 +00:00
Bruce J.A. Nourish
802b668d64 Coin is an implementation of the Open Inventor API, fully backwards
compatible with SGI Open Inventor v2.1, and incorporating many new
features. Coin is portable across Win32, Linux, SGI IRIX, Mac OS X,
HP-UX, Sun Solaris, IBM AIX, and other platforms (like NetBSD :-).
2004-02-10 23:00:34 +00:00
Thomas Klausner
9035100840 Sort. 2004-02-10 22:29:13 +00:00
Tim Bishop
b558d23820 Update libstatgrab to 0.8.2. 2004-02-10 21:50:20 +00:00
Bruce J.A. Nourish
ff8f669993 TODO: buildlink3 2004-02-10 21:00:30 +00:00
Bruce J.A. Nourish
3d561a8fa5 Trivial Makefile fix & add buildlink2 support. 2004-02-10 20:59:55 +00:00
Bruce J.A. Nourish
582aba1865 Add simage. 2004-02-10 20:46:04 +00:00
Bruce J.A. Nourish
68783cbc82 Take 3 2004-02-10 20:42:21 +00:00
Min Sik Kim
19c31443fd py-gnutls has been moved to pkgsrc. 2004-02-10 19:33:57 +00:00
Min Sik Kim
ab05b3bd7a line wrap 2004-02-10 18:53:39 +00:00