summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2003-08-09Note update of "xautolock" package to version 1.15nb1.tron1-1/+2
2003-08-08It is xtermset, not xterset.wiz1-2/+2
2003-08-08Fix tyop in a previous entryagc1-2/+2
2003-08-08Update vile from version 9.3 to 9.4agc2-3/+3
Changes for vile 9.4 (released Mon Aug 04 2003) Various bug fixes and some new functionality: + modify vilefilt.l to highlight shell commands. + add cases for 'u', 'U', 'x' and 'X' to RegStrChr2(), making the [:upper:] and [:xdigit:] regular expression character classes work. + tested with gcc 3.3 and g++ 3.3, modifying several interfaces to use 'const'. gcc 3.x also introduces more nonstandard name-pollution. + modify manpage.rc to check if the current buffer is perl, and if so, to render contents using pod2man or pod2text. + add un-filters (atr2ansi, atr2html, atr2text) which convert encoded control/A text to different forms. + modify support for ^X-e to make it use the whole line if the current buffer is a directory. + increase output- and state transitions-limits for latexflt.l, rpm-filt.l, sh-filt.l and vilefilt.l to compile with Solaris and HPUX lex programs (report by Adam Denton). + modify vile-manfilt to decode UTF-8 emitted by groff 1.18 + add Ruby syntax filter (rb-filt.l, rb.key). + fix: java has no 'operator' keyword. + add texmode, as a variation of latexmode. + add .ltx, .sty suffixes for latexmode. + implement xml-filter based on html-filter. + implement xterm-title mode. + add syntax filter for rpm ".spec" files. + add syntax filter for PostScript ".ps" files. + add syntax filter for enscript ".st" files. + make cursor-movement on a yank command match vi's, tested for various left/up motions such as yk, yh, yH, y1G, y0, y-, yb (report by George Eccles). + updates to allow vile to build with perl 5.8.0 (ifdef's checked for 5.6.1, 5.5.3 and 5.4.5). + rewrote spell.rc to make it work properly if the spell-filter is built-in (reported by Clark Morgan).
2003-08-08+ dnetc-2.9004-482 [pkg/22390], evolution-1.4.4, lilypond-1.8.0,wiz1-5/+9
mhonarc-2.6.7, tinyproxy-1.6.1, vile-9.4, wv2-0.1.8, xine-lib-0.9.22.
2003-08-08Note trn-4.76 update. Based on PR 22404 from Tim Middleton.wiz1-1/+2
2003-08-08Note update of kopete to 0.7.jmmv1-1/+2
2003-08-08Update to 0.5.2. Changes: move to GNU autoconf, and a few bugfixes.hubertf1-1/+2
No new features.
2003-08-08note update of 6to4 to 1.4.grant1-2/+2
2003-08-07gs to 0.56abs1-1/+3
- If !defined BSD_PKG_MK and DBG is set to -Os, do not alter COPTS. This stops setting of -march=XXX causing overflowing of install media - disable -fomit-frame-pointer for lua and koffice
2003-08-07Note addition of p5-XML-Twiggson1-1/+2
2003-08-06Note update of "kde" package to version 3.1.3nb1.tron1-1/+2
2003-08-06Note grhino-0.7.1 update.wiz2-8/+11
2003-08-05Note update of libbonoboui to 2.2.4.jmmv1-2/+2
2003-08-05Updated ns-remote to 1.8:abs1-1/+3
- Use 'openURL(about:blank,new-window)' rather than 'openBrowser', so we can open blank windows with Mozilla >= 1.3. From Todd Vierling
2003-08-05Updated rocksndiamonds to 3.0.0adam1-1/+2
2003-08-05s/libghoto/libgphoto/wiz1-2/+2
2003-08-05pcre-4.3 update done.wiz2-3/+3
2003-08-05Updated libexif to 0.5.12, and it's dependants (libexif-gtk, libghoto2) ↵adam1-1/+4
because of major library version change
2003-08-05python-2.3 added (thanks, drochner, and marc :)).wiz1-2/+1
2003-08-05tuxpaint-0.9.11 update done.wiz2-3/+3
2003-08-05Added libdvbpsi-0.1.3: A PSI decoder and generator library for MPEG2 andwulf1-1/+2
DVBstreams
2003-08-05Added dvipng-0.5.wiz1-1/+2
2003-08-05Added libmpeg2-20030612: A library for decoding mpeg-2 and mpeg-1 video streamswulf1-1/+2
2003-08-05+ TeXmacs-1.0.1.21, fontconfig-2.2.0, nessus-2.0.7 [pkg/22356].wiz1-2/+4
2003-08-05mail/bogofilteritojun1-1/+2
2003-08-05Added libdvdplay-1.0.1: A simple API library designed for DVD navigationwulf1-1/+2
2003-08-04Note update of hdf5 to 1.6.0.jtb1-1/+2
Summary: This release has the following new features that are not available in 1.4.* releases 1. Generic properties to give application more control on I/O pipeline 2. Time allocation and fill value properties 3. New filters: external compression filter szip internal shuffling and checksum filters 4. Compact storage layout for datasets 5. Redesigned I/O pipeline for better performance.
2003-08-04smalltalk-2.1.4 update done.jtb1-2/+1
2003-08-04Note update of smalltalk to 2.1.4.jtb1-1/+2
NEWS FROM 2.1.3 TO 2.1.4 o Fix bugs treating old objects that have already been considered by the incremental GC (and survived it). Example: ObjectMemory globalGarbageCollect. HomedAssociation class instanceCount gave 0 instead of 1. As a result, --enable-checking now can be used. o Fix bugs when doing #become: between old objects, exactly one of which has not been considered by the incremental GC and was incorrectly swept when the collector finally reached it. o Fix bugs when garbage collection triggered finalization while a primitive was being run. Finalization is now done in a separate Process. o Fix bugs treating very large objects. o Fix infinite loop when the big object threshold was set between the size of survivor spaces and the size of the eden. o Printing Integers was unbelievably inefficient. Fixed together with some more low-hanging fruit. o SequenceableCollection>>#replaceFrom:to:with:startingAt: allows again that stop=start-1 (like replaceFrom: 1 to: 0 with: ...)
2003-08-04Note update of RScheme to 0.7.3.2.jtb1-1/+2
The main elements of this release are: * Persistent-store garbage collection * Build cleanup.
2003-08-04+ ImageViewer-0.6.3, avidemux-2.0.12, bzflag-1.7g2, ddd-3.3.7,wiz1-8/+13
gnats-4.0, sylpheed-claws-0.9.4, tightvnc-1.2.9, wmweather-2.4.1, xephem-3.5.2, xerces-j-2.5.0, xine-lib-1.0rc1, xmcd-3.2.1.
2003-08-04mail/cueitojun1-1/+2
2003-08-04Note revision bump for mencoder to 8.jmmv1-1/+2
2003-08-04Note revision bump for hiawatha to 1.jmmv1-1/+2
2003-08-04newest Pythondrochner1-1/+2
2003-08-04Updated scummvm to 0.5.0adam1-1/+2
2003-08-04Note gnugo-3.4 update.wiz1-1/+2
2003-08-04Added gputils-0.11.6: A collection of development tools for Microchip's PICwulf1-1/+3
micro-processor replacing obsoleted package gpasm. Removed obsoleted package gpasm
2003-08-03Note update of beecrypt to 3.0.0.jmmv1-1/+2
2003-08-03Update cdlabelgen to latest version, 2.6.1jdolecek1-1/+2
Changes: * Word-wrap fix * Included two logos for DivX and Ogg Vorbis * Added option to output slim CD cover cases with page order switched * Added --no-cover-plaque and --number-in-set <string> * Updated spec file to match 2.6.1
2003-08-03Note addition of beecrypt, version 2.1.0.jmmv1-1/+2
2003-08-03Note revision bump for audacity to 4.jmmv1-1/+2
2003-08-03Update bmake and mk-files.sjg1-1/+3
Changes to mk-files: * install-mk: add ability to use cp -f when updating destination .mk files. Also now possible to play games with FORCE_SYS_MK=ln etc on *BSD machines to link /usr/share/mk/sys.mk into dest - not recommended unless you seriously want to. * own.mk (IMPFLAGS): add support for COPTS.${IMPSRC:T} etc for semi-compatability with NetBSD. Changes to bmake: * boot-strap: Allow setting configure args on command line. * configure.in: add --with-defshell to allow sh or ksh to be selected as default shell. * Merge with NetBSD make 20030731 Pick up .SHELL spec for ksh and associate man page changes. Also compat mode now uses the same shell specs. * var.c (Var_Parse): ensure delim is initialized. * unit-tests/Makefile.in: use single quotes to avoid problems from some shells. * makefile.boot.in: Run the unit-tests as part of the bootstrap procedure. * unit-tests/Makefile.in: always force complaints from ${TEST_MAKE} to be from 'make'. * configure.in: add check for 'diff -u' also fix some old autoconf'isms * Makefile.in (BMAKE_VERSION): bump version to 20030728. if using GCC add -Wno-cast-qual to CFLAGS for var.o * Merge with NetBSD make 20030728 Pick up fix for :ts parsing error in some cases. Pick unit-tests.
2003-08-03Note cvsync 0.24.3gehenna1-1/+2
2003-08-03Note update of misc/pinfo to version 0.6.1nb2 [configuration file handlingseb1-1/+2
fix and example file installation directory change]
2003-08-03Note update of misc/git to version 4.3.17nb1 [documentation installationseb1-1/+2
directory fix]
2003-08-02Document devel/ftnchek hack for gcc 2.95.3/arm -O2 lossage.kristerw1-1/+9
2003-08-02Note revision bumps for exim and exim-user.jmmv1-1/+3
2003-08-02Note addition of avidemux, version 2.0.10.jmmv1-1/+2