summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2000-03-23Add and enable "uemacs".tron1-1/+2
2000-03-23Adapt this package to NetBSD.tron12-22/+52
2000-03-23move dependency from qt-1.44 to qt1-1.44dmcmahill9-21/+87
2000-03-23Import "uemacs" port from FreeBSD ports collection:tron12-0/+1431
A full screen editor
2000-03-23update dependency from qt-1.44 to qt1-1.44dmcmahill3-21/+19
2000-03-23move dependency from qt-1.44 to qt1-1.44.dmcmahill3-21/+18
2000-03-23add and enable qt1dmcmahill1-1/+2
2000-03-23This is a modified version of the qt-1.44 package. It has been modifieddmcmahill12-0/+861
to coexist with the up and coming qt-2.0.2 package. This will allow packages which still requrire qt-1.44 to work (ie are not compatible with Qt-2). As such, this package should be considered a temporary one. Once all packages which use qt-1.* have be updated to use qt-2.*, this package may be depricated. The modifications to this package from the qt-1.44 package are: - header files are installed in ${PREFIX}/include/qt1 - manual pages have "_1" appended to the name (ie "man foo" becomes "man foo_1") - the program "moc" is now named "moc1"
2000-03-23Update to roller-1.1kim2-4/+4
- proc-messages updated to handle more recent NetBSD versions - proc-news updated to ignore XTHREAD, if reported as unknown
2000-03-23Initial import of new "lynx-current" package, lynx-2.8.3dev22. Numerousfredb5-0/+183
bug fixes and changes from 2.8.2. A few visible ones: * update documentation to reflect move from sol.slcc.edu to lynx.isc.org -PG * add FTP_PASSIVE option to lynx.cfg, allowing installer to defer decision of whether lynx uses passive ftp connection (adapted from patch by Bernhard Rosenkraenzer <bero@redhat.de>) -TD * change configure script defaults for --enable-persistent-cookies and --enable-alt-bindings to 'yes' -TD [For persistent cookies, PERSISTENT_COOKIES:TRUE must be set in lynx.cfg.] This package applies the latest moxienet patch to support `https' URI's, utilizing openssl-0.9.4. (Closes PR pkg/7288.) Also, garbage collects PASSIVE_FETCH--it's now a run time option, and installs all doc's and help files, including sample lynx.cfg, into ${LOCALBASE}/share/lynx. (Active config is still ${LOCALBASE}/etc/lynx.cfg.)
2000-03-23Make this "highly portable program" compile on Solaris.agc7-11/+87
2000-03-23Make this package work on Solaris.agc3-33/+24
2000-03-23kab does not compile on Solaris platforms - work around this, and maintainagc2-1/+573
a separate PLIST for Solaris.
2000-03-22Remove outdated RealPlayer 5.0 and RealPlayer G2 packages. These arejlam15-437/+1
no longer available on the real.com website. Also superseded by the Realplayer 7 package (audio/realplayer7).
2000-03-22actually *do* something for C++ and Makefile files, like the docs say (XXX: ↵mrg2-1/+17
many more still missing).
2000-03-22Update to version 1.10.8. New since 1.10.7:fredb5-28/+11
* Anonymous read-only access can now be done without requiring a password. On the server side, simply give that user (presumably `anonymous') an empty password in the CVSROOT/passwd file, and then any received password will authenticate successfully.
2000-03-22Disable realplayerG2 and mark as superseded by realplayer7rh2-3/+4
2000-03-22Add and enable realplayer7rh1-1/+2
2000-03-22Initial import of realplayer7, the current beta version of RealAudiorh9-0/+473
and RealVideo for Linux. This package was submitted in PR 9652 by John Darrow, thanks!
2000-03-21Update for distribution file change.tron1-2/+2
2000-03-21Use official site and official mirror in master site list.tron1-2/+3
2000-03-21Because the minor of "libpng" was bumped we must sure that packagestron33-66/+66
compiled for the update "png" package depend on it.
2000-03-21Update "ImageMagick" package to version 5.1.1. Changes since version 4.2.9:tron6-44/+59
- ImageMagick has a new logo (contributed by Ofer Tenenbaum). - Requests for all or part of a pixel row, or multiple complete pixel rows, are mapped directly to the underlying image in memory, or memory mapped from a disk file, avoiding performance-robbing pixel copying. Requested rectangular regions which are narrower than the image width must still be copied to a scratch space. - Support for WBMP, Wireless Bitmap (level 0) images (contributed by Milan Votava) - Image sizes are limited by physical memory plus available disk space on the machine, or the file addressing limits of the operating system, whichever comes first. This means that if you can figure out how to build a big enough machine (and have plenty of time) terabyte images can be processed. - An image cache subsystem and API are provided to map portions (as small as one pixel or as large as the entire image) of images into memory and to save any updates. - Memory mapping is used to access files. This is the most efficient access mechanism available. - DirectColor pixels are now stored in an efficient 32-bit structure (or 64-bit when QuantumLeap is enabled). - PseudoColor indices are now stored separately from the DirectColor pixels (PseudoColor and DirectColor representations are still available simultaneously). - In-memory run-length encoding is eliminated. - Compressed images are decompressed and compressed incrementally in order to limit memory consumption. - Lots of minor C API fixes and improvements. - Cache threshold setting for setting the boundary between use of RAM or RAM + disk when processing an image: - Use the --enable-cache option (e.g. --enable-cache=160) to set the compiled-in default when running the configure script. - Use -cache for ImageMagick utilities - Set the cache_threshold attribute in PerlMagick - Set the cacheThreshold attribute in Magick++ - The identify utility now displays precise read-time values. - The Win32 build environment (now called "VisualMagick") is completely re-done and supports building both multi-thread DLL as well as static libraries.
2000-03-21Update "png" package to version 1.0.6. Changes since version 1.0.5:tron5-12/+11
- Added contrib/pngsuite and contrib/pngminus (Willem van Schaik) - Fixed a typo in the png_set_sRGB() function call in example.c (Jan Nijtmans) - Further optimization and bugfix of pngvcrd.c - Revised pngset.c so that it does not allocate or free memory in the user's text_ptr structure.- Instead, it makes its own copy. - Added code in pngwrite.c to free info_ptr->text[i].key to stop a memory leak. - Created separate write_end_info_struct in pngtest.c for a more severe test. - Moved PNG_FLAG_HAVE_CHUNK_HEADER, PNG_FLAG_BACKGROUND_IS_GRAY and PNG_FLAG_WROTE_tIME from flags to mode. - Added png_write_info_before_PLTE() function. - Fixed some typecasting in contrib/gregbook/*.c - Updated scripts/makevms.com (Martin Zinser) - Moved png_get_header_version from png.h to png.c, to accomodate ansi2knr. - Removed all global arrays (according to PNG_NO_GLOBAL_ARRAYS macro), to accomodate making DLL's: Moved usr_png_ver from global variable to function png_get_header_ver() in png.c.- Moved png_sig to png_sig_bytes in png.c and eliminated use of png_sig in pngwutil.c.- Moved the various png_CHNK arrays into local arrays.- Eliminated use of global png_pass arrays.- Declared the png_CHNK and png_pass arrays to be "const".- Made the global arrays available to applications when PNG_NO_GLOBAL_ARRAYS is not defined or when PNG_USE_GLOBAL_ARRAYS is defined.- Made available to applications a macro "PNG_USE_LOCAL_ARRAYS". - Changed the PNG_sRGB_INTENT macros in png.h to be consistent with PNG-1.2. - Change PNG_SRGB_INTENT to PNG_sRGB_INTENT in libpng.txt and libpng.3 - Added PNG_EXPORT_VAR macro to accommodate making DLL's. - Refactored the inflate/deflate support to make adding new chunks with trailing compressed parts easier in the future (Eric S. Raymond). - Added iCCP, iTXt, sCAL, and sPLT support; added "lang", "lang_key", and itxt_length" members to the png_text structure (Eric S. Raymond, Glenn R-P) - Changed png_get_oFFs() and png_set_oFFs() to use signed rather than unsigned offsets (Eric S. Raymond). - Combined PNG_READ_cHNK_SUPPORTED and PNG_WRITE_cHNK_SUPPORTED macros into PNG_cHNK_SUPPORTED and combined the three types of PNG_text_SUPPORTED macros, leaving the separate macros also available. - Removed comments on #endifs at the end of many short, non-nested #if-blocks. - Changed makefile.solaris to issue a warning about potential problems when the ucb "ld" is in the path ahead of the ccs "ld". - Removed "- [date]" from the "synopsis" line in libpng.3 and libpngpf.3. - Added code in pngwrite.c to work around a newly discovered zlib bug. - Unknown chunk handling is now supported (Eric S. Raymond). - Option to eliminate all floating point support was added.- Some new fixed-point functions such as png_set_gAMA_fixed() were added. - Added new type "png_fixed_point" for integers that hold float*100000 values - Added many parentheses, e.g., "if (a && b & c)" becomes "if (a && (b & c))" - Added png_handle_as_unknown() - Added chunk_list and num_chunk_list members of png_ptr. - Define png_get_int_32 when oFFs chunk is supported as well as when pCAL is. - Added functions png_set_read_user_chunk_fn() and png_get_user_chunk_ptr() for setting a callback function to handle unknown chunks and for retrieving the associated user pointer (Glenn). - Added png_free_data() function. - Added high-level functions png_read_png() and png_write_png() (ESR). - Renamed pngdll.mak to makefile.bd32 - Cosmetic changes in pngtest.c - Fixed pngvcrd.c bug by pushing/popping registers in mmxsupport (Bruce Oberg) - Revised makefile.gcmmx - Fixed a bug in pngrtran.c that improperly expanded the background color. - Return *num_text=0 from png_get_text() when appropriate, and fix documentation of png_get_text() in libpng.txt/libpng.3. - Added PNG_SETJMP_SUPPORTED, PNG_SETJMP_NOT_SUPPORTED, and PNG_ABORT() and "png_jmpbuf()" macros to pngconf.h, to help people migrate to the new error handler that's planned for the next libpng release, and changed example.c, pngtest.c, and contrib programs to use this macro. - Revised some of the DLL-export macros in pngconf.h (Greg Roelofs) - Fixed some mistakes in the unused and undocumented INCH_CONVERSIONS functions in pngget.c - Updated makefile.linux and makefile.gccmmx to make directories conditionally. - Increased precision of rgb_to_gray calculations from 8 to 15 bits and added png_set_rgb_to_gray_fixed() function. - Added makefile.bc32 (32-bit Borland C++, C mode) - Updated references to the zlib home page, which has moved to freesoftware.com. - Corrected bugs in documentation regarding png_read_row() and png_write_row(). - Renamed makefile.borland,turboc3 back to makefile.bor,tc3 as in version 1.0.3, revised borland makefiles; added makefile.ibmvac3 and makefile.gcc (Cosmin) - Added makefile.sggcc (SGI IRIX with gcc)
2000-03-21Update "analog" package to version 4.04. Changes since version 4.03:tron4-20/+24
- The analog home page has moved to www.analog.cx - New column d in non-time reports. - The RUNTIME command now turns off the "Program started at" line as well as the "Running Time" line. - Non-alphanumeric characters are now allowed in the REPORTORDER as separators. - Correctly parses more APACHELOGFORMATs. - Better detection of Windows 2000 in Operating System Report. - Better warning messages when the erroneous command contained a space. - Code for NeXTSTEP operating system. - Better treatment of multibyte character sets. - Icelandic language files. Corrections to Bosnian, French, Italian, Japanese & Swedish.
2000-03-21Update dependency on gd-1.7.3 to gd>=1.7.3.he1-2/+2
2000-03-21Add prototype for gdImageCreateFromXpm in gd.h.he2-1/+14
Patch originally (a small) part of GD-1.26.
2000-03-21- Update home page URL.tron2-5/+28
- Update master site list. - Apply patches from squid home page.
2000-03-21Pull in patch from scotty 2.1.9 to make the straps program not deadlockhe2-1/+27
due to leftover client file descriptors where the parent has gone away. Scotty really ought to be upgraded to 2.1.10.
2000-03-21Add and enable memconfagc1-1/+2
2000-03-21Import memconf, a physical memory information utility for Solaris, intoagc5-0/+35
the packages collection. memconf reports the size of each SIMM/DIMM memory module installed in a system. It also reports the system type and any empty memory sockets. In verbose mode, it also reports: banner name, model, and CPU/system frequencies address range and bank numbers for each module
2000-03-21Update fortify to 1.4.6. Changes from 1.4.5:jlam3-19/+208
Added Communicator versions for 4.72 and several more platforms.
2000-03-20Make this package work on Solaris.agc5-0/+72
2000-03-20This package works on Solaris, so add it to ONLY_FOR_PLATFORM.agc1-2/+2
2000-03-20Upgrade snort to version 1.6. Changes since version 1.5.1 include:agc4-25/+9
New features: * Token Ring and FDDI decoder support * Snort ported to Tru64/Alpha, IRIX 6.X, and AIX * Output plugins added (modular output system) * John Wilson greatly improved the speed of the content pattern matcher * Added FlexResp (active response) plugin from Christian Lademann * Snort man page now ships with the distribution * Snort now generates a PID file for easier integration with scripting * Added support for "stealthed" network interfaces New command line switches: * -q => quiet mode (no stdout printing) * -C => print payload ASCII content only * -P => set explicit snaplen for packet collection Plugins: * Added Postgres SQL DB logging output module from Jed Pickel * Added portscan detection plugin from Patrick Mullen * HTTP decode preprocessor largely rewritten and much more accurate * Minfrag rule moved to preprocessor module * Added ICMP ECHO ID check plugin * Added ICMP ECHO sequence check plugin * Added RPC analysis plugin from Mark Hindess * Added IP option analysis plugin * Added nocase plugin (makes content rules work with case insensitivity) * Added syslog output module with user definable syslog facility * Added tcpdump output module (and building without patches on Solaris).
2000-03-20Optimize dependence pattern.tron1-2/+2
2000-03-20Depend on "ssh" or "ssh6" package.tron1-2/+2
2000-03-20split security/ssh and security/ssh6.itojun73-3566/+11535
security/ssh6: IPv4/v6 ready, socks unavailable, kerberos available (not tested) security/ssh: IPv4 onlyready, socks available, kerberos available (not tested) should be integrated into one whenever socks support becomes aware of getaddrinfo/getnameinfo. two directories with tons of patches/patch-* is a maintenance headache.
2000-03-19Add and enable "bounce".fredb1-1/+2
2000-03-19New package bounce-0.0: tool to forward TCP connection from one IP to another.fredb5-0/+30
Submitted by Emmanuel Dreyfus in PR pkg/9637.
2000-03-19Regenjlam1-2/+2
2000-03-19Fix my sloppiness...this should fix 1.4.x compiles.jlam1-6/+6
2000-03-18Fix pasto: s/bison/nana/gjlam1-3/+3
2000-03-18remove now unused TRN_* variables, and add trn again to comment forwiz1-18/+2
USE_INN.
2000-03-18Use nntpclnt or inn instead of trn's own inews (so that admins only have towiz5-105/+64
configure one inews). Also use 'share' instead of 'lib'. Pointed out and cross-checked by Kimmo Suominen <kim@tac.nyc.ny.us>.
2000-03-18Regen.jlam1-2/+2
2000-03-18Don't create /tiff.sw.tools on installation.jlam1-5/+7
2000-03-18SSH_DONT_USE_IDEA is deprecated, so include USE_IDEA in BUILD_DEFS instead.jlam1-2/+2
2000-03-18Nuke PGSQL_USE_TCL. Superseded by databases/{tcl,tk}-postgresql.jlam1-6/+1
2000-03-18Note addition of tcl-postgresql and tk-postgresqljlam1-1/+3