summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2002-08-21Sync with PEACE repositrykent6-15/+106
http://cvs.kshosen.ac.jp/cvsweb.cgi/peace/pkgsrc/devel/w32api/ * Update w32api to 1.5 - Add comcat.h, mapi.h, ntsecpkg.h, schannel.h, schnlsp.h, security.h, sspi.h, wsnetbs.h, - Many bug fixes * Add crt files for PEACE
2002-08-21Sync with PEACE repositrykent13-195/+90
http://cvs.kshosen.ac.jp/cvsweb.cgi/peace/pkgsrc/cross/i386-netbsdpe/ - Update binutils to 2.13 - Remove f77/objcc stuff
2002-08-21Patched lynx to make sure endwin() is called on exit.blymn2-1/+25
2002-08-21Make PKGNAME's version number part numeric.wiz1-1/+2
2002-08-21set USE_INET6 if we are on an IPv6 capable Solaris host.grant1-1/+3
2002-08-21Add and enable gp-grapecjep1-1/+2
2002-08-21Initial import of GRAPE 4r1 into the NetBSD packages collection as cjep5-0/+135
math/gp-grape. GRAPE is a GAP package for mathematical computation with graphs and groups. It was written by Leonard H. Soicher of Queen Mary, University of London.
2002-08-21Add and enable gapcjep1-1/+2
2002-08-21Initial import of GAP-4.3 (bug fix level 1) into the NetBSD packages cjep7-0/+4420
collection as math/gap. GAP (Groups, Algorithms and Programs) is a free system for computational discrete algebra. Its capabilities include computation involving cyclotomic and finite fields, residue class rings, p-adic numbers, multivariate polynomials and rational functions, vectors, matrices and finite groups. GAP can be copied and distributed freely for any non-commercial purpose.
2002-08-21If using SASL cyrus-sasl package is actually needed.seb1-1/+5
2002-08-21use .bz2 distfile.grant2-4/+5
2002-08-21include libs to make this work on Solaris.grant1-1/+5
2002-08-21Cosmetic nit: don't use -DFreeBSD - this is NetBSD!simonb3-6/+39
2002-08-21Include <string.h> in a few places to stop some warnings on alpha (andsimonb4-1/+40
other 64-bit platforms?).
2002-08-21Install the man page and other miscellaneous documention.simonb3-8/+26
2002-08-21.elseif -> .elifgrant1-3/+3
2002-08-21Update antiword to 0.33.rh6-68/+73
Changes 0.32-0.33 ----------------- Bug fixes: - Bug reported by Yannick PERRET <yperret@bat710.univ-lyon1.fr> fixed Old features: - The -X option is no longer supported. Replace "-X 2" by "-m 8859-2.txt" New features: - A little more accurate font translation - Full support for documents from WinWord 2.0 - Some support for documents from Word-for-DOS and WinWord 1.x - Selective header numbering. - Implementation of stylesheets. - The system-wide directory for the mapping files was changed from "/opt/antiword/share" into "/usr/share/antiword", in accordance with FHS, the file-system hierarchy standard. As suggested by Anand Buddhdev <arb@anand.org> - Antiword now turns white text into light gray text. - Antiword is now closer to "64-bit clean". Based on information supplied by Duncan Haldane <f.duncan.m.haldane@worldnet.att.net>
2002-08-21check that USE_INET6 is defined.grant7-18/+18
remove extraneous parenthesis around .if (${FOO} ..) conditions.
2002-08-21Enable pth threading, it now seems to work all right.mjl2-5/+3
Correct PLIST.
2002-08-21reverse if ${USE_INET6} condition, as USE_INET6 is not guaranteed togrant1-4/+4
be defined.
2002-08-21use BUILD_DEFS instead of USE_INET6.grant2-4/+4
2002-08-21Update to balsa 1.4.0mjl4-80/+98
- filter documentation. - adding mailboxes out of local mail directory hierachy. - various build fixes. - building fixes. - code cleanup. - new MostRecentlyUsed list. - mailbox rename fixes. - search and filtering fixes. - reasonable searching in message bodies held in IMAP mailboxes. - do not crash when called with -a. - minor filter UI improvements (sensitive). - more verbose on common SMTP errors. - RFC-compliant header encoding - password privacy fixes - build fixes (--without-esmtp, --disable-threads) - filter-on-receive fixes. - general cleanup and other small bug fixes - protect ESMTP passwords and pass-phrases - new mailboxes scanned in a thread - improved message include function - preserve References: headers over message postpone - number of crashes and other bugs fixed - build fixes. Make some dependencies optional - remove some double free()s - filter incoming POP3 messages - fixed content-disposition and charset bugs - fixes for printing of multipart messages with different content-types - rescanning local directories - delayed message deletion (and undeletion) - highlight bad addresses in compose window - external editor support - imap message caching - imap password handling fixes - first step to searching and filters - delayed IMAP tree scanning - "reply to group" functional
2002-08-21Update p5-DBI to 1.30.mjl2-5/+5
Most notable changes: Fixed problems with selectrow_array, selectrow_arrayref, and selectall_arrayref introduced in DBI 1.29. The trace output can be sent to STDOUT instead of STDERR by using "STDOUT" as the name of the file, i.e., $h->trace(..., "STDOUT") Added $sth->{ParamValues} to return a hash of the most recent values bound to placeholders via bind_param() or execute(). Enhanced ShowErrorStatement to include ParamValues if available: "DBD::foo::st execute failed: errstr [for statement ``...'' with params: 1='foo']" Fixed missing column in C implementation of fetchall_arrayref() Added C implementations of selectrow_arrayref() and fetchall_arrayref() in Driver.xst. All compiled drivers using Driver.xst will now be faster making those calls. Drivers just need to be recompiled and reinstalled to enable it. Added $max_rows parameter to fetchall_arrayref() to optionally limit the number of rows returned. Can now fetch batches of rows. Added MaxRows attribute to selectall_arrayref() which then passes it to fetchall_arrayref(). Documented that $h->func() does not trigger RaiseError etc so applications must explicitly check for errors. HandleError subroutine interface is now regarded as stable. Fixed reference loop causing a handle/memory leak that was introduced in DBI 1.16. Fixed DBI::Format to work with 'filehandles' from IO::Scalar and similar modules Fixed $h->func for DBI::PurePerl Fixed $dbh->{Name} for DBI::PurePerl Added DBI method call profiling and benchmarking. Added execute_array() and bind_param_array() documentation Removed undocumented Handlers attribute (replaced by HandleError). Greatly improved DBI::PurePerl in performance and accuracy. Added DBI::PurePerl, a transparent DBI emulation for pure-perl drivers See Perldoc DBI::PurePerl for details. Added DBI::Const::GetInfo* modules Added write_getinfo_pm utility to DBI::DBD Added $allow_active==2 mode for prepare_cached() Extend $h->{Warn} to commit/rollback ineffective warning
2002-08-21Update g-wrap to 1.2.1. Changes are built-time tweaks only and amjl5-49/+8
version number bump. 1.2.x is required for gnucash.
2002-08-20Update to V2.9-11.soren6-101/+61
This includes several new emulators including one for the VAX, which runs NetBSD/vax!
2002-08-20make it work with non-netbsditojun2-7/+10
2002-08-20Add and enable osh.cjep1-1/+2
2002-08-20Initial import of osh-020214 into the NetBSD packages collectioncjep5-0/+69
as shells/osh. Osh is a re-implementation of the old and obsolete shell version, which was in standard use up to UNIX 6th Edition and was supplied as osh with UNIX 7th Edition. Its command language is a sparse subset of those of modern shells and is mostly common both to sh(1) and csh(1). This pkgsrc entry is based on the FreeBSD ports entry for osh.
2002-08-20teach it about python21-pthdrochner2-3/+12
2002-08-20Build a Python version with thread support. For now, we only havedrochner11-0/+1997
devel/pth, which tends to coredumps sometimes. But a number of Python packages insists in threads, so we have to start somewhere.
2002-08-20Avoid namespace collision on errno. This should now build again.skrll4-1/+46
2002-08-20Upgrade arla to 0.35.9wennmach19-6/+1030
Fixes two security holes: 'xdr'-bug (in vos, not in arlad), and xfs failes to check for negative numbers in pioctl. Additional changes: NetBSD/sparc64 now supported, 'themis' added, local locking, bug fixes. See http://www.stacken.kth.se/lists/arla-drinkers/2002-08/msg00019.html
2002-08-20Fix sparc64 build by patching sigs/sha/sha.c like the revision 1.6 ofseb2-11/+133
basesrc/lib/libc/hash/sha1.c.
2002-08-20openssl/buildlink.mk enforces OpenSSL>=0.9.5f due to the DoS fix. Do not botherabs1-4/+6
trying to ask for 0.9.5a as we will not be allowed to use it anyway.
2002-08-20Fix build problem with -currentskrll2-1/+15
2002-08-20Add and enable linda.agc1-1/+2
2002-08-20Initial import of linda-0.1.1 into the NetBSD Packages Collection.agc3-0/+32
linda is an simple library implementation of Linda parallel programming system (http://www.cs.yale.edu/Linda/linda.html). To write a parallel program with linda, you have to know only 6 functions: spawn, out, in, inp, rd and rdp with linda.
2002-08-20need -Wl,-Rfoo for NetBSD ELF. TODO: tweak it for other platformsitojun2-1/+16
2002-08-20must use gmakeitojun1-1/+2
2002-08-20Updated p5-Text-Substitute to 0.14 from 0.12abs2-5/+5
- Support nested ${loop:xxx} inside ${loop:yyy}
2002-08-20add scsiinfo.grant1-1/+2
2002-08-20Initial import of scsiinfo-4.7 into the NetBSD packages collection.grant5-0/+60
Scsiinfo displays information about SCSI devices attached to a given system, as seen by a supported SCSI device driver. For each target known to the SCSI host adapter, scsiinfo reports SCSI transfer information for the device. In particular, when a target supports synchronous transfer, the negotiated maximum transfer rate (in MB/sec) is reported. Scsiinfo can also report the type and speed of each supported host adapter attached to the system. Scsiinfo is ONLY_FOR_PLATFORM SunOS.
2002-08-20Updated msu to 1.05 from 1.04abs2-5/+5
- Do not revoke existing group membership.
2002-08-20Update to 2.31:wiz2-7/+6
- Ilya Zakharevich <ilya@math.ohio-state.edu> and Dave Mitchell <davem@fdgroup.com> both provided patches to fix problems module had with 5.8.0 - Dave Mitchell also made some UTF-8 related fixes to the test suite.
2002-08-20Add and enable chicken.agc1-1/+2
2002-08-20Comment out HOMEPAGE, since it disappeared.wiz1-2/+2
2002-08-20Initial import of chicken-0.1072 into the NetBSD Packages Collection.agc4-0/+196
CHICKEN is a Scheme-to-C compiler supporting most of the language features as defined in the Revised^5 Report on Scheme. CHICKEN generates quite portable C code, and files compiled by it (including itself) should work without any changes on most platforms. The whole package is distributed under a BSD license and as such free to use and modify as long as you adhere to its terms (see the manual). Linkage to C modules and C-library functions is straightforward, so it's easy to access C from Scheme. Compiled code can be embedded into existing C programs without problems. The generated code supports full tail-recursion, first-class continuations, multiple values and dynamic-wind.
2002-08-20Update to 1.21:wiz2-5/+5
Restore perl-5.004 and perl-5.005 compatibility. Direct support for some new schemes urn:, urn:isbn:, urn:oid:, rtsp:, and rtspu:. The rtsp support was contributed by Matt Selsky <selsky@columbia.edu>. The host for URI::file was not unescaped.
2002-08-20Update to 1.43:wiz2-5/+5
The ->new method now fails immediately and sets $Text::Template::ERROR if the file that is named by a filename argument does not exist or cannot be opened for some other reason. Formerly, the constructor would succeed and the ->fill_in call would fail.
2002-08-20Update HOMEPAGE.wiz1-2/+2