Commit graph

143366 commits

Author SHA1 Message Date
hasso
3c370e2a3e More license info to my packages. 2009-06-08 19:11:30 +00:00
hasso
330437aef4 Add license info to the akode packages. 2009-06-08 18:54:20 +00:00
joerg
d596921ce7 pbulk-0.40:
Use plain sed to extract RCS IDs. GNU ident has issues with unexpanded
RCS IDs.
2009-06-08 16:02:52 +00:00
joerg
572a17ab80 Add forgotten file from pbulk-base split off. 2009-06-08 15:37:50 +00:00
tnn
f34dfa7716 Updated net/tightvnc{,viewer} to 1.3.10 2009-06-08 15:25:10 +00:00
tnn
3044b62f01 Update to tightvnc-1.3.10.
* Unix Server: Applied fixes for 64-bit Linux issues
* Unix Server: Made the vncserver script read configuration from files
* Other minor improvements and bugfixes.

While here, do the DESTDIR thing.
2009-06-08 15:23:26 +00:00
wiz
ddac1279df Updated games/wesnoth to 1.6.2 2009-06-08 15:16:04 +00:00
wiz
04a91edefa Update to 1.6.2:
Version 1.6.2:
 * Campaigns
   * Eastern Invasion
     * Fixed the liches not being revealed properly in 'Weldyn Besieged'.
   * Heir to the Throne
     * The Scepter of Fire
       * Enforce a 7-hex starting castle to prevent units from appearing inside
         a wall (bug #13377).
   * Under The Burning Suns
     * Properly team-color caged merfolk (bug #13367).
   * Scepter of Fire
     * Properly conditionalize some dialog (bug #13343).

  * Graphics
    * New portrait for Huntsman.

  * Language and translations
    * Updated translations: Chinese (Simplified), Chinese (Traditional), Czech,
      French, German, Hungarian, Icelandic, Indonesian, Italian, Lithuanian,
      Polish, Russian, Serbian, Slovak, Swedish.

  * User interface
    * Improved the sorting of the XP and traits columns in the unit list dialog
      (part of bug #13360).

  * Miscellaneous and bugfixes
    * Fixed missing unit graphics when loading a start-of-scenario savegame.


Version 1.6.1:
  * Campaigns
    * Sceptre of Fire
      * Fixed a crash at the very end of 'Caverns of Flame'.

  * Graphics
    * New portrait for Orc Grunt, Dwarf Fighter (alternative), Goblin Spearman,
      Ogre/Young Ogre, Trapper, Ranger, Huntsman.

  * Language and translations
    * New translations: Icelandic.
    * Updated translations: British English, Catalan, Chinese (Simplified),
      Czech, Dutch, German, Finnish, Hebrew, Hungarian, Indonesian, Italian,
      Lithuanian, Norwegian, Polish, Russian, Serbian, Slovak, Swedish, Turkish.

  * Multiplayer
    * Fixed missing faction column and misplaced player's name column
      (but faction column is still missing if the host uses 1.6.0)

  * Miscellaneous and bugfixes
    * Fix a lock-up issue when no music could be played.
    * Limit the maximum length of the mp command dialog as workaround for
      a 'crash'. (Windows and Mac only.)
2009-06-08 15:15:50 +00:00
wiz
39e54d0321 Updated devel/automake to 1.11 2009-06-08 14:44:45 +00:00
wiz
7ed29b195d Update to 1.11:
New in 1.11:

* Version requirements:

  - Autoconf 2.62 or greater is required.

* Changes to aclocal:

  - The autoconf version check implemented by aclocal in aclocal.m4
    (and new in Automake 1.10) is degraded to a warning.  This helps
    in the common case where the Autoconf versions used are compatible.

* Changes to automake:

  - The automake program can run multiple threads for creating most
    Makefile.in files concurrently, if at least Perl 5.7.2 is available
    with interpreter-based threads enabled.  Set the environment variable
    AUTOMAKE_JOBS to the maximum number of threads to use, in order to
    enable this experimental feature.

* Changes to Libtool support:

  - Libtool generic flags are now passed to the install and uninstall
    modes as well.

  - distcheck works with Libtool 2.x even when LT_OUTPUT is used, as
    config.lt is removed correctly now.

* Languages changes:

  - subdir-object mode works now with Fortran (F77, FC, preprocessed
    Fortran, and Ratfor).

  - For files with extension .f90, .f95, .f03, or .f08, the flag
    $(FCFLAGS_f[09]x) computed by AC_FC_SRCEXT is now used in compile rules.

  - Files with extension .sx are also treated as preprocessed assembler.

  - The default source file extension (.c) can be overridden with
    AM_DEFAULT_SOURCE_EXT now.

  - Python 3.0 is supported now, Python releases prior to 2.0 are no
    longer supported.

  - AM_PATH_PYTHON honors python's idea about the site directory.

  - There is initial support for the Vala programming language, when using
    Vala 0.7.0 or later.

* Miscellaneous changes:

  - Automake development is done in a git repository on Savannah now, see

      http://git.sv.gnu.org/gitweb/?p=automake.git

    A read-only CVS mirror is provided at

      cvs -d :pserver:anonymous@pserver.git.sv.gnu.org:/automake.git \
          checkout -d automake HEAD

  - "make dist" can now create xz-compressed tarballs,
    as well as (deprecated?) lzma-compressed tarballs.

  - `automake --add-missing' will by default install the GPLv3 file as
    COPYING if it is missing.  It will also warn that the license file
    should be added to source control.  Note that Automake will never
    overwrite an existing COPYING file, even when the `--force-missing'
    option is used.

  - The manual is now distributed under the terms of the GNU FDL 1.3.

  - Automake ships and installs man pages for automake and aclocal now.

  - New shorthand `$(pkglibexecdir)' for `$(libexecdir)/@PACKAGE@'.

  - install-sh supports -C, which does not update the installed file
    (and its time stamps) if the contents did not change.

  - The `gnupload' script has been revamped.

  - The `depcomp' and `compile' scripts now work with MSVC under MSYS.

  - The targets `install' and `uninstall' are more efficient now, in that
    for example multiple files from one Automake variable such as
    `bin_SCRIPTS' are copied in one `install' (or `libtool --mode=install')
    invocation if they do not have to be renamed.

    Both install and uninstall may sometimes enter (`cd' into) the target
    installation directory now, when no build-local scripts are used.

    Both install and uninstall do not fail anymore but do nothing if an
    installation directory variable like `bindir' is set to the empty string.

    For built-in rules, `make install' now fails reliably if installation
    of a file failed.  Conversely, `make uninstall' even succeeds when
    issued multiple times.

    These changes may need some adjustments from users:  For example,
    some `install' programs refuse to install multiple copies of the
    same file in one invocation, so you may need to remove duplicate
    entries from file lists.

    Also, within one set of files, say, nobase_data_DATA, the order of
    installation may be changed, or even unstable among different hosts,
    due to the use of associative arrays in awk.  The increased use of
    awk matches a similar move in Autoconf to provide for better scaling.

    Further, most undocumented per-rule install command variables such as
    binSCRIPT_INSTALL have been removed because they are not needed any
    more.  Packages which use them should be using the appropriate one of
    INSTALL_{DATA,PROGRAM,SCRIPT} or their install_sh_{DATA,PROGRAM,SCRIPT}
    counterpart, depending on the type of files and the need for automatic
    target directory creation.

  - The "deleted header file problem" for *.m4 files is avoided by
    stub rules.  This allows `make' to trigger a rerun of `aclocal'
    also if some previously needed macro file has been removed.

  - Rebuild rules now also work for a removed `subdir/Makefile.in' in
    an otherwise up to date tree.

  - The `color-tests' option causes colored test result output on terminals.

  - The `parallel-tests' option enables a new test driver that allows for
    parallel test execution, inter-test dependencies, lazy test execution
    for unit-testing, re-testing only failed tests, and formatted result output
    as RST (reStructuredText) and HTML.  Enabling this option may require some
    changes to your test suite setup; see the manual for details.

  - The `silent-rules' option enables Linux kernel-style silent build output.
    This option requires the widely supported but non-POSIX `make' feature
    of recursive variable expansion, so do not use it if your package needs
    to build with `make' implementations that do not support it.

    To enable less verbose build output, the developer has to use the Automake
    option `silent-rules' in `AM_INIT_AUTOMAKE', or call the `AM_SILENT_RULES'
    macro.  The user may then set the default verbosity by passing the
    `--enable-silent-rules' option to `configure'.  At `make' run time, this
    default may be overridden using `make V=0' for less verbose, and `make V=1'
    for backward-compatible verbose output.

  - New prefix `notrans_' for manpages which should not be transformed
    by --program-transform.

  - New macro AM_COND_IF for conditional evaluation and conditional
    config files.

  - For AC_CONFIG_LINKS, if source and destination are equal, do not
    remove the file in a non-VPATH build.  Such setups work with Autoconf
    2.62 or newer.

  - AM_MAINTAINER_MODE now allows for an optional argument specifying
    the default setting.

  - AM_SUBST_NOTMAKE may prevent substitution of AC_SUBSTed variables,
    useful especially for multi-line values.

  - Automake's early configure-time sanity check now diagnoses an
    unsafe absolute source directory name and makes configure fail.

  - The Automake macros and rules cope better with whitespace in the
    current directory name, as long as the relative path to `configure'
    does not contain whitespace.  To this end, the values of `$(MISSING)'
    and `$(install_sh)' may contain suitable quoting, and their expansion
    might need `eval'uation if used outside of a makefile.  These
    undocumented variables may be used in several documented macros such
    as $(AUTOCONF) or $(MAKEINFO).

Bugs fixed in 1.11:

* Long standing bugs:

  - Fix aix dependency tracking for libtool objects.

  - Work around AIX sh quoting issue in AC_PROG_CC_C_O, leading to
    unnecessary use of the `compile' script.

  - For nobase_*_LTLIBRARIES with nonempty directory components, the
    correct `-rpath' argument is used now.

  - `config.status --file=Makefile depfiles' now also works with the
    extra quoting used internally by Autoconf 2.62 and newer
    (it used to work only without the `--file=' bit).

  - The `missing' script works better with versioned tool names.

  - Semantics for `missing help2man' have been revamped:

    Previously, if `help2man' was not present, `missing help2man' would have
    the following semantics: if some man page was out of date but present, then
    a warning would be printed, but the exit status was 0.  If the man page was
    not present at all, then `missing' would create a replacement man page
    containing an error message, and exit with a status of 2.  This does not play
    well with `make': the next run will see this particular man page as being up
    to date, and will only error out on the next generated man page, if any;
    repeat until all pages are done.  This was not desirable.

    These are the new semantics: if some man page is not present, and help2man
    is not either, then `missing' will warn and generate the replacement page
    containing the error message, but exit successfully.  However, `make dist'
    will ensure that no such bogus man pages are packaged into a tarball.

  - Targets provided by automake behave better with `make -n', in that they
    take care not to create files.

  - `config.status Makefile... depfiles' works fine again in the presence of
    disabled dependency tracking.

  - The default no-op recursive rules for these targets also work with BSD make
    now: html, install-html, install-dvi, install-pdf, install-pdf, install-info.

  - `make distcheck' works also when both a directory and some file below it
    have been added to a distribution variable, such as EXTRA_DIST or *_SOURCES.

  - Texinfo dvi, ps, pdf, and html output files are not removed upon
    `make mostlyclean' any more; only the LaTeX by-products are.

  - Renamed objects also work with the `subdir-objects' option and
    source file languages which Automake does not know itself.

  - `automake' now correctly complains about variable assignments which are
    preceded by a comment, extend over multiple lines with backslash-escaped
    newlines, and end in a comment sign.  Previous versions would silently
    and wrongly ignore such assignments completely.

* Bugs introduced by 1.10:

  - Fix output of dummy dependency files in presence of post-processed
    Makefile.in's again, but also cope with long lines.

  - $(EXEEXT) is automatically appended to filenames of XFAIL_TESTS
    that have been declared as programs in the same Makefile.
    This is for consistency with the analogous change to TESTS in 1.10.

  - Fix order of standard includes to again be `-I. -I$(srcdir)',
    followed by directories containing config headers.
2009-06-08 14:44:35 +00:00
tron
dfbce299b7 Note update of the "apr" package to version 1.3.5. 2009-06-08 14:23:26 +00:00
tron
526479e5d2 Update "apr" package to version 1.3.3. Changes since version 1.3.5:
- Dropped kqueue and apr_poll detection from Mac OS/X 10.5/Darwin 9
  due to various reported problems.
- apr_strerror() on OS/2: Fix problem with calculating buffer size.
  Bug 45689.
- Prefer glibtool1/glibtoolize1.
- Fix buildconf with libtool 2.2.
- Fix a bug with the APR_DELONCLOSE flag. Child processes were (also)
  unlinking the file.
- Fix compilation error on systems that do not have IPV6.
  Bug 46601
- apr_socket_sendfile() on Solaris: Fix handling of files truncated
  after the sender determines the length.  (This fixes a busy loop in
  httpd when a file being served is truncated.)
- Fix documentation for apr_temp_dir_get().
  Bug 46303
- Add AC_MSG_RESULT after AC_MSG_CHECKING.
  Bug 46427
- Reset errno to zero in apr_strtoi64 to prevent returning an errno not
  equal zero in cases where the operation worked fine.
- Win32: Do not error out on apr_pollset_poll() when there are no sockets.
- Fix apr_tokenize_to_argv parsing. Bug 46128
2009-06-08 14:23:10 +00:00
imil
31b7fe9866 Added pkgtools/pkgin version 0.2.5 2009-06-08 14:14:57 +00:00
imil
9dab4ce32b add & enable pkgin 2009-06-08 14:10:54 +00:00
wiz
c1909e9699 lzma and xz-utils conflict as well. 2009-06-08 14:02:50 +00:00
wiz
1e5028a204 Added archivers/xz-utils version 4.999.8beta 2009-06-08 14:02:11 +00:00
wiz
483491b683 Conflict with new xz-utils package. 2009-06-08 14:01:58 +00:00
wiz
bc052cff7e + xz-utils. 2009-06-08 14:01:37 +00:00
wiz
cff8011a02 Initial import of xz-utils-4.999.8beta:
LZMA is a general purporse compression algorithm designed by Igor
Pavlov as part of 7-Zip. It provides high compression ratio while
keeping the decompression speed fast.

XZ Utils are an attempt to make LZMA compression easy to use on
free (as in freedom) operating systems. This is achieved by providing
tools and libraries which are similar to use than the equivalents
of the most popular existing compression algorithms.

XZ Utils consist of a few relatively separate parts:
  * liblzma is an encoder/decoder library with support for several
    filters (algorithm implementations). The primary filter is
    LZMA.
  * libzfile (or whatever the name will be) enables reading from
    and writing to gzip, bzip2 and LZMA compressed and uncompressed
    files with an API similar to the standard ANSI-C file I/O.
    [ NOTE: libzfile is not implemented yet. ]
  * xz command line tool has almost identical syntax than gzip
    and bzip2. It makes LZMA easy for average users, but also
    provides advanced options to finetune the compression settings.
  * A few shell scripts make diffing and grepping LZMA compressed
    files easy. The scripts were adapted from gzip and bzip2.
2009-06-08 14:01:18 +00:00
imil
1876b2154b pkgin is aimed at being an apt / yum like tool for managing
pkgsrc binary packages. It relies on pkg_summary(5) for
installation, removal and upgrade of packages and associated
dependencies, using a remote repository.

OK'd by seb@
2009-06-08 13:58:26 +00:00
tron
c5b97825e4 Set the license type to "apache-2.0". 2009-06-08 13:24:57 +00:00
tron
5693c2bb1c Note update of the "apr-util" package to version 1.3.7. 2009-06-08 13:19:40 +00:00
tron
dc2e7e87fb Update "apr-util" package to version 1.3.7. Changes since version 1.3.4:
- SECURITY:
  Fix a denial of service attack against the apr_xml_* interface
  using the "billion laughs" entity expansion technique.
- SECURITY: CVE-2009-0023 (cve.mitre.org)
  Fix underflow in apr_strmatch_precompile.
- Minor build and bug fixes.
- SECURITY: CVE-2009-0023 (cve.mitre.org)
  Fix underflow in apr_strmatch_precompile.
- Fix off by one overflow in apr_brigade_vprintf.
- APR_LDAP_SIZELIMIT should prefer LDAP_DEFAULT_LIMIT/-1 when the
  SDK supports it, but in the absence of LDAP_DEFAULT_LIMIT (and
  LDAP_NO_LIMIT/0) it is not safe to use a literal -1.
  Bug 23356
- Clean up ODBC types. Warnings seen when compiling packages for
  Fedora 11.
- Use of my_init() requires my_global.h and my_sys.h.
- Fix apr_memcache_multgetp memory corruption and incorrect error
  handling. Bug 46588
- Fix memcache memory leak with persistent connections.
  Bug 46482
- Add Oracle 11 support.
- apr_dbd_freetds: Avoid segfault when process is NULL.
  Do no print diagnostics to stderr. Never allow driver to exit
  process.
- apr_dbd_freetds: The sybdb.h header file might be freetds/sybdb.h
  or sybdb.h.
- LDAP detection improvements: --with-ldap now supports library names
  containing non-alphanumeric characters, such as libldap-2.4.so.  New
  option --with-lber can be used to override the default liblber name.
  Fix a problem reporting the lber library from apu-N-config.
- Suppress pgsql column-out-of-range warning.
- Fix a buffer overrun and password matching for SHA passwords.
- Introduce DSO handling of the db, gdbm and ndbm drivers, so these are
  loaded as .so's on first demand, unless --disable-util-dso is configured.
- Fix a segfault in the DBD testcase when the DBD modules were not present.
2009-06-08 13:19:20 +00:00
obache
5b17e8849d clean up xf86-* entries. 2009-06-08 12:01:14 +00:00
drochner
f5dce05a77 update to 2.26.2
changes:
-fixes to the weather and mixer applets
-translation updates
2009-06-08 11:05:28 +00:00
drochner
bc2b275b5a update to liferea-1.6.0rc4
changes:
-UI and speed improvements
-bugfixes
-translation updates
2009-06-08 10:22:10 +00:00
hasso
3adab79a84 Master sites update and some comments to the patches from pkg/39809. Set
LICENSE.
2009-06-08 10:16:22 +00:00
hasso
acad2c71c2 Updated net/lftp to 3.7.14. 2009-06-08 09:59:58 +00:00
hasso
3c0a442ac8 Update to 3.7.14. Upstream changes:
Version 3.7.14 - 2009-05-15
 use line buffering for mirror log file.
 fixed `chmod' command mode calculation.
 fixed status line of `repeat' command.
 fixed sftp charset translation in file listings.
 fixed output ordering by flushing stdout before calling external programs.
 fixed coredump in sftp when ssh process gets killed.

Version 3.7.13 - 2009-04-30
 fixed a coredump in some commands printing to screen.

Version 3.7.12 - 2009-04-28
 fixed core dump on `mput -d' command.
 fixed a core dump on `kill' command.
 fixed mkdir -p for sftp protocol.
 fixed some signed/unsigned conversion bugs.

Version 3.7.11 - 2009-03-20
 add dynamic commands in abc order (as output by help).
 fixed eta display (broken in 3.7.10).

Version 3.7.10 - 2009-03-18
 fixed pget -c.
 fixed `exit kill' command.
 show sleep time left in status.
 make ftp:prefer-epsv off by default.
 recognize a specific error message and turn off REST command.

Version 3.7.9 - 2009-03-03
 new setting ftp:prefer-epsv.
 add support for IPv6 scope for link-local addresses (Arkadiusz Miskiewicz).
 fixed compilation on OpenBSD (Kevin Lo).
 fixed parsing of NT unix-like listings where hour is one digit.
 gnulib sources updated, vsnprintf-posix module imported.

Version 3.7.8 - 2009-01-23
 fixed upload via ftps in encrypted mode.
 gnulib sources updated.

Version 3.7.7 - 2008-12-12
 new ftp proxy auth type: proxy-user@host.
 new setting ftp:trust-feat (default no).
 changed GPL version to 3 (as gnulib modules require it).

Version 3.7.6 - 2008-11-17
 fixed memory corruption in zmore.
 fixed compilation on some systems.

Version 3.7.5 - 2008-11-07
 new setting cmd:move-background-detach.
 added support for number suffixes in settings (k - kibi, m - mebi, etc).
 shutdown SSL connection before closing the socket on upload.
 fixed mirror -RP.
 fixed another problem with `kill all'.
 updated gnulib.

Version 3.7.4 - 2008-08-06
 fixed a coredump in `kill all'.
 fixed compilation problems on some systems.
 used getdate from gnulib.

Version 3.7.3 - 2008-05-23
 added support for 2-argument SITE UTIME and MFMT commands.
 added a workaround for paramiko sftp server.
 included newer gnulib sources using gnulib-tool.
 Polish translation updated (Jakub Bogusz).
 fixed German translation encoding.

Version 3.7.2 - 2008-05-07
 fixed core dump when sending http cookies.
 fixed assertion failure for ftp over http proxy (CONNECT mode).
 fixed cwd tracking for ftps.

Version 3.7.1 - 2008-04-18
 use time 12:00:00 instead of 12:00:30 when the time is unknown.
 make sftp:use-full-path on by default.
 fixed sftp du on non-existent files.
 GNU Lib sources updated (Nix).
 fixed compilation on cygwin (Arkady Sherman).
 French translation updated (Alain PORTAL).
 German translation updated (Moritz Moeller-Herrmann).

Version 3.7.0 - 2008-03-07
 new setting ftp:proxy-auth-type and two new ftp proxy modes (joined-acct,
 open) (partly based on patch from David Wolfe).
 don't add the same network address multiple times; report resolved addresses.
 added new open -s option; help for "slot" command (Laurent MONIN).
 added a workaround for proftpd NLST bug.
 added a workaround for servers sending single NL.
 handle host key verification error in fish and sftp.
 handle http codes 307 and 303.
 fixed a core dump when doing "open host>file".
 fixed CCC handling in secure ftp.
 fixed spinning when cmd:fail-exit is true in a script.
 included zh_HK translation (Abel Cheung).

Version 3.6.3 - 2008-01-28
 new setting sftp:use-full-path to send full path instead of home-relative.
 don't use sftp FSETSTAT when not needed.
 fixed core dump on kill all with mirror.
 fixed sftp:charset setting.
 fixed debug printing of sftp file handle.
 fixed unsetting of fish:charset setting.
 fixed compilation on systems lacking wcwidth.

Version 3.6.2 - 2008-01-03
 added a workaround for ftp servers which don't open data connection in certain
 conditions.
 don't decode URL escapes in get/put when no URL schema used.
 fixed counting of file removal errors in mirror.
 fixed a 2-byte buffer overflow when showing transfer percents.
 fixed a problem with incorrect port/host name in http requests.
 fixed coredump in du command with long paths on some systems.
 fixed coredump in html parser on empty links.
 fixed compilation on some systems.

Version 3.6.1 - 2007-11-09
 repeat --weak option to terminate the loop automatically when exiting lftp.
 ftp:use-stat-for-list is off by default.
 slot command fixed.
 fixed timeout handling in ftp.
 french and polish translations updated.

Version 3.6.0 - 2007-10-19
 major code cleanup.
 new setting ftp:use-stat-for-list allows faster directory listing.
 new command `eval' with -f option allows complex aliases.
 send encoded parts of ftp URLs untranslated to ftp server.
 new mirror options --on-change, --depth-first, --no-empty-dirs, --ascii.
 new mirror option --only-existing (Damon Harper).
 new setting xfer:log, log successful transfers if true to
 ~/.lftp/tarnsfer_log.
 new setting ssl:check-hostname.
 fixed cls exit code in case of an error.

Version 3.5.15 - 2007-10-19
 fixed timeout handling when waiting for 150 or 125 ftp reply.
 fixed a bug occuring when turning off proxy server setting.

Version 3.5.14 - 2007-08-31
 handle ftp reply with code 125 same as code 150 (Craig Ruff).
 french translation updated (Alain PORTAL).

Version 3.5.13 - 2007-08-23
 fixed ftps not to access data socket before 150 reply.
 fixed sftp to send properly sized packets on upload.
 fixed infinite retrying on upload.
 fixed compilation without iconv.
 fixed buffering in ascii mode transfers.

Version 3.5.12 - 2007-07-26
 hex-encode all non-ascii characters in URLs.
 allow cross-compilation without iconv (Jakob Truelsen).
 french translation updated (Alain PORTAL).
2009-06-08 09:54:50 +00:00
tnn
eb515b0f95 Update to tightvncviewer-1.3.10.
There where no changes to the unix viewer in this version; updating anyway.
While here, add DESTDIR support.
2009-06-08 09:42:53 +00:00
ahoka
e73360b917 Updated games/freeciv-share to 2.1.9
Updated games/freeciv-server to 2.1.9
Updated games/freeciv-client to 2.1.9
2009-06-08 09:33:44 +00:00
tron
9aa5b7cac8 Set the license type to "gnu-lgpl-v2.1". 2009-06-08 09:32:16 +00:00
tron
c4be24b1a9 Note update of the "libsndfile" package to version 1.0.20nb1. 2009-06-08 09:30:55 +00:00
tron
64d47286eb Add upstream patch (taken from Debian bug report) to fix crashes
caused by bad audio files.
2009-06-08 09:30:17 +00:00
ahoka
caffca692c Update to 2.1.9:
* Fixed crash due to gcc 4.x optimization bug. (#40610)
    * Fixed island generator rivers and double-continent bug. (#15947, #17435)
    * Fixed auto-explore not respecting borders. (#40570)
    * Fixed stack teleporting exploit. (#40658)
    * Fixed crash when doing irrigation-connect on a mine. (#40676)
    * Fixed update bug for the city report total buy cost label. (#40695)
    * Fixed memory leak in server scan code. (#40707)
    * Fixed data type conversion bug affecting unit power factor. (#40746)
    * Fixed many typos and style errors in translated messages. (#40688, #40686, #40685, #40684, #40699, #40687, #40689, #40691, #40693, #40694, #40725)

    * Changed the save file name format to <savename>-T<turn>-Y<year>.sav. (#40681)
    * Changed the selection rectangle drawing method to speed up map drawing. (#40646)
    * Changed the city report concise rapture symbols back to * and X. (#40700)
    * Changed mass unit selection to include units with order or units under AI control. (#40727)
    * Changed the default metaserver for both client and server to the one at cazfi.net. (#40752)

    * Improved gtk widget layout so that the Freeciv window can fit on a 800x600 display. (#12825)
    * Improved map decoration drawing (popup info, goto lines, city high-lighting) for speed and memory efficiency. (#40717)
    * Improved mass unit selection: j selects a single unit, k selects tile units, y selects continent units. (#40727)
    * Improved automatic chatline scrolling. (#40721)

    * Added option to disable mouse cursor changing. (#40678)
    * Added option to draw traderoute lines with toggle shortcut Ctrl+t. (#40668)
    * Added option to prefix client chat messages with the current time. (#40706)
    * Added option to preferentially select cities over units with the selection rectangle. (#40703)
    * Added option to show production buy cost in the city descriptions. (#40702)
    * Added option to not clear unit orders when units are selected. (#40724)
    * Added option to split the lower chatline area in to two notebooks, with the message window appearing in the right notebook. (#40705)
    * Added option to disable the automatic caravan arrival popup. (#40730)
    * Added client shortcut b for buying production in selected cities. (#40704)
    * Added a list view in the network page showing current players on a server. (#40707)
    * Added client ability to center on an event tile by right-clicking on a row in the message window. (#40719)
    * Added client ability to reorder city report columns by dragging the column headers in the gtk2 client. (#40680)
    * Added worklist manipulation operations to the city report menus. (#40723, #40728, #40729)
    * Added multiplayer allies-only chat toggle button. (#40487)
    * Added more information to map popup info window. (#40488)
    * Added a toplevel menu item for the Governor menu in the city report. (#40677)
    * Added city production clipboard shortcuts Shift+right-click to copy and Ctrl+Shift+right-click to paste. (#40679)

    * Updated Finnish, Catalan, Estonian, Danish, Lithuanian, German, Korean, and Swedish translations.
2009-06-08 09:24:39 +00:00
wiz
f6e630aeb8 Updated net/clive to 2.1.13 2009-06-08 09:15:18 +00:00
wiz
3c3cf3a207 Update to 2.1.13:
Version 2.1.13
(May 16, 2009)

 Developer-visible changes:
  * Change: use perltidy defaults for style
  * Change: BerkeleyDB and File::Path modules are now optional
    ** Cache features depend on these modules
  * Moved opted_mods initilization to init_opted_mods (-> loop)
2009-06-08 09:15:08 +00:00
wiz
c8fb178d29 Updated x11/pixman to 0.15.10 2009-06-08 09:04:43 +00:00
wiz
93663f0b42 Update to 0.15.10. No release announcement available yet. 2009-06-08 09:04:32 +00:00
obache
df85c5fb32 done - xf86-video-vmware-10.16.6 2009-06-08 09:04:08 +00:00
obache
373d1efd28 Updated x11/xf86-video-vmware to 10.16.6 2009-06-08 08:41:37 +00:00
obache
99bae5e4a1 Update xf86-video-vmware to 10.16.6.
Alan Coopersmith (1):
      Remove xorgconfig & xorgcfg from See Also list in man page

Micah Dowty (5):
      Update README
      Fix dynamic mode edge cases
      Unbreak vmwarectrl setres
      Allow cursor updates while unhidden
      Better cursor size limit and explanation

Philip Langdale (1):
      Bump for 10.16.6 release

Shelley Gong (1):
      Automatically add modelines for the driver's built-in set of modes.
2009-06-08 08:41:23 +00:00
obache
a341701439 Updated x11/xf86-input-vmmouse to 12.6.4 2009-06-08 08:36:14 +00:00
obache
fe4e3b4eab Update xf86-input-vmmouse to 12.6.4.
Alan Coopersmith (3):
      Remove xorgconfig & xorgcfg from See Also list in man page
      Make --with-hal* configure options match their help output
      Map Solaris/Sun compiler #defines to gcc equivalents

Shelley Gong (1):
      1) Fix bug where motion notify events were being sent with every button event.
2009-06-08 08:34:15 +00:00
obache
2d56981ffb Add workaround for build failure on NetBSD, PR#41556.
Avoid to use bsd_kqueue_apm, force to use bsd_apm instead.
2009-06-08 08:31:31 +00:00
wiz
7724b09eb0 + akonadi-1.1.90, apr-1.3.5, apr-util-1.3.7, aria2-1.4.1,
findutils-4.4.2, glade3-3.6.4 [GNOME 2.26], ikiwiki-3.14,
  iso-codes-3.10, libv4l-0.5.99, mew-6.2 [pkg/40808|as mew6?|pkg/41555],
  mkvtoolnix-2.9.5, octave-3.2.0, p5-BerkeleyDB-0.39,
  p5-Compress-Raw-Bzip2-2.020, p5-Compress-Raw-Zlib-2.020,
  p5-DBD-mysql-4.011, p5-DateTime-TimeZone-0.91, p5-IO-Compress-2.020,
  p5-WWW-Curl-4.07, packagekit-0.4.8, pixman-0.15.10, py-lxml-2.2.1,
  scmgit-base-1.6.3.2, scmgit-docs-1.6.3.2, telepathy-gabble-0.7.28,
  wine-devel-1.1.23, x264-devel-20090606.
2009-06-08 08:29:04 +00:00
adam
0173195ac4 Updated graphics/pngcrush to 1.6.19 2009-06-08 07:51:11 +00:00
adam
8695560d0b Changes 1.6.19:
* Added missing curly braces that caused erroneous png_error message about
  "original PNG could not be recovered" in pngcrush-1.6.17 and 18.
2009-06-08 07:50:06 +00:00
hasso
4cae0fa7c4 Make it build on DragonFly at least. This needs better handling IMHO,
though.
2009-06-08 07:25:20 +00:00
adam
84fa880337 Updated archives/p7zip to 9.04 2009-06-08 05:56:03 +00:00