Commit graph

56637 commits

Author SHA1 Message Date
wiz
ddc561bf09 Remove treetext package; HOMEPAGE disappeared and broken for months. 2004-03-08 23:21:08 +00:00
wiz
10f2ae1ce8 Fix PLIST after libtool update.
Should fix bulk build problem.
2004-03-08 22:57:35 +00:00
seb
0029e19770 Remove info files entries from PLIST. 2004-03-08 22:38:05 +00:00
seb
391b6545a4 Remove info files entries from PLIST.
XXX the package did not build for me.
2004-03-08 22:36:32 +00:00
seb
ec5003d151 Remove info files entries from PLIST. 2004-03-08 22:31:40 +00:00
seb
eaff722509 Remove info files entries from PLIST. 2004-03-08 22:18:19 +00:00
wiz
92f6ee5b71 oss-3.9.8d update done. 2004-03-08 22:18:02 +00:00
wiz
88593bf5bf Blind update to latest version 3.9.8d; previous distfile has been removed. 2004-03-08 22:16:58 +00:00
jmmv
5fd673f38d Note update of amule to 1.2.6. 2004-03-08 22:16:21 +00:00
jmmv
c2d893ed06 Update to 1.2.6:
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-08 22:15:30 +00:00
minskim
9c121e17ff Update Tcl/Tk to 8.4.6.
* 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-08 22:14:18 +00:00
seb
a643343c47 Remove info files entries from PLIST. 2004-03-08 22:12:38 +00:00
seb
2e177c0402 Note update of math/pspp to version math/pspp [dependencies change] 2004-03-08 21:16:09 +00:00
seb
778f7ad37b Bl3ify and use gmp from devel/gmp not the supplied and older one. This
fix build with gcc3. Note that the somewhat aging gmp autoconf test
had been removed wholesale.

Bump PKGREVISION.
2004-03-08 21:13:55 +00:00
jmmv
23ee23c9b0 Note revision bump for gnome and gnome-extras to 3. 2004-03-08 21:05:04 +00:00
jmmv
9e01c83a0c Depend on balsa2, gnome-audio and glade2, as these have been removed from
the gnome meta-pkg.  Bump PKGREVISION to 3.
2004-03-08 21:03:55 +00:00
jmmv
0603de44e8 Sync dependancies with the list of applications that can be found at:
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-08 21:03:17 +00:00
jmmv
0e844743e0 Bump PKGREVISION and some dependancies due to changes done in these
packages (addition of xdg-dirs>=1.1 as a dependancy).
2004-03-08 20:55:07 +00:00
wiz
9f8ecf375a note automake-1.8.3 update. 2004-03-08 20:42:52 +00:00
wiz
05b862af17 Update automake to 1.8.3:
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-08 20:42:17 +00:00
minskim
dfebedf847 Note update of tk to 8.4.5. 2004-03-08 20:31:08 +00:00
minskim
dc3bf1e6e1 Update tk to 8.4.5. Too many changes since 8.3.4. Please see
ChangeLog in the distfile.
2004-03-08 20:29:43 +00:00
minskim
2827f5b2d8 Enable tk84 and replace x11/tk with x11/tk83. Packages compatible
with 8.4 will be updated to depend on x11/tk after Tk update.
2004-03-08 20:27:13 +00:00
minskim
beb854f26a Reimport tk-8.3.4 into x11/tk83 before updating Tk to 8.4.5, because
many packages still need 8.3.  OK'ed by the maintainer (jwise@).
2004-03-08 20:07:38 +00:00
minskim
ca1b47ab04 Note update of tcl to 8.4.5. 2004-03-08 19:56:28 +00:00
minskim
194b9321a0 Update tcl to 8.4.5. Too many changes since 8.3.4. Please see
ChangeLog in the distfile.
2004-03-08 19:55:35 +00:00
jmmv
3dff72c34f Add gnome to CATEGORIES. 2004-03-08 19:55:10 +00:00
minskim
ac690cf634 Replace lang/tcl with lang/tcl83. Packages compatible with 8.4 will
be updated to depend on lang/tcl after Tcl/Tk update.
2004-03-08 19:52:50 +00:00
seb
e6b8d346e0 Remove info files entries from PLIST. 2004-03-08 19:46:56 +00:00
jmmv
4641d518a4 Don't register share/pixmaps; it's now properly handled by xdg-dirs and
xdg-x11-dirs.
2004-03-08 19:43:13 +00:00
jmmv
ae5a97419f Handle some shared directories by depending on (or updating dependancies to
the latest versions) xdg-dirs, xdg-x11-dirs or gnome*-dirs.
Bump PKGREVISION.
2004-03-08 19:40:36 +00:00
seb
a8e47947f0 Remove info files entries from PLIST. 2004-03-08 19:36:22 +00:00
jmmv
35c4a8269b Note update of xdg-dirs to 1.1 and addition of xdg-x11-dirs-1.1.
Note update of gnome-dirs, gnome1-dirs and gnome2-dirs to 1.5.
2004-03-08 19:33:02 +00:00
jmmv
cd33b071ba Update to 1.5: do not register some directories that are now handled by
xdg-dirs and xdg-x11-dirs.
2004-03-08 19:30:58 +00:00
jmmv
14a897ca2c Add and enable xdg-x11-dirs. 2004-03-08 19:29:25 +00:00
jmmv
f73d0d91ed Initial import of xdg-x11-dirs, version 1.1:
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-08 19:29:05 +00:00
jmmv
0d970c5f8d Register the following new directories:
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-08 19:27:53 +00:00
minskim
95bbe1f3d6 Reimport tcl-8.3.4 into lang/tcl83 before updating Tcl/Tk to 8.4.5,
because many packages still need 8.3.  OK'ed by the maintainer (jwise@).
2004-03-08 19:22:26 +00:00
hubertf
3021d7f26f Patchsum update for 0.1.6nb4 (fdleak-fix) 2004-03-08 18:59:38 +00:00
hubertf
244e5122ec Try to plug file descriptor leak. Bump to 0.1.6nb4. 2004-03-08 18:57:43 +00:00
reed
491c5d65f1 Improvements for DESCRiption and COMMENT.
(The DESCRiption was same as the other gettext package,
and the COMMENT mentioned "Tools".)
2004-03-08 18:14:33 +00:00
wiz
efe91595c8 Remove CXX=CC line in response to PR 24707 by Kouichirou Hiratsuka.
Builds fine with 2.95.3 and 3.3.2.
2004-03-08 16:56:38 +00:00
minskim
7f801b9bb2 Define two missing constants when sizeof(void*) == 8. It will fix
build on 64bit architecture.
2004-03-08 16:52:13 +00:00
minskim
71536dfe41 Remove gnuchess-book-small because the distfile is incompatible with
gnuchess-5.07 and no longer available on MASTER_SITES.  OK'ed by wiz@.
2004-03-08 16:25:47 +00:00
jmmv
ede3608166 Note update of gossip to 0.7.2. 2004-03-08 15:49:21 +00:00
jmmv
739d460af9 Update to 0.7.2:
* 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-08 15:48:02 +00:00
adam
873341f46c Updated sylpheed-claws to 0.9.10 2004-03-08 15:47:40 +00:00
adam
06d86c9b26 Changes 0.9.10:
* 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
2004-03-08 15:46:42 +00:00
wiz
a47c571b4e -mldonkey; while here, fix RCS Id, which was broken for
two weeks (hi cube!).
2004-03-08 15:43:44 +00:00
wiz
2fb97963a6 Note mldonkey-2.5.14 update. 2004-03-08 15:42:19 +00:00