summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2007-01-19usedmcmahill2-2/+12
FOO=bar export FOO instead of export FOO=bar for the benefit of solaris.
2007-01-19Both db.h and ndbm.1 must be included to use DBM. Use both headersminskim2-1/+16
in extconf.rb to check the availability of DBM. This makes the package build on Darwin.
2007-01-19Update htdocs-share to a new snapshot that allows for the ghostscripttv2-6/+6
package to be named simply "ghostscript".
2007-01-19grammarfix in Interix blurbtv1-2/+2
2007-01-19+ TeXmacs-1.0.6.8, bittorrent-5.0.5, gdl-0.7.1, mail-notification-4.0,wiz1-2/+6
seamonkey-1.1.
2007-01-19Fix compilation on platforms where gcc does not produce PIC objects by default.wiz2-2/+4
2007-01-19Add DragonFly support.joerg5-8/+73
2007-01-19Add www/ap-auth-external and update net/citrix_icasborrill1-1/+3
2007-01-19Note update of mail/mew pacakge to 5.2.taca1-1/+2
2007-01-19Update mew to 5.2.taca3-7/+11
Changes from 5.1 to 5.2: (http://www.mew.org/release/index.html.en#Mew-5.2) * Full S/MIME support based on GnuPG 2. http://www.mew.org/feature/smime.html.en * Automatic resizing for large JPEG/PNG images. * Hyper Estraier support. http://www.mew.org/feature/est.html.en Hyper Estraier is a full text search engine based on the N-gram algorithm which is independent on language. You can search your target messages from ALL folders on Windows, Mac, and UNIX.
2007-01-19Add checksum for patch-ac.joerg1-1/+2
2007-01-19This package is not MAKE_JOBS_SAFE.rillig1-1/+2
2007-01-19Modular Xorg support.joerg1-1/+2
2007-01-19Try to inform legacy variables / options. Minor cleanups.uebayasi1-5/+7
2007-01-19Note import of Kahua 1.0.1.uebayasi1-1/+2
Kahua is CPS, Continuation Passing Style application framework written in one of scheme implementation, Gauche. CPS has following advantages. - You can use "Continuation" easily so you can resolve the typical Web Applicaiton's problem of process disconnection. - You can program declaratively by using S-expressions as fundamental data type. - You can use Kahua's Object Database to permanent data by itself. - You can modify the function being run and it supports incremental development. Gauche is an R5RS Scheme implementation that is designed to be a useful tools for daily work. See http://practical-scheme.net/gauche/ in detail. Kahua is licensed under the modified BSD license. See COPYING in detail. "Kahua" means platform, location or base in Hawaiian.
2007-01-19+kahuauebayasi1-1/+2
2007-01-19Initial import of Kahua 1.0.1.uebayasi6-0/+136
Kahua is CPS, Continuation Passing Style application framework written in one of scheme implementation, Gauche. CPS has following advantages. - You can use "Continuation" easily so you can resolve the typical Web Applicaiton's problem of process disconnection. - You can program declaratively by using S-expressions as fundamental data type. - You can use Kahua's Object Database to permanent data by itself. - You can modify the function being run and it supports incremental development. Gauche is an R5RS Scheme implementation that is designed to be a useful tools for daily work. See http://practical-scheme.net/gauche/ in detail. Kahua is licensed under the modified BSD license. See COPYING in detail. "Kahua" means platform, location or base in Hawaiian.
2007-01-19add missing rmd160 checksumsdmcmahill1-1/+4
2007-01-19add some missing rmd160 checksumsdmcmahill1-1/+3
2007-01-19remove some blank lines that pkglint did not likedmcmahill1-3/+1
2007-01-19add missing rmd160 hashes for boot.{sparc,ppc}-unix.tgzdmcmahill1-1/+3
2007-01-19Note update of Gauche-0.8.9.uebayasi1-1/+2
Important changes excerpted from web pages: 2007/1/17 Gauche 0.8.9: Major maintenance release + Bug fixes + Miscellaneous improvements: 2006/11/18 Gauche 0.8.8 important patch: There is a bug in main.c that makes gosh exits silently without reporting errors when a Scheme script raised an unhandled error. Please apply the patch shown in the following message: http://sourceforge.net/mailarchive/forum.php?thread_id=30949517&forum_id= 2043 2006/11/11 Gauche 0.8.8: Major maintenance release + Important Changes: o Exact rational number is supported; now you get 1/3 from (/ 1 3). To obtain inexact number from division of two exact numbers, you have to use exact->inexact explicitly. With this change you can get more exact result, but if your code has relied on the old Gauche behavior that automatically converts rationals to inexact reals, your code may run very slowly in this release of Gauche (since exact rational arithmetic is much slower than flonum arithmetic). For the smooth transition, a compatibility module compat.norational is provided, which makes the / operator behaves like before. See the manual entry for the details. o The reader is more strict about utf-8 encoding. Consequently, some source files in other encoding that happened to be accepted by previous versions of Gauche may no longer work. If you get an error, either convert the encoding of the source, or use "coding:" magic comment (See "Multibyte scripts" section of the reference manual). o The test-module routine in gauche.test is fixed so that it detects more references to undefined global variables that have been overlooked. You may get an error something like "symbols referenced but not defined: ...". In most cases, they are from typos. See the manual entry of gauche.test - Unit testing for the details. o New modules: # sxml.serializer: Generic routine to convert SXML to other formats like XML or HTML. Written by Dmitry Lizorkin and ported to Gauche by Leonardo Boiko. # util.trie: Implementation of Trie. Originally by OOHASHI Daichi, and hacked by numerous Gauche hackers. # util.rbtree: Implementation of Red-Black Tree. Written by Rui Ueyama. o A bug in port locking routine, that caused a race condition on multiprocessor machine, is fixed. As a side effect, port lock operation became a bit faster. o C API prospected change: Scm_Eval, Scm_EvalCString, and Scm_Apply will have different API in the next release. The current API is kept under a different name, Scm_EvalRec, Scm_EvalCStringRec, and Scm_ApplyRec. If you are using those functions, please make changes until the next release. + Miscellaneous fixes and improvements: 2006/4/12 Gauche 0.8.7: Major maintenance release + Bug fixes: + Improvements:
2007-01-19Update Gauche from 0.8.6 to 0.8.9.uebayasi11-78/+53
Important changes excerpted from web pages: 2007/1/17 Gauche 0.8.9: Major maintenance release + Bug fixes + Miscellaneous improvements: 2006/11/18 Gauche 0.8.8 important patch: There is a bug in main.c that makes gosh exits silently without reporting errors when a Scheme script raised an unhandled error. Please apply the patch shown in the following message: http://sourceforge.net/mailarchive/forum.php?thread_id=30949517&forum_id= 2043 2006/11/11 Gauche 0.8.8: Major maintenance release + Important Changes: o Exact rational number is supported; now you get 1/3 from (/ 1 3). To obtain inexact number from division of two exact numbers, you have to use exact->inexact explicitly. With this change you can get more exact result, but if your code has relied on the old Gauche behavior that automatically converts rationals to inexact reals, your code may run very slowly in this release of Gauche (since exact rational arithmetic is much slower than flonum arithmetic). For the smooth transition, a compatibility module compat.norational is provided, which makes the / operator behaves like before. See the manual entry for the details. o The reader is more strict about utf-8 encoding. Consequently, some source files in other encoding that happened to be accepted by previous versions of Gauche may no longer work. If you get an error, either convert the encoding of the source, or use "coding:" magic comment (See "Multibyte scripts" section of the reference manual). o The test-module routine in gauche.test is fixed so that it detects more references to undefined global variables that have been overlooked. You may get an error something like "symbols referenced but not defined: ...". In most cases, they are from typos. See the manual entry of gauche.test - Unit testing for the details. o New modules: # sxml.serializer: Generic routine to convert SXML to other formats like XML or HTML. Written by Dmitry Lizorkin and ported to Gauche by Leonardo Boiko. # util.trie: Implementation of Trie. Originally by OOHASHI Daichi, and hacked by numerous Gauche hackers. # util.rbtree: Implementation of Red-Black Tree. Written by Rui Ueyama. o A bug in port locking routine, that caused a race condition on multiprocessor machine, is fixed. As a side effect, port lock operation became a bit faster. o C API prospected change: Scm_Eval, Scm_EvalCString, and Scm_Apply will have different API in the next release. The current API is kept under a different name, Scm_EvalRec, Scm_EvalCStringRec, and Scm_ApplyRec. If you are using those functions, please make changes until the next release. + Miscellaneous fixes and improvements: 2006/4/12 Gauche 0.8.7: Major maintenance release + Bug fixes: + Improvements:
2007-01-19- bacula-2.0.1.ghen1-2/+1
2007-01-19Updated sysutils/bacula, bacula-clientonly, bacula-gnome-console,ghen1-1/+6
bacula-tray-monitor and bacula-wx-console to 2.0.1.
2007-01-19Upgrade the bacula and bacula-* packages to bacula 2.0.1. Additionally applyghen2-6/+12
2.0.1-restart.patch for the director daemon. Changes: 12Jan07 kes Fix Bacula->Documentation link on Win32 to point to index.html instead of bacula.html. Fixed bug #750. kes Return JobId in db_get_job_record() when JobId==0. This should fix bug #741. kes Do not release source pointers when restarting a failed job. 11Jan07 kes Add dynamic dll entry point for SHGetFolderPath to Win32 code. This *should* fix bug #747. kes Modify winbacula.nsi to substitute with g bin_dir_cmd. Should fix bug #742. 09Jan07 kes Modify USTORE constructor to set an empty store_source string, and don't copy the store_source string in a cancel. Hopefully this will fix Arno's seg fault, bug #744. kes Add back code to disable conio in configure. Fixes bug #743. kes Correct the Options scanner in the FD to correctly handle SHA1 option, which was eating the next option. Reported by Sebastien Guilbaud. kes Add code to indicate when the SD is spooling, spool wait, and despooling as requested by Alan Brown. For 2.0.1-restart.patch: Fixes bug #755 where jobs that were automatically rescheduled after a failure were being upgraded from Incremental (or differential) to Full backups (the since_time was lost).
2007-01-19Fix some pkglint warnings: include bsd.prefs.mk before setting defaults (?=)ghen1-2/+5
for user-settable variables, and announce them in BUILD_DEFS.
2007-01-19Reindent to satisfy pkglint.ghen1-3/+3
2007-01-19Add ap-auth-externalsborrill1-1/+2
2007-01-19Initial commit of an external authentication module provides a flexiblesborrill6-0/+453
tool for creating authentication systems based on other databases. The module can be used in either of two somewhat divergent ways: 1) External Authentication: 2) Hardcoded Authentication:
2007-01-19Take over as maintainer (missed from previous commit).sborrill1-2/+2
2007-01-19Added a patch from upstream that sets the terminal size correctly onrillig3-3/+23
FreeBSD and NetBSD. PKGREVISION++
2007-01-19Note rss2email update.schmonz2-3/+3
2007-01-19Update to 2.60. From the changelog:schmonz5-17/+163
* Now compatible with SunOS * Correctly handle international character sets in email From Plus changes from Debian: * Document more options in config.py * Flesh out manual page * Check exit status of sendmail, and die if it fails * Use fcntl even on non-Sunos-Unix
2007-01-19Note py-html2text PKGREVISION bump.schmonz1-1/+2
2007-01-19Apply small cleanup patch from Debian. Bump PKGREVISION.schmonz3-3/+37
2007-01-18Instead of creating files from patches, place them readably inschmonz8-149/+132
${FILESDIR} for easier tracking of external changes (e.g., Debian, whence they came). No functional change.
2007-01-18Added a patch that calls closedir() after scanning a directory. Now RATSrillig3-3/+25
is able to scan much larger directories. :) PKGREVISION++
2007-01-18Note tinycdb update.schmonz1-1/+2
2007-01-18Update to 0.76. From the changelog:schmonz3-14/+13
* manpage spelling fixes, from Claus Assmann <ca+tinycdb (at) esmtp.org>. * little mods to allow compiling tinycdb by C++ compiler, from Olly Betts <olly (at) survex.com>. * use program_invocation_short_name on GLIBC, (modified) patch from Dmitry V. Levin <ldv (at) altlinux.org> * manpage fix (cdb_findnext() prototype), from Dmitry V. Levin <ldv (at) altlinux.org> * (somewhat silly) GCC-4.x "signedness" warnings fix, modified patch from Dmitry V. Levin <ldv (at) altlinux.org> * more signed vs unsigned char* fixes in various places * Makefile: always build libnss_cdb.so with libcdb_pic.a, no nss-shared target: to avoid extra dependency from /usr/lib/. * Makefile: use map files for lib*.so, with explicit list of exported symbols. This, in particular, avoids exporting of libcdb symbols by libnss_cdb.so. * mark all internal routines as internal_function (defined as __attribute__((visibility("hidden"))) for GCC) * Makefile: add tests-shared, to use cdb-shared for testing * Makefile: allow to specify which binary (shared vs static) to install in install target, by using INSTALLPROG variable * Makefile: pass -DNSSCDB_DIR=... to compiler when building .lo files, to allow setting of system config dir (/etc by default) on command line. For nss_cdb module. * Makefile: use $(CP) instead of cp, to be able to specify `cp' options (CP="cp -p") * Use unlink(tmpname) + open(O_CREAT|O_EXCL) instead of open(O_CREAT|O_TRUNC) when creating the new CDB file. And use O_NOFOLLOW if defined. This also works around some (probably) possible symlink attacks. * Add -p perms option for cdb utility, to specify mode (permission bits) for newly created .cdb file (default is 0666&umask(), -p forces the given mode). * allow tmpname (cdb -t) to be `-', to mean no temp file gets created. Also check if tmpname is the same as database name and don't try to rename() if it is. * rewrite nss_cdb-Makefile a bit: simplify it, and use more sane permission scheme for /etc/shadow * fixed a typo in cdb_seek.c, -- it segfaulted if passed NULL dlenp pointer. Thanks Daiki for the patch. Closes: #383417 * use MAP_FAILED to test mmap() return value, instead of hardcoded -1. * libcdb-dev replaces tinycdb<0.76
2007-01-18+ gauche-0.8.9, gworkspace-0.8.4, host-20070117, ns-flash-9.0.31.0,wiz1-7/+8
nut-12.2, p5-SVN-Web-0.51, stella-2.3.5.
2007-01-18gnome-icon-theme PKGREVISION bump; glib2 and gtk2 updates.wiz2-4/+5
2007-01-18Update to 2.12.8:wiz3-30/+6
Overview of Changes from GTK+ 2.10.7 to 2.10.8 ============================================== * Bugs fixed: 393102 _gtk_modules_init assumes display is not opened instead o... 395326 Gedit crashed no open text documents 394855 impossible to build the directfb version 396161 GtkUIManager crashing on unknown action in ui-file 334168 Single '~' in location entry doesn't go to $HOME 363147 GTKFileChoser Does not Show Desktop and Home after Uncol... 390746 Custom tab title not set correctly on Microsoft Windows 393813 Segfault in gtk_text_view_set_border_window_size() 395316 File leak in gtk-demo 395830 Wrong named icon lookup when requested size matches two s... 396074 libgtk should link against Xfixes 396160 Memory leak in gtkselection 396175 wrong GtkWarning: Input method gtk-im-context-simple shou... 396470 Missing slider redraw in GtkRange if activate-slider is set 153828 Filechooser does not remember state 357303 Gnome Main Menu Recent Documents extended by long file na... 394000 Documentation error for GdkPixdata 392504 The crosshair mouse cursor look a bit funny 393255 GtkNotebook: Menu label centered instead of left aligned 395045 gtk_radio_button_focus: Harmless compiler warning * Updated translations (bg,lt,sl)
2007-01-18Update to 2.12.9:wiz2-7/+6
Overview of Changes from GLib 2.12.8 to GLib 2.12.9 =================================================== * Fix an unintended ABI break in the 2.12.8 release * Bugs fixed: 397139 glib-2.12.8 breaks ABI Overview of Changes from GLib 2.12.7 to GLib 2.12.8 =================================================== * Due to an oversight, GLib has been linked against libpthread since 2.12.2. This has been fixed by moving the monotonic timer support into gthread. * Bugs fixed: 393812 glib links against pthread 394258 gthread.c: illegal include order 394641 Undefined reference in gthread 394150 gettime implementation breaks compilation on darwin 6 395203 g_timer_elapsed off by 2 order of magnitude 394262 image/* mimetype breaks stuff 392636 glib-2.0.m4 ignores PKG_CONFIG environment variable 395419 Glib-2.12.7 with mingw(w32api-3.8/windows) fails to compi... 329031 G_GNUC_INTERNAL fails with gcc-2.95 * Updated translations (ar,bg,ca,it,nl,th)
2007-01-18Remove non-existent directory from PLIST. Bump PKGREVISION.wiz2-3/+3
2007-01-18Update to versions 9.0.0 (i386) and 8.46 (sparc) which are the latestsborrill6-49/+59
released versions. Version 9 is the Presentation Server 4.0 release of clients. N.B. sparc code currently untested. Take over as maintainer. Fix a few pkglint warnings. Update description to be more accurate and up-to-date. We need suse_openmotif to run wfcmgr under Linux emulation.
2007-01-18Note py-html2text update.schmonz1-1/+2
2007-01-18Update to 2.25. From the changelog:schmonz2-6/+6
* output unicode better (tx s s)
2007-01-18Modular Xorg support.joerg1-1/+6
2007-01-18Fixed PKGMANDIR and sorted PLIST.rillig2-155/+156