Commit graph

3035 commits

Author SHA1 Message Date
minoura
7f3e816b77 Note upgrade of lang/gauche package.
Release 0.5.5 : Feature enchancements.
 * New module math.mt-random : implements Mersenne-Twister random
number generator.
 * New module srfi-19: supports SRFI-19 (Time data types and procedures).
 * New procedure pa$ (partial apply), compose, and some
combinator-like procedures like map$, for-each$. See "Combinators"
section of the reference manual for details.
 * New procedures copy-file, move-file, touch-file and
find-file-in-paths in file.util module.
 * New procedures arity, procedure-arity-includes?,
arity-at-least-value to query procedure's arity. See "Procedure arity"
section of the reference manual.
 * New syntax define-constant, set!-values, begin0, let1.
 * New module math.const : provides some useful constants like pi and e.
 * New system procedure sys-utime.
 * New built-in type <time>, a SRFI-compatible time
representation. SRFI-18 procedures current-time, time->seconds and
seconds->time are also provided.
 * Built-in sort function is improved for the worst case.

Release 0.5.6 : Bug fix and feature enchancements.

 * Supports JIS X 0213:2000 japanese character set.
 * SRFI-27 (Source of random bits) is supported.
 * Added macro dolist; I couldn't regist the temptation.
 * Fixed a bug that caused active objects in DLL to be
garbage-collected on cygwin platform.
 * Fixed a bug that char->integer returned wrong number (thanks for
Sven Hartrumpf).
 * Fixed gosh's usage message (thanks for Sven Hartrumpf).
 * vector-fill! takes optional start/end argument (parallel to SRFI-13
string-fill!).

Release 0.5.7

 * Updated Boehm GC to version 6.1alpha5.
 * Characters can be written in Unicode, as #\uXXXX or #\uXXXXXXXX, or
embedded in literal strings as \uXXXX or \UXXXXXXXX. If Gauche's
internal character encoding is not UTF-8, they are converted to
internal encoding by the reader. Procedures char->ucs and ucs->char
are also provided.
 * Added SRFI-25 (multi-dimensional arrays) support as gauche.array
module. See "Arrays" section of the reference manual for details.
 * Added SRFI-26 (cut and cute macros for specializing parameters)
support. See "Making procedures" section of the reference manual.
 * Added SRFI-28 (basic format strings) support by simply extending
the existing format to allow to omit the port argument.
 * Renamed module srfi-4 to gauche.uvector and added lots of
arithmetic operations on the homogeneous numeric vectors. The old
module srfi-4 still works as an alias of gauche.uvector.
 * Fixed a bug in the UTF8 to EUC_JP conversion routine in
gauche.charconv module.
 * Added make target 'uninstall'.

Release 0.6

 * Multithread support
 * Now info documents are created and installed by default.
 * On-line documentation.
 * Several bug fix and cleanup in signal handling. Added
set-signal-handler!, get-signal-handler and get-signal-handlers. Added
sys-sigmask and sys-sigsuspend. Fixed sys-pause that had missed some
signals to catch.
 * In gauche.net module, allow socket-bind and make-server-socket to
accept 0 as port number and let the system assign the port. (Thanks to
ODA Hideo for a patch).
 * Bug fix in eqv? and equal? : (eqv? 1 1.0) should be #f, but it
returned #t. So as equal?.
 * Bug fix in call/cc and dynamic-wind handling. When you assigned
continuation to the top-level variable and re-invoked it later,
dynamic-wind stack wasn't called properly in certain situations.
 * Bug fix in reading library path from the environment variable
(thanks to Alex Shinn).
 * Bug fix in gauche.uvector code that caused random crash with
s64vector/u64vector.
 * Bug fix in gosh that didn't flush buffered ports when it is used
non-interactively and Scheme's main function returns. (thanks to
Fujii-san).

Release 0.6.1 : minor fixes.

 * Bug fix: fixed the stack trace in the default error message which
was broken since the last release.
 * Bug fix: gosh sometimes went into an infinite loop or dumped core
when used as a slave process of Emacs and the Emacs is killed. (Thanks
to Sakae for pointing this out).
 * The stub generator script is improved. The new format allows more
compact notation. It is not fully compatible with the older versions.

Gauche release 0.6.2 :

 * Module inheritance: modules can be inherited now. You can extend
the existing modules, or bind them togehter into one module, using
module inheritance. See the extended "Modules" section of the
reference manual.
 * Added nested block comment #| ... |#. This is defined in SRFI-30
and compatible among lots of popular Scheme implementations.
 * Added debug stub feature (#?=). See "Debugging" section of the
reference manual.
 * Bug fix: when SIGINT handler was installed and read was
interrupted, the read procedure returned EOF. (Thanks to Julian
Fondren for reporting this).
 * Bug fix: enable-debug hasn't been working for some time.
 * Bug fix: regexp worked incorrectly for patterns like #/a|(b)|c/
(thanks to Alex Shinn for reporting this).
 * The default signal handler for SIGHUP, SIGQUIT and SIGTERM now
terminates the interpreter. So gosh terminates properly when run under
Emacs and the Scheme buffer is killed.
 * New procedures: fixnum?, bignum?, string-pointer-copy,
string-pointer-byte-index (these two are contributed by Alex Shinn),
keyword->string, read-eval-print-loop, sys-nanosleep.
 * New procedures in util.queue: queue-length, list-&gtqueue,
queue->list, find-in-queue, remove-from-queue!.

Gauche release 0.6.3 :

 * Improved the compiler and the VM. Call-intensive applications may
observe 5%-10% performance improvement.
 * Object-apply hook: if non-procedure object is 'applied', a generic
method object-apply is implicitly invoked.
 * Regexp improvements:
 * Charset reader improvement: you can include POSIX character class
notations, such as [:alpha:], in the literal character set,
e.g. #[[:alpha:]].
 * Syntax for literal incomplete strings are changed from #"..." to
#*"...". The old one is still recognized, but its use is deprecated;
eventually the #"..." syntax will be taken by string interpolation
feature, so please move to the new syntax if you're using the old one.
 * Added module: gauche.syslog - syslog(3) API.
 * gauche.logger improvements: now <log-drain> object accepts
procedures to generate prefix. The log can be directed to system
logger by specifying symbol syslog as the logfile path.
 * Bug fix in file.util: directory-fold signalled an error when the
directory had a dangling symlink.
 * Added module: rfc.quoted-printable
 * Bug fix in math.mt-random: the DSO file is linked with
:export-symbols #t, so that other extension modules that use C API of
math.mt-random can work.
 * Bug fix in configure.in : changed autoconf variable GZIP to
GZIP_PROGRAM, for the former interferes gzip's operation.
2002-10-02 08:27:37 +00:00
uebayasi
240f2a7637 Note update of vmware-module 1.0nb1. Patch for the new devsw framework. 2002-10-02 05:32:48 +00:00
rh
6730056467 Note update of pan to 0.11.4 2002-10-02 03:43:01 +00:00
rh
17a21f9bf2 Note downgrade of pan to 0.11.2nb2 and re-import of pan-0.13.0 as gtk2-pan 2002-10-02 03:13:30 +00:00
uebayasi
b292a01dd6 Note update of ddskk-20020929. 2002-10-01 14:44:54 +00:00
dillo
67917d731d note update of mplayer packages to 0.90rc8nb1:
fix VCD playback
	search for config files where we install them
2002-10-01 12:54:01 +00:00
drochner
020182d3cb german fortunes 2002-10-01 10:36:10 +00:00
frueauf
ce27128c14 Note update of fetchmail{conf} to 6.1.0.
Please update older version because of recent vulnerability
(http://security.e-matters.de/advisories/032002.html).
2002-09-30 20:53:31 +00:00
wiz
9766b539db pkgtools/pkglint-3.36 bugfix update; net/dc_gui-0.62 [new options] 2002-09-30 16:36:59 +00:00
wiz
d6dc3de0e4 graphics/tuxpaint-2002.09.29 update. 2002-09-30 16:03:53 +00:00
taca
2b7732b341 Note update of security/rats to 2.1. 2002-09-30 13:54:14 +00:00
wiz
567876f05e graphics/tuxpaint-stamps update to 2002.09.29 2002-09-30 12:48:36 +00:00
martti
05da7abd5e Updated ethereal to 0.9.7 2002-09-30 11:50:42 +00:00
abs
078830ccff Update netatalk to 1.5.5
Neither the Changelog nor CHANGES files list the changes from 1.5.3.1
2002-09-30 09:26:05 +00:00
martti
85ad3fab78 Updated mrtg to 2.9.22 2002-09-30 09:12:30 +00:00
martti
1a85f598bc Added distfetch-20020930 2002-09-30 08:38:25 +00:00
rh
e61203321f Note update of evolution to 1.0.8nb3 2002-09-30 00:02:08 +00:00
rh
97429c6986 Note update of gnustep-make to 1.5.0nb3 2002-09-29 23:46:52 +00:00
simonb
c438b32ce7 Note update spamassassin to 2.41.
Major changes include:

 - SpamAssassin now *REQUIRES* procmail for local delivery support; "-P"
   option is now the default.  Unless you use procmail, Mail::Audit, KMail,
   or an MTA-level integration, do not upgrade blindly, your mail *WILL*
   spill all over the floor in a big mess.

 - significant speed increases, mostly from Matt Sergeant and Dan Quinlan

 - bugs in whitelist_to, all_spam_to and friends fixed

 - rules which were causing too many false-positives removed or fixed:
   DOUBLE_CAPSWORD, UPPERCASE_25_50, PARTIAL_RFC_2369, MSGID_CHARS_SPAM,
   many others

 - lots of rule fixes, and lots of new rules
2002-09-29 23:45:51 +00:00
wiz
87d2851a7c Added fonts/pfaedit-20020910 [postscript font editor -- take a look!] 2002-09-29 23:17:16 +00:00
rh
2a86d6b584 Note update of pkgconfig to 0.13.0 2002-09-29 21:51:19 +00:00
wiz
426fd73a72 graphics/tuxpaint-2002.09.28 update 2002-09-29 20:59:56 +00:00
wiz
b98834adad net/dctc-0.83.5 update [minor] 2002-09-29 17:39:10 +00:00
wiz
b6ed1a0247 mencoder, mplayer, and mplayer-share-0.90rc8 updates. 2002-09-29 16:25:31 +00:00
wiz
c5c3cc15ad lang/sml-nj-110.41 update 2002-09-29 15:04:24 +00:00
wiz
6d9ee55978 www/htmldoc{,-x11}-1.8.22 update 2002-09-29 14:20:48 +00:00
wiz
3147d39923 devel/pkgconfig-0.12.0nb1 update [pthread dependency] 2002-09-29 13:05:05 +00:00
martti
f23247d232 Updated cvsweb to 2.0.6 2002-09-29 12:48:42 +00:00
rh
342fe00fef Note addition of ImageViewer-0.6.0 2002-09-29 09:37:51 +00:00
rh
44e0b9ca9c Note addition of gnustep-preferences-1.2.0 2002-09-29 09:09:39 +00:00
lukem
f508957cbf add cdrecord-devel-1.11a34 2002-09-29 08:43:25 +00:00
rh
5038656a05 Note addition of 3DKit-0.3.1r2 packages 2002-09-29 06:21:15 +00:00
rh
7d4acd4f7a Note addition of GNUMail-1.0.3 2002-09-29 03:49:17 +00:00
rh
389b7c7808 Note addition of Pantomime-1.0.5 2002-09-29 03:42:36 +00:00
wiz
a805c6eefa Added bktr2jpeg-1.0. 2002-09-29 00:14:32 +00:00
dillo
d348036208 belatedly bump mplayer package revision for AAC support 2002-09-28 15:54:54 +00:00
wiz
5e224fece0 devel/automake-devel-1.7 update, correct date in last entry.
Replace static-bash with static-bash2, since that's the dirname.
2002-09-28 10:25:19 +00:00
martti
f48fe295d4 Updated etcupdate to 20020928 2002-09-28 06:19:35 +00:00
hubertf
533fc5b2dd Update gaim to 0.59.3. Changes:
0.59.3 (09/14/2002):
	Rob: This really has been made a little early.  Of course, we figured
	that some of you may like to connect to Yahoo. Sorry about that
	little blunder. I blame it on George.

	Sean: That was just a silly mistake--there's no need to make George
	feel bad!  There's also some nice i18n fixes in there by Matt Wilson
	from RedHat.

	George: Why doesn't anybody love me?

0.59.2 (09/09/2002):
	Rob: This time Sean couldn't be with us.  I finally got my linux box
	some what back in order.  Life has been extremely hectic for both Sean
	and myself lately, I think.  Sean will have his cable connection soon
	and my linux box should be completely happy again soon.  Thanks to
	everyone that kept the patches coming in and organized while we
	were busy (chip, luke, robot, etc.)
2002-09-28 03:49:18 +00:00
rh
d0fe7d5a69 Note additions of GWLib and gworkspace-0.4 2002-09-28 02:21:52 +00:00
wiz
7e39b21697 Updated audio/libsndfile to 1.0.1. 2002-09-28 01:29:59 +00:00
rh
f09c5b1e32 Note addition of gnustep-examples-0.9.7 2002-09-28 00:03:22 +00:00
rh
1a9c6ce197 Note addition of gnustep-back-0.8.1 2002-09-28 00:00:31 +00:00
rh
baee70ab01 Note update of gnustep-base to 1.5.0nb1 2002-09-27 23:56:57 +00:00
rh
1737370043 Note update of gnustep-make to 1.5.0nb2 2002-09-27 23:53:48 +00:00
kristerw
6f13e9cea4 Note update of devel/dejagnu to 1.4.3. 2002-09-27 23:46:28 +00:00
cjep
2393f0f916 Note addition static-bash2 2002-09-27 22:12:50 +00:00
rh
82ff255a0d Note update of createbuildlink to 2.1 2002-09-27 21:21:26 +00:00
rh
e67e772bcb Note addition of gnustep-gui-0.8.1 2002-09-27 15:26:02 +00:00
rh
851817c502 Note update of gnustep-make to 1.5.0 2002-09-27 15:23:06 +00:00
drochner
4de83087b3 grace-5.1.10 2002-09-27 12:02:26 +00:00
wiz
c51db75ce3 Added tuxpaint and tuxpaint-stamps. 2002-09-27 11:31:06 +00:00
martti
6ba77285ee Updated pcre to 3.9 2002-09-27 11:04:42 +00:00
rh
a5cd27b913 Note addition of gnustep-base-1.5.0 2002-09-27 11:00:57 +00:00
rh
40a24101a3 Note addition of gnustep-objc-1.2.2 2002-09-27 10:46:00 +00:00
rh
af2cc9449c Note addition of gnustep-make-1.5.0 2002-09-27 10:42:26 +00:00
shell
43c08a2eb3 Updated :
p5-Net-SSLeay to 1.20
  p5-IO-Socket-SSL to 0.91
  p5-SSLeay to 0.45
  p5-URI to 1.22
2002-09-27 09:46:10 +00:00
schmonz
85ef324203 Note update of cvs2p4. 2002-09-27 02:03:55 +00:00
abs
c7bed04438 s/mserv-irman/mserv_irman/ 2002-09-27 00:14:43 +00:00
jlam
8b21716a92 Note addition of bash has forked off a bash-doc-2.05 package. 2002-09-26 22:10:57 +00:00
schmonz
13ce531326 Note cvsps update, and fix typo in a previous entry. 2002-09-26 22:05:50 +00:00
abs
fa56ed6db2 Update mserv_irman to 0.15:
Fix logic error which would result in asking for more songs
        from the same artist or album to only select songs not
        previously rated, instead of unrated songs followed by SUPERB
        or GOOD songs (if there were unsufficient unrated songs).
2002-09-26 19:39:13 +00:00
drochner
97bfc2447c gimp-print update 2002-09-26 17:29:48 +00:00
jschauma
a6a37e3b16 Note update of devel/pedisassem to 0.23 2002-09-26 17:26:54 +00:00
jschauma
bdc1da3522 Note update of lang/nawk to nawk-20020628. 2002-09-26 17:14:46 +00:00
wiz
033e6ae539 textproc/latex2html-2002.2nb1 update 2002-09-26 16:11:38 +00:00
abs
159f2ccd5b Update jdbc-postgresql to 7.2.2
No changes found in CHANGELOG - just updating distfile to current
	postgresql package.
2002-09-26 10:07:58 +00:00
jwise
d617aec23b Note update of sablotron to 0.96. 2002-09-25 23:18:11 +00:00
wiz
5258d1d838 mail/drac-1.11 update 2002-09-25 19:41:44 +00:00
wiz
50374698da devel/automake-devel-1.6.3 update 2002-09-25 19:32:17 +00:00
wiz
3ef402543b devel/automake-1.4.6 update 2002-09-25 19:23:14 +00:00
wiz
d9a5961628 devel/autoconf-devel-2.54 update 2002-09-25 19:14:17 +00:00
wiz
ee14456b37 sysutils/adjustkernel-1.5 update 2002-09-25 19:06:13 +00:00
wiz
75f510b3c1 pkgtools/pkgcomp-1.1 update 2002-09-25 18:58:20 +00:00
wiz
4789c1f0e9 mail/demime-0.99.4.1 update 2002-09-25 18:48:36 +00:00
wiz
687e427847 www/ap-DBI removed because it's a duplicate of databases/p5-Apache-DBI 2002-09-25 18:41:22 +00:00
wiz
7c26123d62 chat/ekg-20020918, devel/boehm-gc-6.1, chat/eggdrop-1.6.10nb1 updates. 2002-09-25 18:34:51 +00:00
abs
7ecc9236ae Update cpuflags to 0.34:
Add in a reasonable set of mips cpus.
2002-09-25 15:24:30 +00:00
taca
283a508c13 Note update of textproc/ipadic to 2.4.4nb1. 2002-09-25 13:21:44 +00:00
wiz
882923ef37 pkgtools/pkglint-3.35 update 2002-09-25 09:55:42 +00:00
cjep
ba33c1c85e Upgrade of Leafnode (news/leafnode) to version 1.9.27.
Differences to Leafnode version 1.9.26:

* Bug fixes and changes including:
	+ checkpeerlocal.c:
	  % Fix infinite loop problem when interface list is longer than
	    2 kB (reported by Brian Somers).
	  % Fix for non-IPv6 compilation on Solaris
	  % Fix compiler warnings

	+ Portability fixes for 64bit platforms in activutil.c, nntpd.c
	  and texpire.c

	+ nntpd.c: if allowstrangers is set, don't call checkpeerlocal
	  at all.k

(For more details, please see the Leafnode ChangeLog file)
2002-09-25 06:50:17 +00:00
rh
5d35db1ee9 Note update of pan to 0.13.0 2002-09-25 04:59:49 +00:00
rh
dcb70008c0 Note addition of gtkspell-2.0.2 2002-09-25 04:57:09 +00:00
jschauma
c52ab02f48 Note initial import of devel/pvs. See http://pvs.csl.sri.com/ 2002-09-24 17:59:59 +00:00
abs
35c7cb99e4 Update msudir to 0.12:
Fix compilation error on Linux
2002-09-24 17:18:26 +00:00
wiz
103b9b6ab5 Fix three entries. 2002-09-24 15:03:04 +00:00
jschauma
06cde92b2a Note update of wm/bbkeys to 0.8.5, released today. Includes various
bugfixes and works much better with blackbox 0.65.0
2002-09-24 14:23:27 +00:00
martti
a104e369a8 Updated libxslt to 1.0.20 2002-09-24 14:08:15 +00:00
wiz
147ec9bc7a pkgtools/pkglint-3.34 update 2002-09-24 14:02:22 +00:00
blymn
73b9d45370 Added bzflag 2002-09-24 13:09:14 +00:00
wiz
0e2ecc2fd0 Update pkgtools/pkglint to 3.33. 2002-09-24 12:35:43 +00:00
wiz
551b8c2339 mail/popa3d-0.5.9 update 2002-09-24 11:59:23 +00:00
chris
cc33add083 Note addition of tremor and tremor-tools.
Together they provide the basis for a fixed point ogg vorbis decoder.  On arm
cpu's optimised asm routines are provided.
2002-09-24 09:51:25 +00:00
dmcmahill
b4271d038d note update of www/bins to 1.1.17 2002-09-24 02:08:53 +00:00
taca
9650cc50f8 Note update of converters/p5-Jcode to 0.82. 2002-09-23 23:41:02 +00:00
jlam
a8a2f3e635 Don't add -rpath to the libtool command used to create the uninstalled
libcompat.la, as that makes libtool think that package will be installed.
This was causing libpsiconv.la to depend on libcompat.la, even though the
latter was never installed.  Bump the PKGREVISION.
2002-09-23 20:39:21 +00:00
hubertf
b81f582cd8 Add xkbset 0.3:
xkbset is a program rather like xset in that it allows you to set
various features of the X window interface.  It allows one to configure
most of the options connected with the XKB extensions.  They are described
in Section 10 of XKBlib.ps.


XXX

With this program, X can be made to work on a Toshiba Portege 3000
wwwiiittthhhooouuuuttt key repeating. Just put this into your
.xinitrc / .xsession:

	xkbset exp bo
	xkbset bo

Thanks to erik.berglund@deployit.biz for this hint!
2002-09-23 15:41:24 +00:00
wiz
5909cf829e security/flawfinder-1.21 update 2002-09-23 15:20:13 +00:00
wiz
2d5f4f8920 audio/esound-0.2.29 2002-09-23 15:03:12 +00:00
wennmach
ef11ba7f66 Note nb-bump of arla to 0.35.9nb1. 2002-09-23 14:54:36 +00:00
wiz
7cdb899665 xlhtml-0.5 update. Correct date in previous entries, should be server local
time.
2002-09-23 14:03:03 +00:00
markd
266b07d055 Noted sendmail, libmilter and mimedefang. 2002-09-23 13:25:17 +00:00
wiz
7019367b24 net/dc_gui-0.61 update 2002-09-23 11:49:02 +00:00
wiz
803584086f dctc-0.83.4 update 2002-09-23 11:10:51 +00:00
kleink
63972225dc Updated scmxx to 0.6.1.5nb1. 2002-09-23 10:51:34 +00:00
wiz
a7cf8418f9 Update ns-flash to 0.51, unknown changes. Readd sparc distsum to distinfo. 2002-09-23 10:50:21 +00:00
abs
692385e830 Update msudir to 0.11:
Allow fromgroup and rootdir to be unset in the config file.
2002-09-23 10:17:38 +00:00
kleink
3a388dfc32 Updated openldap to 2.0.27. 2002-09-23 10:09:22 +00:00
atatat
bb26058015 Updated pkglint to 3.32. Eliminates spurious complaints about
pkg_install not being up to date.
2002-09-22 16:20:15 +00:00
cjep
be8111326d Initial import of libESMTP-1.0rc1 into the NetBSD packages collection
as mail/libesmtp.

Originally in PR#16146 from Alex Newman.

libESMTP is a library to manage posting (or submission of) electronic
mail using SMTP to a preconfigured Mail Transport Agent (MTA).

It may be used as part of a Mail User Agent (MUA) or another program that
needs to post electronic mail but where mail functionality is not
the program's primary purpose.
2002-09-22 13:02:42 +00:00
cjep
03147c52c8 That should have been 1.9.26... more coffee required... 2002-09-22 10:38:51 +00:00
cjep
6e96997404 Upgrade of Leafnode (news/leafnode) to version 1.9.26.
Differences to previous NetBSD package:

* Use devel/pcre rather than the one supplied with Leafnode.

Differences to Leafnode version 1.9.22:

* Bug fixes and changes including:
	+ No longer install lsort
	+ Merge in timeout_client patch from Jonathan Larmour
	+ Fix file descriptor leak in markdownload()
	+ No longer emit "400 Service discontinued" to clients.
	+ Drop connection when the upstream server runs NNTPcache 2.3.x
	+ More verbose POST reject messages.
	+ Fix two filtering bugs in fetchnews.
	+ Expire groups that are not in group.info
	+ Fix several memory leaks (e.g. in fetchnews.c, newsq.c &
		artutil.c)
	+ Fix possible overflow in nntpd.c
	+ Some speed improvements (e.g. in getline.c and mastring.c)
	+ Fix bogus error messages.
	+ Several documentation fixes.
	+ Various fixes from Leafnode 2.

(For more details, please see the Leafnode ChangeLog file)
2002-09-22 10:37:02 +00:00
mjl
5a8a4ef955 Note sylpheed 0.8.3 2002-09-22 09:10:27 +00:00
tron
7bd679ea97 Note update of "ns-plugger-*" packages. 2002-09-21 15:16:49 +00:00
hubertf
3ee17fa6fc Update xmradio to 1.2. Changes:
Changes from 1.1-1.2
-------------------
- with newer openmotif the CheckBoxes where confused. repaired.
- mixer panel was confusing too. tried to improve.
- records now as mp3 too, you need to install lame and mpg123 for that.
- "delete all" and "scan all" button added to config panel.
- improved GUI response during recording
- lcdproc support is always compiled in, en/disable via app-defaults

Changes from 1.0-1.1
-------------------
- changed homepage and email address
- made version check asynchronous

Update requested by coto on IRC.
2002-09-21 13:31:05 +00:00
martti
b07bc87317 * Updated xpmroot to 2.4.11
* Updated fvwm2 to 2.4.11
2002-09-21 08:27:51 +00:00
rh
4b63b8617e Note update of gtk2 to 2.0.6nb2 2002-09-21 01:40:13 +00:00
rh
3024fb644f Note addition of libgtkhtml-2.0.2 2002-09-21 01:29:37 +00:00
rh
f960a557cd Note addition of gail-0.17 2002-09-21 01:06:59 +00:00
abs
5d2ee41a09 Updated communicator to 4.80
Updated navigator to 4.80
	No changes available from netscape site
2002-09-20 17:01:33 +00:00
rh
2151dfcdbf Note update of ploticus to 2.04 2002-09-20 11:44:17 +00:00
abs
4b947cce8f Update ns-remote to 1.7
'Support' netscape7
	Fix multiple entry NETSCAPE_PREFERRED logic
2002-09-20 11:27:31 +00:00
jlam
1b427ad7e9 Note removal of kyahoo, which has been superseded by kyim. 2002-09-20 11:18:03 +00:00
jlam
fe122bf36f Initial import if kyim-1.0.
KYim is an instant messenger for Yahoo! networks.  It supports basic
connection to the Yahoo! Networks system, and connection through HTTP
proxies, allowing you to:

        * manage your buddy list (add/remove buddies)
        * chat with your buddies by instant messages
        * send messages to your buddies when they are off-line
        * take part in conferences
        * have information about your Yahoo! Mail (is there mail waiting?)
        * receive incoming file transfers

KYim is the successor to KYahoo, which is no longer maintained.
2002-09-20 11:06:29 +00:00
rh
4a5696ee3a Note update of feh to 1.2.1 2002-09-20 11:00:20 +00:00
rh
0a7f38596a Note addition of giblib-1.2.2 2002-09-20 10:57:41 +00:00
jlam
51774b7829 Update chat/libyahoo to 0.18.4. Changes from version 0.18.2 are for
thread-safety, to build a shared library, and a very minor bug fix.
2002-09-20 09:51:43 +00:00
hubertf
2e992d9e54 Update abcde to 2.0.3. Changes:
abcde 2.0.3
  * The Fixed-Yet?-How-About-Now?-What-About-Now?-Now? Release
  * SMP fixed, mad props to Steve Madsen, closes: #69828, #111806
  * Minor code cleanups thanks to Adam Heath
  * Multiple inexact match results are generated in a safe manner
    thanks to Nick Martin, closes: #126025
  * Removed cddb-tool template generation bashism, thanks to Greg
    Norris, closes: #126327
  * Windows can't handle double quotes in filenames either.
    The default mungefilename now removes them, closes: #127643
  * Using -C with WAVOUTPUTDIR fixed, closes: #127728
  * Resuming various artists discs fixed, closes: #127731

  -- Robert Woodcock <rcw@debian.org>  Sun, 27 Jan 2002

abcde 2.0.2
  * The One-More-Time-With-Feeling Release
  * Bladeenc really works this time. Honest. closes: #121988

  -- Robert Woodcock <rcw@debian.org>  Mon,  3 Dec 2001

abcde 2.0.1

  * The I-Don't-Listen-To-Sssca Release
  * Example abcde.conf fixes, closes: #111580
  * So much for bladeenc's l3enc compatibility, closes: #110863
  * CDDB submit fixes (to enable CDDB submitting, put
    UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE=y in your abcde.conf),
    closes: #111478, #111500
  * Minor mungefilename() cleanup
  * Small manpage fix
  * Works with oggenc when POSIXLY_CORRECT is defined, thanks to Juhapekka
    Tolvanen
  * Quote remote locations when calling distmp3
  * Allow remote encoding of oggs
  * Only remove wav files if the encoding succeeded
  * No-local-encoding via -j 0 fixed, thanks to Hans-Joachim Baader
  * CD read errors are trapped/resumed cleanly now thanks to Pete,
    closes: #111618
  * devfs device check fix, thanks to Clint Adams
  * Check for seq command - some BSD's have jot instead and abcde can't
    use that yet
  * Various Artists playlist generation fixed, thanks to William Lash

  -- Robert Woodcock <rcw@debian.org>  Tue,  6 Nov 2001
2002-09-20 00:33:11 +00:00
hubertf
4ca8871de3 6to4 1.3: ifconfig create stf0, and a few other tweaks 2002-09-20 00:19:09 +00:00
jschauma
7791e17055 Note addition of netscape7 2002-09-19 22:36:25 +00:00
atatat
3c4dedd021 Note addition of rt-mysql and rt-pgsql packages, both version 2.0.13.
RT is an industrial-grade ticketing system. It lets a group of
people intelligently and efficiently manage requests submitted by
a community of users. RT is used by systems administrators, customer
support staffs, NOCs, developers and even marketing departments at
over a thousand sites around the world.
2002-09-19 22:06:14 +00:00
jschauma
d03b2d1408 Note update of wm/blackbox to latest 0.65.0 release:
Changes from 0.62.1 to 0.65.0:
  - added Taiwan Chinese (zh_TW), Hungarian (hu_HU), Latvian (lv_LV),
    Korean (ko_KR), Norwegian (no_NO), Polish (pl_PL), Romanian (ro_RO) and
    Ukrainian (uk_UA) nls files and updated most of the others.
  - removed the Estonian (ee_ET) and Turkish (tr_TR) locales due to their
    being heavily out of date and unmaintained
  - remove slit and netwm as compile time options
  - strip much of BaseDisplay's original functionality and move it to the
    blackbox class.
  - huge amounts of internal cleanups
  - added emacs local variables to each file that prevent the addition of tabs
  - added a Util.cc file which contains useful functions with no obvious home.
  - move code over to the STL
  - removed several unused variables and otherwise reduced the memory usage
    of the objects in Blackbox.  For the record the binary is roughly 100k
    larger than 0.62.0 and that is mostly due to the STL but there is also a
    fair bit of new code.  However for the most part blackbox runs faster and
    is still one of the leanest window managers out there today.
  - bsetroot now sets _XROOTPMAP_ID, so pseudo transparent apps will be happy
  - beginnings of a strut implementation.  toolbar and slit are removed from
    the available screen area if 'full maximize' is not set
  - XReparentWindow sends an UnmapNotify to the window manager however
    in certain cases the window is already unmapped so the window manager
    never gets the event and the unmapNotify event is where reparentNotify was
    handled.  Added a reparentNotifyEvent handler in the BlackboxWindow class
    and a new case in the Blackbox class's process_event function.
  - no more blackbox->grab/ungrab calls everywhere
  - compression of motion and expose
  - Now we have one function which turns ~/ into /home/user/.  This is now
    called everywhere this expansion should be done.  Even added this to the
    resource.menu_file so now the menu file may be specified as
    ~/blackbox_menu.
  - added a TimerQueue which is a priority_queue with the ability to release
    items it contains before they reach the top of the queue.  Also added a
    TimerQueueManager protocol class which BaseDisplay now inherits from.
  - BTimer now defaults to NOT recurring.  Most of the timers in blackbox were
    one shots so I saw little benefit in defaulting to repeating timers.
  - update transient handling, should solve issues with apps like acroread.
    added a getTransientInfo() method of the BlackboxWindow class which
    handles checking the transient state in X and setting the appropriate
    variables on the window.  To attack the infinite loops this
    function ensures that client.transient != this and we check for loops
    of the form A -> B -> C -> A.  The new transient code also allows for one
    window to have multiple transients so applications like xmms and web
    browsers are better behaved.
  - even better ICCCM support and focus handling
  - wmswallow works
  - fix for clock clipping in the toolbar
  - better support for non decorated windows and toggling decor
  - the geometry window shown when moving or resizing a window now handles the
    parentrelative setting better.  parentrelative support has been improved
    for all of the other widgets as well.
  - better window group handling
  - improved edge snap support (still no window to window snapping)
  - changing preferences no longer leads to windows being raised
  - the window's "send to" menu ignores the current workspace, which is a
    better UI approach
  - new placeWindow algorithm.  Blows the old one out of the water.  Not only
    is it faster but it is also cleaner code too (-:  Went from number 5 in
    the profiling results to under 30.  Image rendering is now the slowest
    part of managing of new windows.
    Because of the new code layout, support is now there for new and
    different layout options but this will wait for after 0.65.0.
  - smart window placement ignores shaded windows now
  - new option in the Config menu which allows Scroll Lock to disable
    Blackbox's keybindings.
2002-09-19 16:01:37 +00:00
abs
1de72d7826 Updated rconfig to 0.13:
Permit locking of files (to exclude from push)
2002-09-19 14:58:10 +00:00
lukem
3ee2747143 - move the pkgsrc related HACKS into a separate file.
- remove the pkgsrc|basesrc|syssrc (etc) prefix from file entries;
  it wasn't consistently used anyway
2002-09-19 13:15:38 +00:00
lukem
a95f3f09a0 move doc/pkg-CHANGES* -> pkgsrc/doc/CHANGES*
move pkgsrc/TODO -> pkgsrc/doc/TODO

as mentioned on developers and subsequently confirmed with agc@
2002-09-19 12:45:24 +00:00