summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-03-08Initial import of ppmd-9.1, a PPM file compressor.ben6-0/+91
PPMd is a file compressor written mainly for embedding in user programs, and it is not intended for direct use. This program is an effort to make speed and performance improvements on the abstract PPM model [1-6] without tuning it to particular data types.
2004-03-08This needs gcc3 to build.wiz3-5/+15
Also, add LDFLAGS to a link call so this builds on non-native-threads systems.
2004-03-08Remove treetext package; HOMEPAGE disappeared and broken for months.wiz7-47/+3
2004-03-08Fix PLIST after libtool update.wiz1-2/+1
Should fix bulk build problem.
2004-03-08Remove info files entries from PLIST.seb1-2/+1
2004-03-08Remove info files entries from PLIST.seb1-2/+1
XXX the package did not build for me.
2004-03-08Remove info files entries from PLIST.seb1-2/+1
2004-03-08Remove info files entries from PLIST.seb4-30/+4
2004-03-08oss-3.9.8d update done.wiz2-3/+3
2004-03-08Blind update to latest version 3.9.8d; previous distfile has been removed.wiz2-5/+5
2004-03-08Note update of amule to 1.2.6.jmmv1-1/+2
2004-03-08Update to 1.2.6:jmmv5-65/+8
Kry: * Improved Mac compatibility. * Fixed the i18n charset. * Try to set the locale even if it seems to fail. Creteil: * Fixed the default Size to 800x600 for 1st time aMule launched without ~/.eMule config file. shakraw: * ExternalConn: new communication code using wxSockets. * Web interface: improved communication performance. * Text interface: now using new wxSockets code. pil0t: * Fix for the geometry on start. pure_ascii: * Added sorting to filename list in file details. * Added "Takeover" by doubleclick in file details. * Fixed preferences window popping up on "Show/Hide UL/DL" in download list. * i18n stuff (Systray). rubber30: * Fixed viewing and sorting by LastSeenComplete and LastReception. Emilio Sandoz: * Converted stats calculations to 64bit where necessary (for uptime >49days). * i18n strings fixed. * gcc 2.95 compilation fix. deltaHF: * i18n stuff.
2004-03-08Update Tcl/Tk to 8.4.6.minskim12-115/+111
* Tcl_Obj sharing fixed in [binary scan] * Updated errno usage for recent glibc * Fixed [file normalize ~unknownuser] error * Fixed two memory leaks in VFS code * Fixed possible infinite loop in TclFinalizeFilesystem * Updated HP-UX 11 build libraries setup * Unix std channels forced to exist at startup * Stopped broken [exec] quoting of '{' * Fixed memory leak with very long host names * Corrected level interpretation of Tcl_CreateTrace * Allow 64-bit configure on IRIX64-6.5* * Several OS X/Aqua native integration improvements (scrollbar, event generate, unicode clipboard, tk_messageBox, mousewheel event, alpha blending for partially transparent images) * Recognized native hand2/fleur cursors on Windows * Post menubuttons so they stay on screen better * Fixed crash during intra-image copy/resize * New msg catalogs for Esperanto and Polish * Corrections bold/italic font handling (width calculations) on Windows * Fixed shrinking grid geometry calculations
2004-03-08Remove info files entries from PLIST.seb1-7/+1
2004-03-08Note update of math/pspp to version math/pspp [dependencies change]seb1-1/+2
2004-03-08Bl3ify and use gmp from devel/gmp not the supplied and older one. Thisseb5-155/+317
fix build with gcc3. Note that the somewhat aging gmp autoconf test had been removed wholesale. Bump PKGREVISION.
2004-03-08Note revision bump for gnome and gnome-extras to 3.jmmv1-1/+3
2004-03-08Depend on balsa2, gnome-audio and glade2, as these have been removed fromjmmv1-3/+6
the gnome meta-pkg. Bump PKGREVISION to 3.
2004-03-08Sync dependancies with the list of applications that can be found at:jmmv1-5/+7
ftp://ftp.gnome.org/pub/gnome/desktop/2.4/2.4.2/sources/ This means removal of balsa2 and gnome-audio, and addition of gucharmap, zenity and gnome-accessibility. Bump PKGREVISION to 3.
2004-03-08Bump PKGREVISION and some dependancies due to changes done in thesejmmv1-12/+12
packages (addition of xdg-dirs>=1.1 as a dependancy).
2004-03-08note automake-1.8.3 update.wiz1-1/+2
2004-03-08Update automake to 1.8.3:wiz2-5/+5
Bugs fixed in 1.8.3: * Long standing bugs: - Quote filenames in installation rules, in case $DESTDIR, $prefix, or any of the other *dir variables contain a space. Please note that Automake does not and cannot support spaces in filenames that are involved during the build. This change affects only installation paths, so that `make install' does not bomb out in packages configured with ./configure --prefix '/c/Program Files' - Fix the depfiles output so it works with GNU sed (<4.1) even when POSIXLY_CORRECT is set. - Do not AC_SUBST(LIBOBJS) in AM_WITH_REGEX. This macro was unusable since Autoconf 2.54, which defines LIBOBJS itself. - Fix a potential (but unlikely) race condition in parallel elisp builds. (Introduced in 1.7.3.) - Do not assume that users override _DEPENDENCIES in all conditions where Automake will try to define them. - Do not use `mkdir -p' in mkinstalldirs, unless this is GNU mkdir. Solaris 8's `mkdir -p' is not thread-safe and can break parallel builds. This fix also affects the $(mkdir_p) variable defined since Automake 1.8. It will be set to `mkdir -p' only if mkdir is GNU mkdir, and to `mkinstalldirs' or `install-sh -d' otherwise. - Secure temporary directory creation in `make distcheck'. (PR/413) - Do not generate two build rules for `parser.h' when the parser appears in two different conditionals. - Work around a Solaris 8 /bin/sh bug in the test for dependency checking. Usually ./configure will not pick this shell; so this fix only helps cases where the shell is forced to /bin/sh. * Bugs introduced by 1.8: - In some situations (hand-written `m4_include's), aclocal would call the `File::Spec->rel2abs' method, which was only introduced in Perl 5.6. This new version reestablish support Perl 5.005. It is likely that the next major Automake releases will require at least Perl 5.6. Consider upgrading your development environment if you are still using the five-year-old Perl 5.005. - Automake would sometimes fail to define rules for targets listed in variables defined in multiple conditions. For instance on if C1 bin_PROGRAMS = a else bin_PROGRAMS = b endif it would define only the `a.$(OBJEXT): a.c' rule and omit the `b.$(OBJEXT): b.c' rule. * New sections in manual: - Third-Party Makefiles: how to interface third party Makefiles. - Upgrading: upgrading packages to newer Automake versions. - Multiple Outputs: handling tools that produce many outputs.
2004-03-08Note update of tk to 8.4.5.minskim1-1/+2
2004-03-08Update tk to 8.4.5. Too many changes since 8.3.4. Please seeminskim9-1251/+310
ChangeLog in the distfile.
2004-03-08Enable tk84 and replace x11/tk with x11/tk83. Packages compatibleminskim90-183/+184
with 8.4 will be updated to depend on x11/tk after Tk update.
2004-03-08Reimport tk-8.3.4 into x11/tk83 before updating Tk to 8.4.5, becauseminskim10-0/+1980
many packages still need 8.3. OK'ed by the maintainer (jwise@).
2004-03-08Note update of tcl to 8.4.5.minskim1-1/+2
2004-03-08Update tcl to 8.4.5. Too many changes since 8.3.4. Please seeminskim10-358/+392
ChangeLog in the distfile.
2004-03-08Add gnome to CATEGORIES.jmmv1-2/+2
2004-03-08Replace lang/tcl with lang/tcl83. Packages compatible with 8.4 willminskim45-94/+95
be updated to depend on lang/tcl after Tcl/Tk update.
2004-03-08Remove info files entries from PLIST.seb1-10/+1
2004-03-08Don't register share/pixmaps; it's now properly handled by xdg-dirs andjmmv16-48/+16
xdg-x11-dirs.
2004-03-08Handle some shared directories by depending on (or updating dependancies tojmmv197-450/+605
the latest versions) xdg-dirs, xdg-x11-dirs or gnome*-dirs. Bump PKGREVISION.
2004-03-08Remove info files entries from PLIST.seb1-22/+1
2004-03-08Note update of xdg-dirs to 1.1 and addition of xdg-x11-dirs-1.1.jmmv1-1/+6
Note update of gnome-dirs, gnome1-dirs and gnome2-dirs to 1.5.
2004-03-08Update to 1.5: do not register some directories that are now handled byjmmv3-8/+6
xdg-dirs and xdg-x11-dirs.
2004-03-08Add and enable xdg-x11-dirs.jmmv1-1/+2
2004-03-08Initial import of xdg-x11-dirs, version 1.1:jmmv3-0/+33
xdg-x11-dirs installs a set of shared directories used by freedesktop.org XDG based systems (kde 3.2 and gnome 2.4). It is useful to simplify PLIST handling in other packages. This package differs from xdg-dirs in that shared directories are created under X11's tree. Has no effect if using xpkgwedge, other than depending directly on xdg-dirs.
2004-03-08Register the following new directories:jmmv2-20/+35
share/application-registry share/icons share/images share/mime-info share/pixmaps share/sounds share/themes Bump version to 1.1 due to this. While here, split the Makefile to ease the addition of xdg-x11-dirs.
2004-03-08Reimport tcl-8.3.4 into lang/tcl83 before updating Tcl/Tk to 8.4.5,minskim11-0/+1312
because many packages still need 8.3. OK'ed by the maintainer (jwise@).
2004-03-08Patchsum update for 0.1.6nb4 (fdleak-fix)hubertf1-1/+2
2004-03-08Try to plug file descriptor leak. Bump to 0.1.6nb4.hubertf2-2/+89
2004-03-08Improvements for DESCRiption and COMMENT.reed2-4/+5
(The DESCRiption was same as the other gettext package, and the COMMENT mentioned "Tools".)
2004-03-08Remove CXX=CC line in response to PR 24707 by Kouichirou Hiratsuka.wiz1-2/+1
Builds fine with 2.95.3 and 3.3.2.
2004-03-08Define two missing constants when sizeof(void*) == 8. It will fixminskim2-1/+15
build on 64bit architecture.
2004-03-08Remove gnuchess-book-small because the distfile is incompatible withminskim6-48/+3
gnuchess-5.07 and no longer available on MASTER_SITES. OK'ed by wiz@.
2004-03-08Note update of gossip to 0.7.2.jmmv1-1/+2
2004-03-08Update to 0.7.2:jmmv3-7/+8
* Make the status icon flash when going to and from away state. * Show the contact list if it's visible on another workspace when toggling visibility. * Make links clickable in logs. * Handle incoming private chats through group chats correctly. * An experimental and optional dbus interface. * Add status submenu to the notification area icon. * Limit the length of the status text in the contact list. * Plug memory leaks. * When detaching a tab, put the new window at the pointer. * Updated translations (ca, cs, es, hr, nl, no, sr, sr@Latn, sv).
2004-03-08Updated sylpheed-claws to 0.9.10adam2-3/+3
2004-03-08Changes 0.9.10:adam2-5/+5
* GnuPG signed message part icons now have borders to indicate the status of the signature. A blue dotted border indicates the status is unknown, a red dotted border indicates a bad signature, and a solid green border indicates a good signature. * when composing to a default address the header entry is no longer selected but instead is given a coloured, bold font to indicate its presence * a "Wrap current paragraph" button is now available for the Compose toolbar * a new reply quote format token is available, '%X'. This specifies the cursor position. * the Folderview is updated progressively while receiving mail * support for the 'Rif:' Subject reply prefix has been added * LDAP TLS support has been added in the address book * a Compose window can opened from the address book by right- clicking an entry and selecting 'Mail To' * tools/textviewer.sh: support for perl and shell scripts * better handling of whitespace in Quick Search bar * updated translations: German, Russian, Serbian, Simplified Chinese, Spanish, and Slovak * Bug fixes