summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-08-16update to zsh-4.2.1recht7-25/+32
Changes since zsh version 4.2.0 ------------------------------- - The autoload and related builtins take options -k and -z to indicate ksh or zsh autoloading style for given functions, making it possible to mix and match. - Assignments to associative arrays can use the i and r index flags. For example, assoc[(i)alpha*]=bravo sets the value for the element whose key matches the pattern `alpha*'; assoc[(r)activ*]=passive sets the value for the element whose current value matches the pattern `activ*'. - The glob qualifier F indicates a non-empty directory. Hence *(F) indicates all subdirectories with entries, *(/^F) means all subdirectories with no entries. - fc -p and fc -P provide push/pop for the status of the shell's history (both internal and using the history file). With automatic scoping (fc -ap) it becomes easy to use a temporary history in a function. This has been added to the calculator function zcalc to make its internal history work more seamlessly. - A new `try block' and `always block' syntax has been introduced to make it easier to ensure the shell runs important tidy-up code in the event of an error. It also runs after a break, continue, or return, including a return forced by the ERR_RETURN option (but not an exit, which is immediate). The syntax is: `{' try-block-list `}' `always' `{' always-block-list `}' where no newline or semicolon may appear between `}' and `always'. This is compatible with all previous valid zsh syntax as an `always' at that point used to be a syntax error. For example, { echo Code run in current shell } always { echo Tidy-up code } - A new zle widget reset-prompt has been added to re-expand the current prompt. Changes to the variable in use as well as changes in its expanions are both taken into account. The same effect is now forced by a job change notification, making the %j prompt escape and %(j..) ternary expression more useful. - The zftp module supports ports following the hostname in the normal suffix notation, `host:port'. This requires IPv6 colon-style addresses to be specified in suitably quoted square brackets, for example: zftp open '[f000::baaa]' zftp open '[f000::baaa]:ftp' (the two are equivalent). - Special traps, those that don't correspond to signals, i.e. ZERR, DEBUG and EXIT are no longer executed inside other traps. This caused unnecessary confusion if, for example, both DEBUG and EXIT traps were set. The new behaviour is more compatible with other shells. - New option TRAPS_ASYNC which if set allows traps to run while the shell is waiting for a child process. This is the traditional zsh behaviour; POSIX requires the option to be unset. In sh/ksh compatibility mode the option is turned off by default and the option letter -T turns it on, for compatibility with FreeBSD sh.
2004-08-16Note glabels-2.0.1.wiz1-1/+2
2004-08-16Add and enable glabels.wiz1-1/+2
2004-08-16Initial import of glabels-2.0.1:wiz4-0/+110
gLabels is a program for creating labels and business cards for the GNOME desktop environment. It is designed to work with various laser/ink-jet peel-off label and business card sheets that you'll find at most office supply stores.
2004-08-16note update of nail to 11.2cjep2-3/+3
2004-08-16Update of mail/nail to 11.2cjep5-33/+30
Changes since 11.1 include: * A message thread-oriented mode is now optionally available; cf. the 'thread' and 'unthread' commands, the 'autothread' variable, and addressing changes. * It is also possible to sort messages by various other criteria; cf. the 'sort' and 'unsort' commands, the 'autosort' variable, and addressing changes. * New 'fullnames' variable: When replying to a message, full names for the recipients are included if it is set, instead of using the plain email address. * New commands 'disconnect' and 'connect'/'online' to switch to disconnected IMAP mode and back while retaining the current mailbox. * IMAP GSSAPI authentication was implemented; it has been successfully compiled with MIT, Solaris, and HP-UX GSS libraries. See the 'imap-auth' and 'imap-auth-user@host' variables. * CRAM-MD5 authentication was implemented for IMAP and SMTP. See the 'imap-auth' and 'smtp-auth' variables. * POP3 APOP authentication is now supported; see 'pop3-use-apop'. * STARTTLS is now also supported for IMAP and POP3; see 'imap-use-starttls' and 'pop3-use-starttls'. * Autodetection of the terminal character set works again (did not work since 10.8). * The 'showlast' variable works again; it had no effect since version 11.0. * Made it compile using the HP-UX C compiler again (did not work since 11.0). * Standard input is now redirected to /dev/null in the child process that contacts the MTA. A result is that ssl-verify=ask has the same effect as ssl-verify=strict for SMTP servers, and does not put the terminal in an indeterminable state anymore. * The initial connection to IMAP or POP3 servers is now made before the previous mailbox (if any) is quit. Thus if a server is unreachable, nail keeps the previous mailbox open instead of getting in a mailbox-less state. * Stale cache entries for messages deleted on the server were not removed in some circumstances. * The 'inc'/'newmail' commands are now ignored in disconnected mode and no longer display errors about hidden (uncached) messages. * The cache now compiles and works on systems that lack fchdir(), such as some Cray machines (Thanks to Cray-Cyber.org). * The defaults for /etc/nail.rc have been updated. This will have no effect on existing installations unless the file is copied by hand. * Nail does not hang anymore in disconnected mode if a message addressed with ^ or $ is not cached.
2004-08-16Note update of textproc/source-highlight to version 1.10 [bug fixes andseb1-1/+2
support for "log files"]
2004-08-16Update to version 1.10.seb7-120/+126
Changes since last packaged version: Version 1.10 * Added scanner for log files (also for iptables and apache logs) thanks to Jan Tatarik * Fixed some bugs in the perl scanner (thanks to Geir Nilsen) * configure checks for ios_base * check for the right ar to use, fixes problems under Sun compilers (thanks to Paul Townsend)
2004-08-16The comepage is currently not accessible for downloads; it could be squatted.reinoud1-3/+3
Moved the other download site up as first choice
2004-08-16Document emulators/palmosemulator/patches/patch-an, a i386 g++ 3.3.x -O2 bugdsainty1-1/+13
2004-08-16Bumped PKGREVISION to 4, fix for building POSE under gcc 3.3.3 withdsainty1-2/+2
optimisation as default (g++ -O2).
2004-08-16Building POSE under gcc 3.3.3 with optimisation as default (g++ -O2) leads todsainty1-1/+2
a malfunction where POSE will go into an apparent infinite loop after the first pen operation. This patch codes around the problem.
2004-08-16Building POSE under gcc 3.3.3 with optimisation as default (g++ -O2) leads todsainty1-0/+35
a malfunction where POSE will go into an apparent infinite loop after the first pen operation. This patch codes around the problem.
2004-08-16Use PKG_SKIP_REASON so that bulk builds reports the packages askristerw2-4/+4
"unavailable" instead of "broken".
2004-08-16+ amavisd-new-20040815, leafnode-1.10.4, libpng-1.2.6, metacity-2.8.3wiz1-2/+8
[pkg/26683], nail-11.2, sox-12.17.5, stella-1.4.1.
2004-08-16PKGREVISION++salo5-32/+84
- obey CFLAGS, use $(CC) instead of cc in Makefile - install data files in PREFIX/libdata/brs instead of PREFIX/lib, rewrite whole "install" target - correct paths in the manpage - fix a warning (could be error with some compilers?) in #endif
2004-08-16Use PKG_SKIP_REASON when the ORACLE_HOME is undefined, so that bulkkristerw1-2/+2
builds do not report this as a broken package.
2004-08-16Note PKGREVISION bump for chat/licq-gui-qt.kristerw1-1/+2
2004-08-16The .a file is not very useful as a plugin... so remove it fromkristerw2-8/+9
the package (by using SHLIBTOOL_OVERRIDE). Bump PKGREVISION. Problem noted by wiz.
2004-08-16note postgresql74-lib-7.4.3nb1recht1-1/+2
2004-08-16Bump PKGREVISION to 1 for the previous thread-safety change.recht1-1/+2
noted by wiz
2004-08-16Do not build with --enable-thread-safety on NetBSD. Currently, itrecht1-2/+3
causes more harm than good.
2004-08-16Update xchat to 2.4.0.minskim5-30/+11
Changes since 2.0.10: - Updated translations (ca, de, eu, it, ko, lt, nl, sk, sr, zh_CN). - Fixed a possible crash in loading pevents.conf. - Made default URL handlers work with Firefox 0.9.x by adding the "-a firefox" argument. - Plugin API: Added xchat_get_info field "libdirfs". - Fixed crash when trying to dcc send a filename which has encoding that doesn't match G_FILENAME_ENCODING. - Updated translations (de, kr, lt, sk, sr, zh_CN). - Added some rudimentary support for the IDENTIFY-MSG feature. - Perl: Added Xchat::context_info (Lian Situ). - TCL: Added support for time fields in getlist (Daniel P.Stasinski). - Added "Open Dialog" event, so you can add a sound-file to it. - The standard beep can now be overridden with a sound-file. - Fixed tab-nick-completion's cycling behaviour. - New keyboard shortcut for line up and down (shift-arrow up/down). - Fixed: [986958] tab completion with GTK Input-Methods. - Updated translations (eu). - Tab nick completion fixes: Crash with space-tab and glib critical warning (Ian Kumlien). - Heavily reworked the Preferences window. It should be alot clearer now, and more gnome-like. - 'Pop new tabs to front' setting now has three options (Kyoshiro). - New colors and text-events, using a white background. - Config files are not saved to disk unless you edit the defaults. This makes it easier to change language (for print events, popup menu etc). - Brand new Server List window. Now much simpler and intuitive. Also includes an entry box for NickServ password. - The vertical separator line now has its own pointer when you hover over it (Richard Gobeille). - Alphabetical tab sorting now works and is enabled by default. - Added "Small Tabs" option (reduces the font size). - Brand new Sound-Events editor in the Preferences window. - Added socks5 authentication support (Benjamin Foster). - Win32: fixed auto-loading of TCL scripts.
2004-08-16Remove un-ttf, which is superseded by un-core-ttf and un-extra-ttf.minskim6-78/+3
2004-08-16Add and enable un-core-ttf and un-extra-ttf.minskim2-2/+6
2004-08-16Initial import of un-extra-ttf-1.0. Packaged by Kibum Han.minskim4-0/+53
Un fonts are GPL'd Korean fonts. They were originally available as PostScript fonts for HLaTeX, and later converted into TrueType fonts. This package contains the following 10 extra fonts. * UnPen, UnPenheulim: script * UnTaza: typewriter style * UnBom: decorative * UnShinmun * UnYetgul: old Korean printing style * UnJamoSora, UnJamoNovel, UnJamoDotum, UnJamoBatang
2004-08-16Initial import of un-core-ttf-1.0. Packaged by Kibum Han.minskim4-0/+51
Un fonts are GPL'd Korean fonts. They were originally available as PostScript fonts for HLaTeX, and later converted into TrueType fonts. This package contains the following 9 core fonts. * UnBatang, UnBatangBold: serif * UnDotum, UnDotumBold: sans-serif * UnGraphic, UnGraphicBold: sans-serif style * UnPilgi, UnPilgiBold: script * UnGungseo: cursive, brush-stroke
2004-08-16Update xterm to 196.minskim4-8/+8
Changes since 188: - Many bug fixes and enhancements. See the following web page for the complete list. http://dickey.his.com/xterm/xterm.log.html
2004-08-16Add new variable LIBTOOL_LA_FILES, which may be used instead of listingtv2-1/+66
all of the .a, .la, .so, and .so.* files in the PLIST. This will autogenerate the PLIST entries based on the informaion in the .la file. This include print-PLIST support; if LIBTOOL_LA_FILES contains an installed .la, its entries will be elided from the output PLIST template.
2004-08-16Make hmmer honor $MKDIR for cross-platform install.ben3-10/+44
Addresses pr#26650 from Georg Schwarz.
2004-08-16If patching fails and either of PKG_OPTIONS and LOCALPATCHES areschmonz1-4/+14
defined, note thatthe patch failure may be due to incompatible build options and/or local patches, and suggest building with fewer.
2004-08-15crimsonfields updated to 0.4.3.wiz2-3/+3
2004-08-15Update to 0.4.3:wiz3-7/+9
- added new map 'Across the Omyar Gorge' - improved localization support for ISO-8859-2 locales - added Polish translation - added quick scroll via number pad and NumLock - added a way to recover from the password dialog - fixed build issues in non-graphical environments
2004-08-15Use '-none' instead of '-notall' as the mipspro equivalent to --no-whole-archivejschauma1-2/+2
2004-08-15Use '-x' instead of '-X';jschauma1-8/+8
use '-none' instead of '-notall' to increase odds that this'll work under older IRIX versions.
2004-08-15substitute --whole-archive and --no-whole-archive with the appropriatejschauma1-4/+4
linker flags (-all and -notall, respectively). Pointed out by Georg Schwarz in private mail.
2004-08-15-balsa2-2.2.2recht1-3/+2
Change the TeXmacs-1.0.4.1 to TeXmacs-1.0.4R2 since the latter is the latest stable version.
2004-08-15note update of balsa2 to 2.2.2recht1-1/+2
2004-08-15update to 2.2.2recht2-5/+5
* Balsa-2.2.2 release. Release date 2004-08-08 - configurable hiding of deleted messages. - keyboard navigation fixes. - message counting in some edge cases fixed. - GPG fixes. * Balsa-2.2.1 release. Release date 2004-07-30 - IMAP mailboxes could be incorrectly marked as read-only. - message selection behaves more sanely. - 64-bit fixes. - memory leaks fixed. - handle better imap servers without server-side threading and limits on number of concurent connections. - quick "Sender or Subject" message index filtering. - various UI improvements.
2004-08-15Note grhino update to 0.12.0.wiz2-3/+3
2004-08-15Update to 0.12.0:wiz3-10/+14
- Fix AI level bug caused by i18n enabling. - Online help added. - Random game added. - Position of Main window, Pattern Evaluation and Game History windows are remembered. Windows are opened automatically based on the previous run. - Fix several problems in parity evaluator. - Fix game searching problem. Hashing across move is disabled. This slows down winning move and end game searching but gets correct result. - Fix problems with pattern score and open book generation. - Black AI first move is no longer fixed to C4.
2004-08-15fceu updated to 0.98.11.wiz2-3/+3
2004-08-15Update to 0.98.11:wiz2-6/+5
Win32: Special scalers are now also supported in windowed mode. For Scale2x/Scale3x, the fastest "desktop" bit depth is 16bpp. For hq2x/hq3x, it is 32bpp. The shared video blitting code(drivers/common/vidblit.c) can now blit using Scale2x and Scale3x to any target bit depth(8bpp, 16bpp, 24bpp, and 32bpp) instead of just 8bpp, as it was before. HQ2x and HQ3x can now blit to 16bpp, 24bpp(untested), and 32bpp. The 16bpp and 24bpp targets are done doing post-processing conversion, after HQ2x/HQ3x, which really does hurt speed. Changed a few names in the credits section of the documentation to their aliases. Names you didn't get to pick to have are so troublesome. :b I also made various fixes/updates to the documentation. Updated the FAQ with some information regard video mode bit depths and speed. SDL: Disabled the fast-forward-key speed-limiting code. I thought I had done this before... Fixed a major bug in the movie recording code, and added some code to automatically detect and fix playback of broken movies from earlier versions. Did a little swapping thing with mapper 90 and 209. I moved back Mortal Kombat 3 to mapper 90, and moved Shin Samurai Spirits 2 to mapper 209. Sorry for any confusion. Mapper 90 should be considered as having the fancy nametable select mode disabled, with mapper 209 having it enabled. Added support for mapper 160, which turns out to be the same hardware as mapper 90. Joy. Improved mapper 90 emulation. This mapper really needs low-level emulation for IRQs to work right, though. :/ Win32: Fixed the "hide left/right 8 video columns" feature. Since FCE Ultra is ending(or has already exceeded? :b) its actively-updated life, I've gone ahead and added per-game hacks for "Kick Master" and the PAL version of "Star Wars". See the documentation for more details. Minor optimizations to the high-quality sound emulation code. The FIR filter code is the bottleneck, though, so these changes won't have much of an effect on overall speed. Altered MMC3 IRQ emulation(and the hooks in ppu.c for it). Fixed a rather major typo in the VRC7-emulation code.
2004-08-15Add a script to make a source bootstrap kit. By default, the "kitdir"jlam1-0/+41
is ${TMPDIR}/bootstrap-kit-<today>, the resulting archive will extract a directory tree rooted in "bootstrap-kit-<today>".
2004-08-15Remove spurious ")" that was preventing bootstrapping on NetBSD 1.6.2.jlam1-2/+2
2004-08-15Note update of tla to 1.2.1.recht1-1/+2
2004-08-15update to tla-1.2.1recht2-8/+10
This is mostly a small fixes release, though some useful stuff has gotten in: * Spaces support in filenames (done by cehteh, merged by Tom) * New version of libneon (ported by yours truly) * Gobs of small bugs * Gobs of typos * NFS revlib fix. (Yes, this is the corrupt inode sigs one)
2004-08-15note pkgdiff version bump to 0.114dillo1-1/+2
mkpatches: if a patch for a file exists, give the new patch the same name
2004-08-15esound updated to 0.2.35.wiz2-3/+3
2004-08-15Update to 0.2.35:wiz4-9/+9
* fix location of configuration file in man (Craig Routledge) * MMAP support for esddsp (from artsdsp, Olivier Blin) * GNU/kFreeBSD support (Robert Milan) * add new default_options in configuration file and environement variable, fix regression caused by patch since 0.2.30 * use ALSA default alias (Cyrille Chepelov) * clean code (Kjartan Maraas)