summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2003-04-30Add ickle-0.3.2: Simplistic gtk+ icq clienthubertf7-0/+345
ickle is an ICQ2000 Client using the GTK+ graphical toolkit. It aims to bring all the useful features of ICQ2000 to non-windows users, such as SMS messaging. Contributed by blef@users.sourceforge.net via pkgsrc-wip.
2003-04-29Add and enable mtl.jtb1-1/+2
2003-04-29Note addition of mtl-2.1.2-21.jtb1-1/+2
The Matrix Template Library is a C++ class library for basic linear algebra. The MTL is designed for high-performance while at the same time taking advantage of the generic programming paradigm (ala the STL) to allow much greater flexibility and breadth of functionality. Many new and advanced programming techniques were used in the construction of this library. The MTL is a low level library in the sense that the user must be conscious of the matrix type being used, and that all computationally expensive operations are explicit. The MTL is not a C++ Matlab. Nevertheless, the interface is designed to be simple and easy to use. The matrix types provided include compressed sparse row/column, banded, packed, diagonal (and tridiagonal), envelope, array of pointers, and of course dense matrices. All matrix types share a common and easy to use interface. The algorithms consist of the traditional basic linear algebra routines (from the BLAS level-1 to 3) which includes matrix and vector arithmetic as well as operations such as backward substitution and norm calculations.
2003-04-29Initial import of mtl.jtb4-0/+188
The Matrix Template Library is a C++ class library for basic linear algebra. The MTL is designed for high-performance while at the same time taking advantage of the generic programming paradigm (ala the STL) to allow much greater flexibility and breadth of functionality. Many new and advanced programming techniques were used in the construction of this library. The MTL is a low level library in the sense that the user must be conscious of the matrix type being used, and that all computationally expensive operations are explicit. The MTL is not a C++ Matlab. Nevertheless, the interface is designed to be simple and easy to use. The matrix types provided include compressed sparse row/column, banded, packed, diagonal (and tridiagonal), envelope, array of pointers, and of course dense matrices. All matrix types share a common and easy to use interface. The algorithms consist of the traditional basic linear algebra routines (from the BLAS level-1 to 3) which includes matrix and vector arithmetic as well as operations such as backward substitution and norm calculations.
2003-04-29Note addition of erlang-9.1.jtb1-1/+2
Erlang is a programming language which has many features more commonly associated with an operating system than with a programming language: concurrent processes, scheduling, memory management, distribution, networking, etc. The initial open-source Erlang release contains the implementation of Erlang, as well as a large part of Ericsson's middleware for building distributed high-availability systems.
2003-04-29Add and enable erlang.jtb1-1/+2
2003-04-29Initial import of erlang-9.1.jtb5-0/+3435
Erlang is a programming language which has many features more commonly associated with an operating system than with a programming language: concurrent processes, scheduling, memory management, distribution, networking, etc. The initial open-source Erlang release contains the implementation of Erlang, as well as a large part of Ericsson's middleware for building distributed high-availability systems.
2003-04-29Note update of sather to 1.2.1nb1.jtb1-1/+2
2003-04-29Fix use of _OPSYS_RPATH_NAME causing broken compiler.jtb7-55/+47
Bump PKG_REVISION.
2003-04-29lua-5.0 update done.jtb1-2/+1
2003-04-29Note update of lua to 5.0.jtb1-2/+3
2003-04-29Update to version 5.0.jtb9-82/+79
* Changes from version 4.0 to 5.0 ------------------------------- Language: + lexical scoping. + Lua coroutines. + standard libraries now packaged in tables. + tags replaced by metatables and tag methods replaced by metamethods, stored in metatables. + proper tail calls. + each function can have its own global table, which can be shared. + new __newindex metamethod, called when we insert a new key into a table. + new block comments: --[[ ... ]]. + new generic for. + new weak tables. + new boolean type. + new syntax "local function". + (f()) returns the first value returned by f. + {f()} fills a table with all values returned by f. + \n ignored in [[\n . + fixed and-or priorities. + more general syntax for function definition (e.g. function a.x.y:f()...end). + more general syntax for function calls (e.g. (print or write)(9)). + new functions (time/date, tmpfile, unpack, require, load*, etc.). API: + chunks are loaded by using lua_load; new luaL_loadfile and luaL_loadbuffer. + introduced lightweight userdata, a simple "void*" without a metatable. + new error handling protocol: the core no longer prints error messages; all errors are reported to the caller on the stack. + new lua_atpanic for host cleanup. + new, signal-safe, hook scheme. Implementation: + new license: MIT. + new, faster, register-based virtual machine. + support for external multithreading and coroutines. + new and consistent error message format. + the core no longer needs "stdio.h" for anything (except for a single use of sprintf to convert numbers to strings). + lua.c now runs the environment variable LUA_INIT, if present. It can be "@filename", to run a file, or the chunk itself. + support for user extensions in lua.c. sample implementation given for command line editing. + new dynamic loading library, active by default on several platforms. + safe garbage-collector metamethods. + precompiled bytecodes checked for integrity (secure binary dostring). + strings are fully aligned. + position capture in string.find. + read('*l') can read lines with embedded zeros.
2003-04-29Note update of elinks to 0.4.2nb1.jtb1-1/+2
2003-04-29Oops! Forgot to cvs add these.jtb3-0/+50
2003-04-29Use lang/lua4 as then new version of lua is incompatible.jtb2-13/+16
Bump PKGREVISION.
2003-04-29Add and enable lua4.jtb1-1/+2
2003-04-29Note addition of lua4-4.0.1. Needed for packages requiring the olderjtb1-1/+2
version 4 of lua.
2003-04-29Import of lua4 for packages requiring lua version 4.jtb10-0/+218
Lua is a powerful, light-weight programming language designed for extending applications. Lua is also frequently used as a general-purpose, stand-alone language.
2003-04-29Note update of hdf5 to 1.4.5.jtb1-1/+2
2003-04-29Update to version 1.4.5.jtb4-8/+10
Changes: * Allow scalar dataspaces to be used for parallel I/O. QAK - 2002/11/05 * Added environment variable "HDF5_DISABLE_VERSION_CHECK", which disables the version checking between the header files and the library linked into an application if set to '1'. This should be used with caution, mis-matched headers and library binaries can cause _serious_ problems. QAK - 2002/10/15 * Partially fixed space allocation inefficiencies in the file by improving our algorithms for re-using freed space. QAK - 2002/08/27 * API tracing has been improved. Nested API calls don't screw up the output format; function call and return event times can be logged; total time spent in each function can be logged. The following HDF5_DEBUG environment variable words affect tracing: trace -- turn on/off basic tracing ttimes -- turn on tracing and report event times and time spent in each API function. ttop -- turn on tracing but display only top-level API calls. * Several missing fortran APIs have been added to the library: h5get_libversion_f h5tget_member_index_f h5dget_storage_size_f h5check_version_f h5tvlen_create_f h5dvlen_get_max_len_f h5garbage_collect_f h5dwrite_vl_f h5dont_atexit_f h5dread_vl_f Functions h5dvlen_get_max_len_f, h5dwrite_vl_f, and h5dread_vl_f support VL Length C APIs functionality for integer, real and string datatypes. See HDF5 Reference Manual and HDF5 FORTRAN90 User's Notes for more information and for the functions description. * H5Fopen without the H5F_ACC_CREAT flag should not succeed in creating a new file with the 'core' VFL driver. QAK - 2003/01/24 * Corrected metadata caching bug in parallel I/O which could cause hangs when chunked datasets were accessed with independent transfer mode. QAK - 2003/01/23 * Allow opening objects with unknown object header messages. QAK - 2003/01/21 * Added improved error assertion for nil VL strings. It return error stack instead of a simple assertion. SLU - 2002/12/16 * Fixed h5dump bug(cannot dump data and datatype) for VL string. SLU - 2002/11/18 * Fixed error condition where "none" selections were not being handled correctly in serial & parallel. QAK - 2002/10/29 * Fixed problem where optimized hyperslab routines were incorrectly invoked for parallel I/O operations in collective mode. QAK - 2002/07/22 * Fixed metadata corruption problem which could occur when many objects are created in a file during parallel I/O. QAK - 2002/07/19 * Fixed minor problem with configuration when users specified /usr/include and /usr/lib for the --with-* options that some compilers can't handle. BW - 2003/01/23
2003-04-29Note update of yplot to 1.1.0nb2.jtb1-1/+2
2003-04-29Change to work with new version of yorick.jtb4-14/+23
2003-04-29fftw-3.0 update done.jtb1-2/+1
2003-04-29Note update of fftw to 3.0.jtb1-1/+2
2003-04-29Update to version 3.0.jtb7-101/+56
Major goals of this release: * Speed: often 20% or more faster than FFTW 2.x, even without SIMD (see below). * Complete rewrite, to make it easier to add new algorithms and transforms. * New API, to support more general semantics. Other enhancements: * SIMD acceleration on supporting CPUs (SSE, SSE2, 3DNow!, and AltiVec). (With special thanks to Franz Franchetti for many experimental prototypes and to Stefan Kral for the vectorizing generator from fftwgel.) * True in-place 1d transforms of large sizes (as well as compressed twiddle tables for additional memory/cache savings). * More arbitrary placement of real & imaginary data, e.g. including interleaved (as in FFTW 2.x) as well as separate real/imag arrays. * Efficient prime-size transforms of real data. * Multidimensional transforms can operate on a subset of a larger matrix, and/or transform selected dimensions of a multidimensional array. * By popular demand, simultaneous linking to double precision (fftw), single precision (fftwf), and long-double precision (fftwl) versions of FFTW is now supported. * Cycle counters (on all modern CPUs) are exploited to speed planning. * Efficient transforms of real even/odd arrays, a.k.a. discrete cosine/sine transforms (types I-IV). (Currently work via pre/post processing of real transforms, ala FFTPACK, so are not optimal.) * DHTs (Discrete Hartley Transforms), again via post-processing of real transforms (and thus suboptimal, for now). * Support for linking to just those parts of FFTW that you need, greatly reducing the size of statically linked programs when only a limited set of transform sizes/types are required. * Canonical global wisdom file (/etc/fftw/wisdom) on Unix, along with a command-line tool (fftw-wisdom) to generate/update it. * Fortran API can be used with both g77 and non-g77 compilers simultaneously. * Multi-threaded version has optional OpenMP support. * Authors' good looks have greatly improved with age.
2003-04-29Note update of yorick to 1.5.12.jtb1-1/+2
2003-04-29Update to version 1.5.12.jtb7-208/+211
Changes: * The directory structure and configuration scripts have completely changed * RGB colors supported for color= keyword, pli, plf, plfp see help,color or help,pli for more information * lsdir, mkdir, rmdir functions added so yorick can read and manipulate directories by itself * i86_primitives and other modern binary formats added see help,createb and help,__i86 for more information * cheby.i, convol.i, dawson.i, kepler.i added to interpreted library * added "hex" 3D transport solver (similar to drat 2D solver) * improved the emacs/yorick.el package again, mostly by removing unwanted "improvements" to emacs; see emacs/README
2003-04-29Note update of euler to 1.60.6.jtb1-1/+2
2003-04-29Update to version 1.60.6.jtb6-185/+174
Changes: * read_line in input.c and e_load in earray.c handles now properly '\r' characters from DOS files. * bug fix in metaps.c : postscript macros bar and fbar now handle hue the right way. * handles wheel mouse to scroll the text window content. * better event handling : test_key, test_code, syswait hack. * drag and drop support from gtk/gnome apps (xdnd). it works with - ROX - Nautilus drag and drop from Konqueror does not work. * popup menu for terminal editing * modulo bug fix * logspace, xlogplot, ylogplot, xylogplot, xlogmark, ylogmark, xylogmark enhanced and included in util.e (no more in a separate package). * gcm, lcm, primes, isprime and factor functions added to modulo.e * bug fix in project function in graphics.c * util.e - added figure function which allow to draw quicly several graphs in the graphical window - xlabel, ylabel updates to fill the figure function requirements - xgrid : scale is now sent to the bottom right of the graph - added rotate, animate * bug fix in my scan_dir function in main.c, which causes Segmentation fault * bug fix in the way euler was dealing with input and lineinput in term.c * new : antialiasing function to enable or disable antialiasing in density plots * complete reorder in source file for future enhancements * bug fix with solaris (scandir made portable) * delete outputs menu item
2003-04-29Note update of algae to 4.1.2.jtb1-1/+2
2003-04-29Update to version 4.1.2.jtb7-147/+180
Changes include: * New try/catch mechanism for control of exception handling. * Fixed memory leaks in solve and svd. * Builtin `tril' and `triu' functions -- sparse arrays stay sparse. * Fixed integer overflow problems in `band' and `cram'. * Incorporated the SuperLU package for solving sparse linear systems. Previously, sparse systems were converted to dense and solved with LAPACK (unless configured with BCSLIB-EXT). * Included support for memory allocation debugging with dmalloc. * Improved the logical operations to do a much better job at maintaining sparsity. * New standard function `select'. * Changes to the matrix bandwidth minimization code. The old `band' function is now called `gpskca' and can do either profile or bandwidth minimization of symmetric or hermitian matrices. Matrix statistics are computed by the new `band' function. * New standard functions `linspace' and `logspace'. * New standard function `equilibrate' computes scale factors to improve the condition of a matrix. However, sparse code has not yet been included. * Fixed several deficiencies in the `transform' function. * Removed old get_ascii and put_ascii functions. I doubt if anyone has used these in the last decade. To read and write matrices in text files, use the algae MatrixMarket package. * Fixed several errors with hermitian symmetry. * Fixed mishandling of sparse matrix multiplication case where non-zero factors give a zero result. * Added "short-circuit" logical operators && and ||. * Added the `cram' builtin function -- it's the same as `form' except the output array is sparse when that makes sense. * Added the `product' user function -- product of array elements. * Added `mksparse' and `exsparse' functions for converting matrices to and from coordinate form. * Switched to LAPACK's DGGEV now that DGEGV is deprecated. Also use the new workspace size query feature in LAPACK, rather than working it out ourselves. * Use LAPACK's ZHEGV and ZGGEV for complex generalized eigenvalue problems. * Use floating point exception support from glibc 2.2 on Linux. * Improved accuracy and behavior for complex arguments in functions `log', `asin', and `acos'. * Added inverse hyperbolic trig functions `asinh', `acosh', and `atanh'. * Various minor bug fixes.
2003-04-29Note update of g2 to 0.49a.jtb1-1/+2
2003-04-29Update do version 0.49a.jtb6-77/+51
Changes: * license change to LGPL * added new Tijs Michels spline implementation * small fixes in spline package * added g2_spline_demo.c * removed some non ansi parts (e.g. // comments) * added query pointer for X11 (mouse) * other small fixes and changes
2003-04-29Add missing include file -- ncvalues.h.jtb1-1/+2
2003-04-29Note update of qcad to 1.5.4.jtb1-1/+2
2003-04-29Update to version 1.5.4.jtb8-232/+1044
Changes include: * Updated to use qt3 * New functions * New language translations * New fonts added * Many bug fixes
2003-04-29vm-7.14 update done.jtb1-2/+1
2003-04-29Note update of vm to 7.14.jtb1-1/+2
2003-04-29Update to version 7.14.jtb2-5/+5
VM 7.14 released (27 March 2003) * moved (provide ...) to bottom of .el files. * Made the vm-undo command undo everything the last command did. E.g. vm-undo after vm-kill-subject undoes all of the related deletes instead of just one of them. vm-undo-boundary is only called from vm-add-undo-boundaries now. vm-add-undo-boundaries is called from post-command-hook. VM 7.13 released (19 March 2003) * '(vm-marker -> (vm-marker in vm-mime-parse-entity. VM 7.12 released (14 March 2003) * vm-pop-make-session: use new stunnel configuration code introduced in VM 7.11. This was only installed in vm-imap-make-session previously. * create MIME layout from plist instead of using a raw vector. The layout struct is still a vector. * save original layout when doing a layout conversion so that if the object needs to be deleted we still ahve the correct object endpoint in the folder buffer. In the old code the endpoints in the converted object buffer would be used in the folder buffer with disastrous results. VM 7.11 released (5 March 2003) * fixed check for usability of uncompface's -X flag, needed symbol to be unquoted. * fixed check for stunnel 4, check for non-zero exit code instead of string, moved check to the time when stunnel is first run. * vm-stunnel-configuration-args: fixed reversed v3/v4 logic. * vm-stunnel-configuration-file: reuse the stunnel configuration tempfile. * vm-parse: fourth arg limits the number of matches before returning. * vm-parse: after we quit matching add everything after the last match to the list that is returned, but do this ONLY if the fourth arg 'matches' was specified. * compute POP cache filenames based on the POP mailbox spec with the password as an asterisk. This prevent visiting the wrong file if the user has the password in the spec and later changes their password. Automatically migrate the old password-based cache files to the new scheme as we go. * vm-pop-make-session: parse POP mailbox spec in a way that permits colons in the user's password. * install .el files before .elc files to avoid "source file newer than compiled file" problems. * added ] to char class exclusion in mailto spec in vm-url-regexp to help with MS EXchange's [mailto:foo] syntax. VM 7.10 released (5 March 2003) * vm-menu-url-browser-menu: add third element to clipboard and Konqueror entries--- VM's menu code under GNU Emacs requires it. * treat device-type `gtk' like `x' under XEmacs so that VM running on GTK-XEmacs will use window system features. * vm-imap-move-mail: set use-body-peek after retrieving the CAPABILITY results. (oops) * Makeflie: default install target now installs the .el files. * added support for version 4 of stunnel. VM 7.09 released (3 March 2003) * New variables: + vm-mime-forward-local-external-bodies * vm-mime-fsfemacs-encode-composition: if object is in a buffer, write the buffer out to disk and insert the file contents instead of copuying buffer to buffer. This avoids the trademark \201 data corruption. * vm-su-thread-indent: check for vm-summary-show-threads non-nil before calling vm-th-thread-indentation. * vm-summary-compile-format-1: added %(..%) format groups. * don't forward Content-Length header. * use results of CAPABILITY command to check for authentication methods before trying to use them. * use results of CAPABILITY command to decide whether to use BODY.PEEK vs. RFC822.PEEK. * vm-mime-attach-object-from-message: move window point to beginning of the line after the inserted attachment if the compositoin buffer is being displayed in a window. * vm-mime-parse-entity-safe: set c-t-e to "7bit" if it is nil. * vm-mime-fetch-url-with-programs: erase the work buffer between tries of various URL fetch programs; this handles the case where an URL fetcher outputs part of the data and then dies. * added support for the `fetch' and `curl' URL fetch programs for message/external-body. * vm-mime-fsfemacs-encode-composition: call vm-mime-parse-entity twice for already MIME'd objects. vm-mime-xemacs-encode-composition similarly modified. * vm-mime-fsfemacs-encode-composition: don't automatically base64-encode non-composite non-text objects that already have MIME headers. Use vm-mime-transfer-encode-layout on them instead to produce the correct encoding. vm-mime-xemacs-encode-composition similarly modified. * dropped support for url-w3 retrieval method. It's interface too crusty to continue using given the wide availabity of external programs that do the job. * vm-mime-display-internal-message/external-body: pulled retrieval guts out and put into vm-mime-retrieve-external-body. * added support for simple image manipulations, supported by Imagemagick's `convert' program. Use mouse button 3 on an image to see what you can do. * added Konqueror to vm-menu-url-browser-menu. * added option to send to the X clipboard to vm-menu-url-browser-menu.
2003-04-29Speed-ups for the check-vulnerable target, from Jeremy Reed in PR 21393.agc1-2/+5
2003-04-29Provide the command to remake package tools which are out of date in aagc1-2/+3
format which can be cut and pasted.
2003-04-29add py-csvdrochner1-1/+2
2003-04-29pull this in from pkgsrc-wipdrochner4-0/+27
author is Marc Recht (also submitted as PR pkg/20488)
2003-04-29Use the full pathname for the pkg_install package directory whenagc1-2/+2
giving instructions on how to get up-to-date pkg_install tools. Fix from Jonathan Perkin in PR 21277.
2003-04-29Note update of mail/poppassd package to 4.0.5nb1.taca1-1/+2
2003-04-29Update poppassd package to 4.0.5nb1.taca3-5/+6
Fix security problem, local root exploit. It is no need to install poppassd as setuid. Noted on bugtraq mailing list. http://www.securityfocus.com/archive/1/319811/2003-04-26/2003-05-02/0
2003-04-29oops, sort it.kei1-2/+2
2003-04-29note addtion of packages:kei1-1/+5
phoenix-bin-acroread-1.0 phoenix-bin-flash-6.0.79 phoenix-bin-java-1.0 phoenix-bin-realplayer-1.0
2003-04-29add and enable these packages:kei1-1/+5
phoenix-bin-acroread phoenix-bin-java phoenix-bin-flash phoenix-bin-realplayer
2003-04-29first import of phoenix-bin-realplayer-1.0 package.kei3-0/+30
phoenix-bin-realplayer package provides RealNetworks RealAudio and RealVideo player plugin for phoenix-bin package.