summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-08-16Add and enable wipe.minskim2-2/+4
2004-08-16Import wipe from pkgsrc-wip. Packaged by pancake and modified by me.minskim5-0/+77
Wipe is a secure file wiping utility. There are some low level issues that must be taken into consideration. One of these is that there must be some sort of write barrier between passes. Wipe uses fdatasync(2) (or fsync(2)) as a write barrier, or if fsync(2) isn't available, the file is opened with the O_DSYNC or O_SYNC flag. For wipe to be effective, each pass must be completely written. To ensure this, the drive must support some form of a write barrier, write cache flush, or write cache disabling. SCSI supports ordered command tags, has a force media access bit for commands, and write cache can be disable on mode page 8. IDE/ATA drives support write cache flushes and write cache disabling. Unfortunately, not all drives actually disable write cache when asked to. Those drives are broken. Write caching should always be disabled, unless your system is battery backed and always powers down cleanly.
2004-08-16Add and enable weewm.minskim2-2/+4
2004-08-16Import weewm from pkgsrc-wip. Packaged by xtraeme@ and updated by me.minskim5-0/+69
WeeWM (Wee Enhanced Environment) is a fast and light window manager for XFree86. Everything can be done with a keyboard. It is customizable, and has dock management, smart window placement, virtual desktops, and more.
2004-08-16Update pkgtools/libnbcompat to 20040814. Changes from version 20040813jlam45-764/+4929
include: * Adding a regex(3) implementation for those platforms that don't have one, e.g. IRIX 5.3. * Allow nbcompat.h to be included multiple times in case it's needed to override values of set by config.h in bootstrap packages. This should fix problems with building pkg_install and pax on platforms that have /usr/include/glob.h. * Remove namespace.h, which should be a no-op since we're building a userland library separate from the NetBSD sources. * Remove HAVE_CONFIG_H checks from sources since we're always going to have and and we're always going to be including it. * Rename all inclusion guards in nbcompat/*.h to be _NBCOMPAT_*_H_ so that it won't get triggered by any settings in system headers. This has been tested on: FreeBSD-4.8/i386 Debian Linux 3.0 (woody) IRIX 6.5 MacOS X 10.2.8 MacOS X 10.3.5 NetBSD-1.6.2/i386 NetBSD-2.0_BETA/i386 Red Hat Linux 7.3 Solaris 7/sparc Solaris 8/sparc Solaris 9/sparc
2004-08-16Add and enable py-funge.minskim2-2/+4
2004-08-16Initial import of py-funge. Packaged by Yi Min-Cheol.minskim4-0/+66
PyFunge is a Funge-98 interpreter written in Python. It includes almost all of features found in the Funge-98 specification and also provides some other features like fingerprints. PyFunge is written in object- oriented fashion and designed to be extensible from ground up.
2004-08-16Note update to zsh to 4.2.1.recht1-1/+2
2004-08-16-source-highlightseb1-2/+1
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.