Commit graph

4589 commits

Author SHA1 Message Date
plunky
5e07589898 update to zyGrib 3.9.9, changelog below
# 2011-01-07 : zyGrib Version 3.9.9

    * Distribution for Mac (Intel): ready to use complete .dmg archive.
    * Bug fixed with Mac version (frequent crash after a download).
    * New module by Polaris (Tim Holtschneider) : curve plot (yet experimental).

# 2010-12-20 : zyGrib Version 3.9.8

    * Download high resolution data from Meteoblue (Switzerland and surroundings).
    * Plot isotherms (actually in Celcius degrees and at 2m above ground).
    * Reverse mouse wheel zoom (same behaviour than the excellent OpenCPN navigation software).
    * Freeze first column of meteotables (headers).
    * More proxy parameters.
    * New spanish translation by Luis Mederos.
    * Fix some old bugs... create some new bugs...
2011-01-22 09:53:46 +00:00
wiz
c8049da19b Update to 5.3.
2011-01-14 tim <gyunaev@ulduzsoft.com>
    - Version 5.3 released.
    - Fixed spelling error (thx Razvan Visan)
    - Changed encodings order for Chinese and Japanese languages
    (thanks Kai-Chieh Ku)
    - Added Ukrainian localization (thanks Olexander Yatsenko)
    - Added Brazilian localization (thanks Márcio Moraes)
    - Fixed some grammatical errors (thanks Robin 'cheese' Lee)
    - Fixed webkit engine for buggy CHMs which do not have all
    content, as well as cases when external references cannot be
    loaded. Thanks to Kai-Chieh Ku
    - Added Mac support (thanks Serge Weinstock)
2011-01-21 22:30:46 +00:00
tonnerre
2bebd933c8 Import the commander Ruby gem, version 4.0.2.
Commander is a framework for Ruby command-line executables. It bridges the
gap between other terminal related libraries (OptionParser, HighLine), while
providing many new features.
2011-01-20 14:33:24 +00:00
markd
6854a9877f PLIST additions for Linux 2011-01-20 12:23:36 +00:00
markd
8a511aefd9 Some other programs are installed on Linux. 2011-01-20 12:10:23 +00:00
markd
1585910d56 fix build with gcc4.4.
explicitly dont compile kdat (otherwise PLIST wont match on linux)
2011-01-20 12:05:56 +00:00
markd
10da2a6f46 fix build with gcc4.4 2011-01-20 11:56:51 +00:00
jmmv
cf1612360f Update to 1.4:
* Window bell reporting fixed.
* Show which pane is active in the list-panes output.
* Backoff reworked.
* Prevent the server from dying when switching into copy mode when already
  in a different mode.
* Reset running jobs when the status line is enabled or disabled.
* Simplify xterm modifier detection.
* Avoid crashing in copy mode if the screen size is too small for the
  indicator.
* Flags -n and -p added to switch-client.
* Use UTF-8 line drawing characters on UTF-8 terminals, thus fixing some
  terminals (eg putty) which disable the vt100 ACS mode switching sequences
  in UTF-8 mode. On terminals without ACS, use ASCII equivalents.
* New server option exit-unattached added.
* New session option destroy-unattached added.
* Fall back on normal session choice method if $TMUX exists but is invalid
  rather than rejecting.
* Mark repeating keys with "(repeat)" in the key list.
* When removing a pane, don't change the active pane unless the active pane
  is actually the one being removed.
* New command last-pane added.
* AIX fixes.
* Flag -a added to unbind-key.
* Add XAUTHORITY to update-environment.
* More info regarding window and pane flags is now shown in list-*.
* If VISUAL or EDITOR contains "vi" configure mode-keys and status-key to vi.
* New window option monitor-silence and session option visual-silence added.
* In the built-in layouts distribute the panes more evenly.
* Set the default value of main-pane-width to 80 instead of 81.
* Command-line flag -V added.
* Instead of keeping a per-client prompt history make it global.
* Fix rectangle copy to behave like emacs (the cursor is not part of the
  selection on the right edge but on the left it is).
* Flag -l added to switch-client.
* Retrieve environment variables from the global environment rather than
  getenv(3), thus allowing them to be updated during the configuration file.
* New window options other-pane-{height,width} added.
* More minor bugs fixed and manpage improvements.
2011-01-13 16:48:47 +00:00
wiz
af3596f984 png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
adam
bcdd6922f0 Fix building on Mac OS X 2011-01-12 07:22:38 +00:00
drochner
8bd2915ae5 update to 2.32.0
This switches to the gnome-2.32 release branch.
2011-01-11 19:37:56 +00:00
markd
bc7be91408 Fix build on DragonFly. PR#44351 from Peter Avalos 2011-01-10 11:16:34 +00:00
markd
caa929deae Fix build on DragonFly PR#44352 from Peter Avalos 2011-01-10 11:00:30 +00:00
drochner
e0b06da46a add Dragonfly support, from Tony Young per PR pkg/44345 2011-01-08 12:43:10 +00:00
obache
1f3904ba24 Fixes build on DragonFly-2.8.2. 2011-01-02 14:46:38 +00:00
obache
00932248ef Fixes build on DragonFly-i386. 2011-01-02 13:01:44 +00:00
obache
b65fa0cc3c This package is using GNU Configure script.
Changed to GNU_CONFIGURE=yes so that pksrc hooks for GNU Configure will be
invoked and fixes PR#44299.
2010-12-31 07:57:14 +00:00
dsainty
1f40f3a084 Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in */*; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" "$i"
    fi
  done
done
2010-12-23 11:44:24 +00:00
jmmv
4efe82d753 Update to 1.3. Tested on NetBSD-current/amd64 and Mac OS X 10.6.
CHANGES FROM 1.2 TO 1.3, 18 July 2010

* New input parser.
* Flags to move through panes -UDLR added to select-pane.
* Commands up-pane, and down-pane removed, since equivalent behaviour is now
  available through the target flag (-t:+ and -t:-).
* Jump-forward/backward in copy move (based on vi's F, and f commands).
* Make paste-buffer accept a pane as a target.
* Flag -a added to new-window to insert a window after an existing one, moving
  windows up if necessary.
* Merge more mode into copy mode.
* Run job commands explicitly in the global environment (which can be modified
  with setenv -g), rather than with the environment tmux started with.
* Use the machine's hostname as the default title, instead of an empty string.
* Prevent double free if the window option remain-on-exit is set.
* Key string conversions rewritten.
* Mark zombie windows as dead in the choose-window list.
* Tiled layout added.
* Signal handling reworked.
* Reset SIGCHLD after fork to fix problems with some shells.
* Select-prompt command removed. Therefore, bound ' to command-prompt -p index
  "select-window -t:%%" by default.
* Catch SIGHUP and terminate if running as a client, thus avoiding clients from
  being left hanging around when, for instance, a SSH session is disconnected.
* Solaris 9 fixes (such as adding compat {get,set}env(3) code).
* Accept none instead of default for attributes.
* Window options window-status-alert-{alert,bg,fg} added.
* Flag -s added to the paste-buffer command to specify a custom separator.
* Allow dragging to make a selection in copy mode if the mode-mouse option is
  set.
* Support the mouse scroll wheel.
* Make pipe-pane accept special character sequences (eg #I).
* Fix problems with window sizing when starting tmux from .xinitrc.
* Give tmux sockets (but not the containing folder) group permissions.
* Extend the target flags (ie -t) to accept an offset (for example -t:+2), and
  make it wrap windows, and panes.
* New command choose-buffer added.
* New server option detach-on-destroy to set what happens to a client when the
  session it is attached to is destroyed. If on (default), the client is
  detached. Otherwise, the client is switched to the most recently active of
  the remaining sessions.
* The commands load-buffer, and save-buffer now accept a dash (-) as the file
  to read from stdin, or write to stdout.
* Custom layouts added.
* Additional code reduction, bug fixes, and manpage enhancements.

CHANGES FROM 1.1 TO 1.2, 10 March 2010

* Switch to libevent.
* Emulate the ri (reverse index) capability, ergo allowing tmux to at least
  start on Sun consoles (TERM=sun, or sun-color).
* Assign each entry a number, or lowercase letter in choose mode, and accept
  that as a shortcut key.
* Permit top-bit-set characters to be entered in the status line.
* Mark no-prefix keys with (no prefix), rather than [] in list-keys.
* New command show-messages (alias showmsgs), and new session option
  message-limit, to show a per-client log of status lines messages up to the
  number defined by message-limit.
* Do not interpret #() for display-message to avoid leaking commands.
* New window options window-status-format, and window-status-current-format to
  control the format of each window in the status line.
* Add a -p flag to display-message to print the output, instead of displaying
  it in the status line.
* Emulate il1, dl1, ich1 to run with vt100 feature set.
* New command capture-pane (alias capturep) to copy the entire pane contents
  to a paste buffer.
* Avoid duplicating code by adding a -w flag to set-option, and show-options to
  set, and show window options. The commands set-window-option, and
  show-window-options are now aliases.
* Panes can now be referred to as top, bottom, top-left, etc.
* Add server-wide options, which can be set with set-option -s, and shown with
  show-options -s.
* New server option quiet (like -q from the command line).
* New server option escape-time to set the timeout used to detect if escapes
  are alone, part of a function key, or meta sequence.
* New session options pane-active-border-bg, pane-active-border-fg,
  pane-border-bg, and pane-border-fg to set pane colours.
* Make split-window accept a pane target, instead of a window.
* New command join-pane (alias joinp) to split, and move an existing pane into
  the space (the opposite of break-pane), thus simplifying calls to
  split-window, followed by move-window.
* Permit S- prefix on keys for shift when the terminal/terminfo supports them.
* Window targets (-t flag) can now refer to the last window (!), next (+), and
  previous (-) window by number.
* Mode keys to jump to the bottom/top of history, end of the next word, scroll
  up/down, and reverse search in copy mode.
* New session option display-panes-active-colour to display the active pane in
  a different colour with the display-panes command.
* Read the socket path from $TMUX if it's present, and -L, and -S are not
  given.
* Vi-style mode keys B, W, and E to navigate between words in copy mode.
* Start in more mode when configuration file errors are detected.
* Rectangle copy support added.
* If attach-session was specified with the -r flag, make the client read-only.
* Per-window alternate-screen option.
* Make load-buffer work with FIFOs.
* New window option word-separators to set the characters considered as word
  separators in copy mode.
* Permit keys in copy mode to be prefixed by a repeat count, entered with [1-9]
  in vi mode, or M-[1-9] in emacs mode.
* utf8 improvements.
* As usual, additional code reduction, bug fixes, and manpage enhancements.
2010-12-21 12:55:54 +00:00
obache
880707dc5b Bump PKGREVISION from icu shlib major bump. 2010-12-17 07:36:08 +00:00
wiz
c6a8460057 Update to 2.3.2:
The Tellico development team, namely me, is happy to announce that
version 2.3.2 is available from the download page. Tellico 2.3.2
includes several bug fixes, among them:

    * Fixed bug with list view settings not being saved between sessions (Bug 256373)
    * Fixed bug with updating groups for derived values (Bug 256374)
    * Made Nepomuk support optional
    * Added cover art support for MusicBrainz source
    * Fixed Google Scholar data source to properly fetch Bibtex
    * Fixed bug with FreeDB results not using track artists (Bug 258541)
    * Fixed bug with importing Bibtex file with keyword and keywords fields (Bug 258269)
    * Fixed sorting multiple numeric values in column view
    * Fixed sorting for numeric values in group view
    * Updated Allocine script to version 0.7.3 (Bug 258281)
    * Updated Bibtex importer to translate non-breaking spaces
2010-12-15 13:25:05 +00:00
wiz
08e4bdaff3 Update to 0.8.12:
goffice 0.8.12:

Andreas
	* Fix US 30/360 date calculations. [#631242][#630784]

Jean:
	* Fixed sorting with accentuated characters. [#631504]
	* Allow filled plots to be displayed behind the grids. [#632310]
	* Fixed patterns with cairo-1.10.
	* Fixed flawed exponential fit in graphs for small values. [#633735]
	* Fixed an infinite loop condition in cubic spline evaluation. [#633965]

Morten:
	* Fix GOImage-vs-cairo lifecycle issue.
	* Fix loading of weird themes.

--------------------------------------------------------------------------
goffice 0.8.11:

Jean:
	* Implement custom grids in xyz plots. [#624273]

Jon Nordby:
	* Update API documentation.

Morten:
	* Improve fractional days support for date axes.
	* Draw charset/locale selectors with "radio" buttons.

Yasuaki Taniguchi:
	* Fix charset problem for Japanese.  [#627829]
2010-12-12 11:55:42 +00:00
wiz
a8d688f4d7 Update to 2.1.3:
Fixed issues

    * All ‘null (FP)’ problems should be resolved
    * Post-end bid-counts should be correct again
    * eBay is testing a new ‘confirm’ page which broke sniping.
    * Update-All works again, and is reasonably efficient
    * Substantial performance tuning
2010-12-12 11:39:47 +00:00
adam
ee8b321706 Changes 0.10.6:
* New feature for installing landscapes from ZIP archives.
* New plugin: Solar System editor.
* New plugin: Time Zone manual override.
* New translatable strings: stars and nebulae.
* Selected plugins loaded by default.
* Fixed on change of sky culture.
* Fixed clearing of single constellation selection.
* Fixed constellation art engine, removing distortion of images.
* Changed GUI styles (all dialogs now use "Title Bar", the two different tabbed
  widget implementations are styled consistently).
* Changed Solar System engine, allowing "Comets" and "Minor planets" to be
  handled as classes of objects separate from "Planets".
* Translatable plugin names, descriptions and some other strings.
* Oculars plugin: now uses a configuration file instead of SQL.
* Oculars plugin: added manual override of keyboard shortcuts.
* Oculars plugin: CCD sensors formula fixed.
* Satellites plugin: added new orbit prediction engine.
* Satellites plugin: added trajectory visualization.
* Satellites plugin: fixed problems leaving satellite TLEs out of date.
* Satellites plugin: can now update TLEs from a local file.
* Satellites plugin: satellite visibility can now be saved from satellites
  dialog.
* Telescope control plugin: fixed bad serial port names on Windows.
* Telescope control plugin: fixed telescopes disappearance on startup.
* Telescope control plugin: added manual equinox/epoch override.
* Various rendering problems resolved.
* SQLite dependency dropped. The Qt SQLite driver no longer needs to be
  packaged with Stellarium.
2010-12-06 21:03:18 +00:00
markd
77db46e172 Find recent libwpd, but remove koffice-libwpd option from the default
build as currently doesn't build against it.  Bump PKGREVISION.
2010-12-06 11:56:44 +00:00
markd
c92ceaebe1 Update to KDE SC 4.5.4
4.5.4 brings bugfixes and translation updates
2010-12-06 11:43:38 +00:00
gson
018660120e Update misc/py-anita to 1.18. Changes from 1.17:
Deal with sysinst no longer asking for a password cipher.

Create the work directory in "test" mode so that it works without
running "install" first.

Fix incorrect description of the --workdir option in the man page, and
consistently use the term "work directory" throughout.

Reorganized the man page, adding a MODES section.

New mode "print-workdir".

Fix installation of historical versions of -current around
CVS date 2009.08.23.20.57.40.
2010-12-04 19:43:37 +00:00
taca
c2a322e374 Update ruby-configuration pacakge to 1.2.0.
Changes are unknown.
2010-12-04 04:12:18 +00:00
taca
2161440548 Update ruby-columnize package to 0.3.2.
0.3.2

- Mostly Administrivia.
  * Add .gemspec, correct description field and add a summary.
  * Add Columnize::VERSION
  * Simplify Rakefile
  * Add stub Makefiles
2010-12-04 04:11:29 +00:00
taca
d9e2dcee79 Update ruby-bundler package to 1.0.7.
## 1.0.7 (November 17, 2010)

Bugfixes:

  - Remove Bundler version from the lockfile because it broke
    backwards compatibility with 1.0.0-1.0.5. Sorry. :(

## 1.0.6 (November 16, 2010)

Bugfixes:

  - Fix regression in `update` that caused long/wrong results
  - Allow git gems on other platforms while installing (#579)

Features:

  - Speed up `install` command using various optimizations
  - Significantly increase performance of resolver
  - Use upcoming Rubygems performance improvements (@tmm1)
  - Warn if the lockfile was generated by a newer version
  - Set generated gems' homepage to "", so Rubygems will warn

## 1.0.5 (November 13, 2010)

Bugfixes:

  - Fix regression disabling all operations that employ sudo

## 1.0.4 (November 12, 2010)

Bugfixes:

  - Expand relative :paths from Bundler.root (eg ./foogem)
  - Allow git gems in --without groups while --frozen
  - Allow gem :ref to be a symbol as well as a string
  - Fix exception when Gemfile needs a newer Bundler version
  - Explanation when the current Bundler version conflicts
  - Explicit error message if Gemfile needs newer Bundler
  - Ignore an empty string BUNDLE_GEMFILE
  - Skeleton gemspec now works with older versions of git
  - Fix shell quoting and ref fetching in GemHelper
  - Disable colored output in --deployment
  - Preserve line endings in lock file

Features:

  - Add support for 'mingw32' platform (aka RubyInstaller)
  - Large speed increase when Gemfile.lock is already present
  - Huge speed increase when many (100+) system gems are present
  - Significant expansion of ISSUES, man pages, and docs site
  - Remove Open3 from GemHelper (now it works on Windows™®©©
  - Allow setting roles in built-in cap and vlad tasks

## 1.0.3 (October 15, 2010)

Bugfixes:

  - Use bitwise or in #hash to reduce the chance of overflow
  - `bundle update` now works with :git + :tag updates
  - Record relative :path options in the Gemfile.lock
  - :groups option on gem method in Gemfile now works
  - Add #platform method and :platform option to Gemfile DSL
  - --without now accepts a quoted, space-separated list
  - Installing after --deployment with no lock is now possible
  - Binstubs can now be symlinked
  - Print warning if cache for --local install is missing gems
  - Improve output when installing to a path
  - The tests all pass! Yay!

## 1.0.2 (October 2, 2010)

Bugfix:

  - Actually include the man pages in the gem, so help works
2010-12-04 04:10:55 +00:00
dholland
416c42c489 Requires gdk-pixbuf2-xlib for gtk plugin. From PR 44178. 2010-12-02 07:35:05 +00:00
drochner
544b5c1a3e update to 2.30.2
changes:
-minor fixes
-translation updates
2010-11-29 18:32:00 +00:00
dholland
61f60877b1 Fix PR 44163 by setting PREFIX correctly within the package. While
here, add patch comments and remove pkglint. PKGREVISION -> 7.
2010-11-28 20:52:44 +00:00
drochner
fe311bd267 update to 2.32.0
This switches to the gnome-2.32 release branch.
2010-11-28 13:23:06 +00:00
gson
3f5a7d7080 Update misc/py-anita from 1.15 to 1.17. Changes:
Update the discussion of Linux KVM virtualization compatibility in the
BUGS section, noting the --qemu-args -no-kvm-irqchip workaround and
including a reference to PR 44069.

New command line option "--sets".

Add a rudimentary INSTALL file.

The "misc" set is now installed by default, as it is required for
the ATF XML DTD, XSL files, and style sheets.

The "test" command now exports the raw and XML format ATF output
to the host, along with some auxiliary files needed for further
processing of the XML output.

Add support for FreeBSD hosts, from Kurt Lidl.
2010-11-25 14:44:20 +00:00
wiz
0f39b69ffb Bump PKGREVISION for libwpd shlib name change. 2010-11-25 10:28:34 +00:00
wiz
9c4d7c5c2c Update to 2.1.2:
o Fix some drag-and-drop issues caused by eBay’s new URL format
o Improve My eBay lookup
o Fix the display problems which made it look like completed items were gone.
o Try to make post-end auction updating work more smoothly
o A bunch of internal bugfixes
2010-11-23 22:55:52 +00:00
wiz
c7d3fe5f45 Update to 2.3.1:
* Released Tellico 2.3.1.
* Fixed edit dialog behavior when closing to be consistent with discarding data (Bug: 255938).
* Fixed error in Italian translation that caused HTML error and add workaround for future problems (Bug: 254863).
* Updated Freebase source for adapted /music/release schema.
* Updated IMDb data source for new layout (Bug: 253549).
* Added options in CSV importer and exporter for table delimiters.
* Changed URL field output to truncate link text to 30 letters (Bug: 250880).
* Increased max icon size to 256.
* Changed updating match algorithm to try to improve results when having multiple good matches (Bug: 250886).
* Updated GCstar plugin fetcher to use a separate thread.
* Fixed crash with z39.50 fetcher (Bug: 250795).
* Updated GCstar plugin fetcher to work with comic books.
* Fixed parsing for director and writer in IMDB fetcher (Bug: 249096).
* Updated DTD and added unit test for validation.
* Added GCstar import/export for comic book collections.
* Fixed bug with adding new fields during CSV import.
* Added GCstar export for wine collections.
* Improved GCstar import for wine collections.
* Fixed filter view to apply filter when item is selected (Bug: 248657).
* Improved exporter to add option for limiting exported fields (Bug 246390).
* Added data source fetcher for dvdfr.com.
2010-11-23 17:31:29 +00:00
mrg
63c1aceb24 add a "cups" options, default to on. 2010-11-19 08:29:30 +00:00
tnn
05b932f619 committed previous from the wrong tree, we should only bl3 gdk-pixbuf2-xlib
if the gtk2 option is enabled.
2010-11-17 10:15:53 +00:00
tnn
db4d449180 buildlink graphics/gdk-pixbuf2-xlib to fix
configure: error: requirements to build the gtk-plugin not met.
2010-11-17 10:13:47 +00:00
abs
9987fa4b3a PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnome 2010-11-15 22:56:08 +00:00
obache
4df37b6c5f Shlib major bumped from 3 to 4 at update of ImageMagick-6.6.4.1.
Bump ABI_DEPENDS (and recursive bump).
2010-11-14 14:05:57 +00:00
markd
113e1423ce Make sure it uses the correct liblzma 2010-11-10 10:14:42 +00:00
plunky
88ec62d733 update to 3.9.7:
2010-10-28 : zyGrib Version 3.9.7

    * Fix a supid bug (oops) : crash when create animation.
2010-11-08 18:42:44 +00:00
markd
d219d2320d Update to KDE SC 4.5.3
4.5.3 brings a number of improvements:

    * KSharedDataCache has cache invalidation bug fixed that caused stability
           when daylight saving time changed.
    * Icon overlays in Dolphin are now positioned correctly after adjusting
      the zoom level.
    * Okular, KDE's universal document viewer has seen improvements in the
      DjVu and XPS backends.
2010-11-03 20:07:33 +00:00
wiz
d181a9e465 Reset maintainer. 2010-11-01 00:08:09 +00:00
plunky
7b6b584f0a update to 3.9.6
# 2010-10-25 : zyGrib Version 3.9.6

    * Fix a bug in version 3.9.5 : sometimes the progress bar was not hidden after the opening of a file.

# 2010-10-25 : zyGrib Version 3.9.5

    * New data (thank you NOAA !) : wind gust.
    * Animation when loading files.
    * Can interrupt the loading of big files.
    * Fix a bug : rare crash when manipulating meteotables.
2010-10-28 07:58:16 +00:00
markd
cb6e1b9309 Add a buildlink3.mk 2010-10-27 09:43:12 +00:00
markd
1dfd41696e hacks.mk was meant to go as part of the 4.5.2 update. 2010-10-27 05:43:33 +00:00
markd
547720d8ee Update to KDE SC 4.5.2
4.5.2
translation updates, performance and stability improvements and other
bugfixes.

4.5.0
new versions of the Plasma Workspaces, the KDE Applications and the KDE
Development Platform in version 4.5.0. While focus within this release
cycle lay on stability, the overall polish and performance gain is well
noticable. Features such as the reworked notification area, Marble's map
routing and support for WebKit in Konqueror round up this release.
2010-10-25 20:55:22 +00:00
markd
4098f807b7 Update to attica 0.2.0
- Update voting function (add overload) to take uint 0..100 according to
   ocs 1.6 spec
 - Add comments interface to request comments, add new comments and vote
   for comments
 - Add distribution interface to request distributions available in the
   server
 - Add homepagetype interface to request home page types from the server
 - Add methods to access home page entries in content
 - Add support of icons to content (OCS 1.6)
 - Add support of videos to content (OCS 1.6)
 - Add summary description to content (OCS 1.6)
 - Add size to download description (OCS 1.6)
 - Add fields to download item for package name, package repository, gpg
   fingerprint, mimetype (OCS 1.6)
2010-10-25 20:07:27 +00:00
wiz
97ed5045b9 If installing icons to share/icons/gnome, depend on gnome-icon-theme.
Bump PKGREVISION.
2010-10-20 20:26:29 +00:00
obache
a918a5905f Update m17n-contrib to 1.1.12.
* Changes in the m17n-contrib 1.1.12
** New input method:
im/be-kbd.mim (Belarusian)
2010-10-16 12:57:20 +00:00
obache
381862f911 Update m17n-db to 1.6.2.
* Changes in the m17n database 1.6.2
** New FLT file.
FLT/HEBR-OTF.flt
2010-10-16 12:53:11 +00:00
plunky
af4e667f09 update to zyGrib 3.9.4:
# 2010-10-06: zyGrib Version 3.9.4

    * Reduce flashing when resizing window.
    * Fixed a bug: the first image was not allways visible with
      some graphic cards.

# 2010-10-05: zyGrib Version 3.9.3

    * Supress a vicious bug (random crash).
    * New dutch translation.

# 2010-05-14: zyGrib Version 3.9.2

    * zyGrib uses the new GRIB file server, faster and more reliable.
    * Max file size is now 50 Mb (was 20).
    * New data in meteotables: geopotential altitude.
    * Can save data from meteotables in SYLK format, readable with a
      spreadsheet. Don't use a famous but stupid spreadsheet which do
      not understand correctly languages with beautiful accentued
      characters, but prefer OpenOffice.

# 2010-05-02: zyGrib Version 3.9.1

    * More complete information about data on the map.
    * Add relative humidity in altitude in meteotables.
    * Display if possible the wind arrows at the same altitude than the
      main data of the map.
    * Suppress a bug: area containing longitude 180° was sometimes not
      displayed when zooming.

# 2010-04-20: zyGrib Version 3.9.0

    * New altitude level: 200 hPa ( 11800 m).
    * New data: relative humidity at levels 850, 700, 500,300, 200 hPa.
    * Can choose altitude levels when downloading GRIB files.
    * Solve some bugs.

# 2010-04-03: zyGrib Version 3.8.6

    * Despite malformed file headers, zyGrib can now display corrupted GRIB
      files distributed by some suppliers, in particular Maxsee.  There are
      more explanation in the french news page and in the forum (also in
      french, sorry).

# 2010-03-15: zyGrib Version 3.8.5.3

    * New language: Czech (thanks Pavel Kalian).

# 2010-03-09: zyGrib Version 3.8.5.2

    * Suppress again the bug in the Windows version: saving images worked
      with XP, but not with Vista or Windows 7 (thanks a lot Microsoft for
      not being compatible with yourself).

# 2010-03-08: zyGrib Version 3.8.5.1

    * Suppress a bug in the Windows version: a dll was missing, so it was
      impossible to save images.

# 2010-03-08: zyGrib Version 3.8.5

    * Suppress an important bug: there was an unpredictable crash when reading
      certain GRIB files (rare, but it is not a reason).

# 2010-03-01: zyGrib Version 3.8.4

    * Save image (menu file or Ctrl+S).
    * Save all the images of an animation.
    * The trick red of the choice in the date moves when the mouse comes
      to titillate the date selector (sorry, automatic translation lose
      spoonerism !!!).
    * Dialog boxes more compact, so zyGrib is usable on low resolution
      screen (800x600).
    * Choose the language at the first start of the application.
    * Source sentences are now in english (bad :) ) to facilitate the
      translations.
    * Suppress a bug: geopotential altitudes very different from average
      value was not shown.

# 2010-01-31: zyGrib Version 3.8.3

    * Graphical date selector.
    * More complete information on meteorigical data shown on the map.

# 2010-01-28: zyGrib Version 3.8.2

    * Can choose the unit for the geopotential altitudes.
    * Show altitude data in meteotables.
    * suppress a bug in the Windows version: save file path was lost.

# 2010-01-25: zyGrib Version 3.8.1

    * Download and visualization of data in altitude (geopotential altitude,
      wind, temperature, theta-e) at 850, 700, 500 et 300 hPa (approx
      1460, 3000, 5600 and 9200 meters).
    * When opening a GRIB file, the displayed date is the closest date
      from now.
    * There was a lot of very important changes in the source code structure.
      It is now much easier to evoluate and to add new meteorological data.
    * Suppress a important bug when loading application in 3.8.0 version
      (in line only a few minutes).

# 2009-12-16: zyGrib Version 3.7.1

    * Update Dutch translation.
    * New Makefile in the source version for Linux.
      One can now do a make install to install all files in the directory
      $HOME/zyGrib (see the variable INSTALLDIR in the Makefile).
      Note: it's not a universal solution... but it's on the way...

# 2009-12-05: zyGrib Version 3.7.0

    * User can change the fonts used in the interface (Ctrl+E).
    * By default, zyGrib use and provide free fonts Liberation Fonts, for
      the interface and (more important) to assure the control of the size
      of the annotations on the maps.
    * Adaptive display of cities names, sorted by population.
    * Using cache memory for configuration parameters (significant speed
      improvment on slow support like USB key).
    * Important rewriting of source code to facilitate future evolutions.

# 2009-08-19: zyGrib Version 3.6.3

    * ZyGrib can now display Saildocs GRIB files.

# 2009-08-16: zyGrib Version 3.6.2

    * Updated translation files.

# 2009-08-15: zyGrib Version 3.6.1

    * Fixed a bug on the version number.
    * Meteotables a little dense for more data under the eyes.

# 2009-08-12: zyGrib Version 3.6.0

    * Transition to QT 4.5.
2010-10-16 06:50:52 +00:00
obache
0b460921a6 require some directories before installation. 2010-10-03 13:03:51 +00:00
obache
f8c4ad9dca Bump PKGREVISION by default mysql version changed from 5.0 to 5.1. 2010-09-30 10:49:10 +00:00
dsainty
c0b83e678e Force flush to be pipe-friendly (from ppower -m). Bump PKGREVISION. 2010-09-29 10:42:48 +00:00
taca
9e4978df82 Remove empty value of LICENSE. 2010-09-23 09:22:13 +00:00
obache
13479f49c6 Update gpriodic to 2.0.10.
Based on PR#43779 by Kamel Derouich, with some improvements by me.

2.0.10 : Minor code update & include translations
 * Use the standard gtk+ about window
 * Include the russian translation contributed by Michael Shigorin
2.0.9 : Minor code update & include translations
 * Several minor fixed contributed from the Debian project has been merged.
 * Italian and galician translations have been included.
2010-09-19 02:18:42 +00:00
taca
21de65014b * Remove patch of gemspec to allow depending to rubygems 1.3.5.
Bump PKGREVISION.
2010-09-16 12:05:27 +00:00
taca
a829c0f2f1 Update rubygems to 1.3.7.
o pkgsrc changes:

  * Add patches to keep output of specification sub-command as before.
  * Make sure to 'yaml is loaded in Gem::Specification::from_yaml().


=== 1.3.7 / 2010-05-13

NOTE:

http://rubygems.org is now the default source for downloading gems.

You may have sources set via ~/.gemrc, so you should replace
http://gems.rubyforge.org with http://rubygems.org

http://gems.rubyforge.org will continue to work for the forseeable future.

New features:

* `gem` commands
  * `gem install` and `gem fetch` now report alternate platforms when a
    matching one couldn't be found.
  * `gem contents` --prefix is now the default as specified in --help.  Bug
    #27211 by Mamoru Tasaka.
  * `gem fetch` can fetch of old versions again.  Bug #27960 by Eric Hankins.
  * `gem query` and friends output now lists platforms.  Bug #27856 by Greg
    Hazel.
  * `gem server` now allows specification of multiple gem dirs for
    documentation.  Bug #27573 by Yuki Sonoda.
  * `gem unpack` can unpack gems again.  Bug #27872 by Timothy Jones.
  * `gem unpack` now unpacks remote gems.
  * --user-install is no longer the default.  If you really liked it, see
    Gem::ConfigFile to learn how to set it by default.  (This change was made
    in 1.3.6)
* RubyGems now has platform support for IronRuby.  Patch #27951 by Will Green.

Bug fixes:

* Require rubygems/custom_require if --disable-gem was set.  Bug #27700 by
  Roger Pack.
* RubyGems now protects against exceptions being raised by plugins.
* rubygems/builder now requires user_interaction.  Ruby Bug #1040 by Phillip
  Toland.
* Gem::Dependency support #version_requirements= with a warning.  Fix for old
  Rails versions.  Bug #27868 by Wei Jen Lu.
* Gem::PackageTask depends on the package dir like the other rake package
  tasks so dependencies can be hooked up correctly.

=== 1.3.6 / 2010-02-17

New features:

* `gem` commands
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
    sources
  * `gem dep` now supports --prerelease.
  * `gem fetch` now supports --prerelease.
  * `gem server` now supports --bind.  Patch #27357 by Bruno Michel.
  * `gem rdoc` no longer overwrites built documentation.  Use --overwrite
    force rebuilding.  Patch #25982 by Akinori MUSHA.
* Captial letters are now allowed in prerelease versions.

Bug fixes:

* Development deps are no longer added to rubygems-update gem so older
  versions can update sucessfully.
* Installer bugs:
  * Prerelease gems can now depend on non-prerelease gems.
  * Development dependencies are ignored unless explicitly needed.  Bug #27608
    by Roger Pack.
* `gem` commands
  * `gem which` now fails if no paths were found.  Adapted patch #27681 by
    Caio Chassot.
  * `gem server` no longer has invalid markup.  Bug #27045 by Eric Young.
  * `gem list` and friends show both prerelease and regular gems when
    --prerelease --all is given
* Gem::Format no longer crashes on empty files.  Bug #27292 by Ian Ragsdale.
* Gem::GemPathSearcher handles nil require_paths. Patch #27334 by Roger Pack.
* Gem::RemoteFetcher no longer copies the file if it is where we want it.
  Patch #27409 by Jakub Stastny.

Deprecation Notices:

* lib/rubygems/timer.rb has been removed.
* Gem::Dependency#version_requirements is deprecated and will be removed on or
  after August 2010.
* Bulk index update is no longer supported.
* Gem::manage_gems was removed in 1.3.3.
* Time::today was removed in 1.3.3.
2010-09-16 12:02:05 +00:00
wiz
4d24b9b8ad More PKGREVISION bumps for pixman update. 2010-09-14 11:13:10 +00:00
wiz
200e3c4a04 Bump dependency on pixman to 0.18.4 because cairo-1.10 needs that
version, and bump all depends.

Per discussion on pkgsrc-changes.
2010-09-14 11:00:44 +00:00
bad
d6d0db9f6d bump PKGREVISION for restricting JVMs to working ones in options.mk. 2010-09-13 22:38:38 +00:00
bad
12dfaed5be Fix JVM names. And remove openjdk7 as openoffice doesn't recognise it
as supported JVM.
2010-09-13 22:32:02 +00:00
wiz
b85c868148 Update to 0.8.10:
goffice 0.8.10:

Andreas:
	* Make sure the first rather than the last error is shown.
	* Plug leak.
	* Provide the opportunity of all errors to be shown.

Jean:
	* Always use real line width when evaluating dashes. [#442546]
	* Update x and y limits when data change for xyz plots. [#627288]
	* Do not crash when displaying cubic spline with no abscissa. [#627507]
	* Do not save image filling with no image. [#627690]
	* Don't use g_free instead of xmlFree. [#627700]
	* Optionnaly delete trendlines from legend. [#628031]
	* Fix critical in go_doc_finalize. [#628467]
	* Fixed a potential crasher in gog_styled_object_document_changed. [#628671]
	* Fixed GOImage references management. [#628732]

Morten:
	* Limit formats to sane number of decimals.  [#627066]
	* Fix minor go_string_replace issue.
	* Plug leaks.
	* Fix char-xmlChar confusion.
	* Fix graph crash.  [#628259]
	* Improve go_format_is_date.
	* Improve handling of date axes with time-of-day.
	* Fix FMR on image load.  [Part of #628467]
2010-09-13 10:58:43 +00:00
obache
0a1974f04b Marked as CONFLICTS with the previous pkgname (no ruby??- prefix). 2010-09-13 07:54:34 +00:00
taca
0dcddda4ec misc/rubygems/rubygem.mk has moved to lang/ruby/gem.mk. 2010-09-12 13:12:14 +00:00
taca
003b98181d Add and enable ruby-bundler. 2010-09-12 01:52:07 +00:00
taca
512e0e6c2f Importing misc/ruby-bundler 1.0.0.
Bundler is a tool that manages gem dependencies for your ruby
application. It takes a gem manifest file and is able to fetch,
download, and install the gems and all child dependencies specified in
this manifest. It can manage any update to the gem manifest file and
update the bundle's gems accordingly. It also lets you run any ruby
code in context of the bundle's gem environment.
2010-09-12 01:51:10 +00:00
taca
b33a20b69b Reset PKGREVISION. 2010-09-10 13:44:38 +00:00
gson
9ef8420917 Update misc/py-anita to 1.15. Changes from 1.14:
Increase the timeout for "--run" commands to one hour.

Restrict snapshotting to the system disk, so that additional disks
mounted for the purpose of exporting data can be persistently
modified.
2010-09-10 10:35:48 +00:00
taca
bae1775ab5 * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.
* Ajust new ruby package's framework.
* Update dependency according to gemspec.

Bump PKGREVISION.
2010-09-10 07:26:51 +00:00
taca
1bdbc8a0d8 Update misc/ruby-launchy to 0.3.7.
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.
* Remove default value of GEM_BUILD.
* Update dependency according to gemspec.


= Launchy Changlog

== Version 0.3.7 - 2010-07-19

* Fix launchy on windows (mikefarmer)

== Version 0.3.6 - 2010-02-22

* add a test:spec task to run tests without rcov support
* added 'testing' os family for running tests

== Version 0.3.5 - 2009-12-17

* clarify that launchy is under ISC license
* fix missing data file in released gem needed for running specs

== Version 0.3.3 - 2009-02-19

* pass command line as discrete items to system() to avoid string
  interpretation by the system shell. (Suraj N. Kurapati)
* rework project layout and tasks
2010-09-10 07:24:27 +00:00
taca
51b81344cc * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.
* Remove default value of GEM_BUILD.
* Ajust new ruby package's framework.
2010-09-10 07:23:26 +00:00
taca
ec38537090 Update misc/ruby-daemons to 1.1.0.
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.


== Release 1.1.0: June 20, 2010

* Honour the options[:app_name] in Daemons.daemonize (thanks to Ryan Tecco).
* Included a new option :stop_proc to specify a proc that will be called when a
  daemonized process receives a request to stop (thanks to Dave Dupre).
* Only delete the pidfile if the current pid is the original pid (ghazel).
* Start when restart but no application running (pcreux).
* Silently continue if there is no pidfile (ghazel).
* We now per default wait for processes to stop and
  kill them automatically it if they do not stop within a given time
  (force_kill_waittime). Use the option --no_wait to not wait for processes to
  stop.
* Set log files mode to 0644 (mikehale).
* Set pid file permissions to 0644 (mikehale).
* Added ability to change process uid/gid (mikehale).
* Fix for: If you happen to start a daemon from a process that has open file
  descriptors these will stay open. As it is daemonize.rb only closes ruby IO
  objects (thanks to Han Holl).
* New reload command (SIGHUP) (thanks to Michael Schuerig).
2010-09-10 07:22:54 +00:00
taca
1fc00fe043 Update misc/ruby-configuration to 1.1.0.
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Update HOMEPAGE.
* Add LICENSE.
* Remove default value of GEM_BUILD.

Changes are unknown.
2010-09-10 07:22:08 +00:00
taca
9dc690ff38 Update misc/ruby-columnize to 0.3.1.
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.
* Remove default value of GEM_BUILD.


0.3.1  (01-07-26)

- Correct for Ruby 1.9 (Mark Mosely)

- add optional lineprefix parameter

0.3.0  (01-10-09) - Sam Woodward Release

- Fix bad bug in arranging horizontally

0.2.1 (12-31-08)

- Add ability to run columns horizontally

0.2

- Minor - get rid of hacky $0 test
2010-09-10 07:21:02 +00:00
taca
a7797649df * take maintainer ship.
* Add LICENSE.
* Adjust new ruby packages' framework.
* Command name is gem${RUBY_VER} == gem18 now and add ALTERNATIVES.
* Add comments to patches.
* Overhalt --install_root option.
* Avoid access HOME when --install_root is enabled.
* honor PKG_SYSCONFDIR.

Bump PKGREVISION.
2010-09-10 03:48:40 +00:00
gson
80c9a342b8 Update misc/py-anita to 1.14. Changes since 1.13:
Increase the maximum number of boot floppies, as four is no longer
enough for amd64.

New command line option "--run".

Handle the additional dialogs displayed by sysinst when an
i386 or amd64 system has more than one disk.

Add the words "OR CONTRIBUTORS" to the disclaimer of liabilities
in the copyright notice.
2010-09-07 19:08:19 +00:00
tron
e8dda28acc Remove "CHECK_FILES_SKIP" entries as "rpm2pkg" no longer generates
package lists which trigger false positives.
2010-09-07 17:35:29 +00:00
taca
bb99299a80 * Mark these packages Ruby 1.8.x support only.
* Add some comments and a little clean up.

No functional change.
2010-09-07 17:20:24 +00:00
wiz
745c6b2cd2 Update to 0.82:
[Changes for 0.82 - 2010-04-12]
* Locale::Maketext::Extract::Plugin::Base
* Locale::Maketext::Extract::Plugin::TT2
* Locale::Maketext::Extract
    - fixed some spelling errors - thanks to Ansgar Burchardt for the patch

[Changes for 0.81 - 2010-04-09]
* Locale::Maketext::Extract::PLugin::FormFu
    - the plugin now understands YAML of the form:
        mesage_loc: ['Max files: [_1]', 10]

      Thanks to Charlie Garrison for the patch

[Changes for 0.80 - 2010-04-08]
* Locale::Maketext::Lexicon
    - Added the _preload option, which forces parsing of the lexicon
      as soon as it is loaded. Improves memory usage and performance
      in a prefork environment

      Thanks to Ruslan Zakirov for the patch
2010-09-06 11:09:09 +00:00
wiz
02d40f85b7 Update to 3.13:
3.13  2010-06-04 sbeck
        * NEW CODE(s)

3.12  2010-04-06 sbeck
        * NEW CODE(s)
        * Renamed test.pl to testfunc.pl to avoid causing an error
          when built as part of perl.
2010-09-06 11:08:25 +00:00
wiz
2afd3e1ec9 Update to 0.09006, set LICENSE.
0.09006 - 19 May 2010
   - Should fix errors in t/003_error.t
     http://cpantesters.org/cpan/report/07280906-b19f-3f77-b713-d32bba55d77f

0.09005 - 17 May 2010
   - Should fixe problems with t/005_clone.t
   - Minor XS tweaks

0.09004 - 11 May 2010
   - Disable MSWin32 (patches welcome)

0.09003_03 - 10 May 2010
   - Explicitly test add_file_ext
   - Add thread safety test

0.09003_02 - 26 Apr 2010
   - Ah, typemaps! I guess I didn't know about it when I first wrote this
   - Add many tests
   - Fix a memory leak under clone()
   - Fix a memory leak under fhmagic()
   - Update function declarations to a more modern style
     * move all functions out of XS section, and make use of
       automatic linkage by xsubpp
   - Add a memory leak test
     * only runnable when running under author mode
     * set TEST_MEMLEAK=1
     * ignore any leaks that does not directly show a Perl_*
       namespace.

0.09003_01 - 07 Apr 2010
   - Fix memory corruption (Martin Blapp)
   - Fix rt #28072. Changing $/ doesn't change the return value (Martin Blapp)
   - Fix how SV returned by error() is handled.
   - Add a clone() method.
2010-09-06 11:07:39 +00:00
sno
e44be8e243 Mark I18N::LangTags being used from Perl5 core (if module is maintained again in future) 2010-09-04 12:18:53 +00:00
sno
a36b27fd97 Locale::Maketext is newer in core since 5.10 - and the CPAN module seems
currently not maintained. Mark 1.13 broken so far.
2010-09-04 11:52:17 +00:00
wiz
e5cde31c7c Add
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
per pkglint, ride PKGREVISION bump from a few seconds ago.
2010-09-01 13:45:52 +00:00
wiz
8423a2b1d1 Switch to libassuan2, based on KDE SVN
http://websvn.kde.org/?view=revision&revision=1078528

Suitable SVN commit found by drochner@
ok markd@

Bump PKGREVISION.
2010-09-01 13:45:25 +00:00
markd
ead7a6c443 fix build with boost-libs 1.44.0 2010-08-31 12:17:44 +00:00
gson
4624ac0209 Update misc/py-anita to 1.13. Changes from 1.12:
When installing NetBSD/sparc, use a terminal type of "xterm" rather
than "sun", as anita is more likely run from an xterm or other
ANSI-like terminal than from a sun console.

In the BUGS section of the man page, mention the specific NetBSD ports
affected.

Fix typos in the man page.
2010-08-30 14:42:27 +00:00
gson
6f072ffe6f Update misc/py-anita to 1.12. Changes from 1.11:
Add support for the amd64 and sparc ports as targets.

Improve error reporting for common types of unsuitable URLs.

Avoid sending multiple responses when the NetBSD 3.0.1 sysinst
updates the menu display multiple times.

New command line option "--disk-size".
2010-08-28 15:21:09 +00:00
seb
c3f1e700ad Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
2010-08-21 16:32:42 +00:00
wiz
9550110413 Use unique names in this file (was still using 0.6 in many parts). 2010-08-20 00:31:14 +00:00
obache
31ec4cc2b0 set LICENSE=original-bsd 2010-08-18 12:43:52 +00:00
wiz
5f7f560833 Update to 0.8.9:
Jean:
	* Don't crash when loading a corrupted chart. [#626206, #626263, #626305]
	* Fix blur in zoomed charts.
	* Fix memory leak and criticals in graph editor. [#626665]
	* Allow themes defined as xml files. [#531070]
	* Update currencies. [#626461]
2010-08-17 14:34:40 +00:00
wiz
5489d36525 Update to 2.1.1:
Bugs fixed
        Recognize auctions with BIN as auctions so they can be sniped.
        Force the time to synchronize 5 minutes before a snipe fires.
        Lots of tweaks to time synchronization to make it more accurate.
        Make snipe, cancel snipe, and other internal web server functions work
        Remove unused ‘Check for Updates’ menu item under Mac OS X; it uses Sparkle instead.
        JBidwatcher was failing to recognize a user as a high bidder if there was a bid retraction.
        Toolbar hide and show again shouldn’t move the login status to the far left of the toolbar.
        Recognize eBay’s error message for sellers trying to bid on their own items.
        Detect reserve listings again, and some other minor reserve-related tweaks.
        A ton of other cleanups and refactorings.
    Features
        Add selection color setting to the Window menu
        Some work towards providing a sync-with-mobile capability (disabled for now)
        Substantial renovations to the auction update cycle; auctions to update don’t need to be in memory anymore.
        Add selling-item retrieval to the My eBay search; successfully retrieved multiple pages.
        An attempt at getting My eBay watch lists working.
        Add the ability to refresh the log view
        Add a donation button that is easily dismissible.
        Include last-updated information in the Info display.
2010-08-16 21:39:34 +00:00
wiz
4ec71a241b Update to 2.3:
* Released Tellico 2.3.
	* Fixed sorting by rating when rating has double digits (Bug: 246202).
	* Fixed IMDb matching on partial titles (Bug: 245665).
	* Fixed IMDb fetching of alternative titles.
	* Fixed IMDb fetching of audio track and color (Bug: 244159).
	* Fixed metadata import for file listing.
	* Added Dewey Decimal and LoC Classification to z3950 MODS import.
	* Fix subtitle value in MODS import.
	* Added filter for data source list.
	* Updated BoardGameGeek fetcher for new API.
	* Added data source for Freebase.
	* Fixed crashing bug for loading images whose size exceeded
	the cache size.
	* Changed Amazon Japan video search to include DVDs.
	* Added new fetcher for combining results from multiple sources.
	* Updated allocine.fr script to version 0.7.1, patch from
	Romain Henriet.
	* Fixed bug with cursor position in date field entry.
	* Added fetcher for openlibrary.org (requires QJSON lib).
	* Added clear button for rating widget (BUG: 227982).
	* Control characters are now stripped from all text files
	on import (BUG: 231302).
	* Removed local FindKcddb cmake module in favor of system
	FindKdeMultimedia.
	* Fixed selection bug when duplicating an entry (BUG: 231125).
	* Fixed crash in exporting HTML for collections with no
	grouping field (BUG: 231302).
	* Fixed bug that showed info dialog multiple times when
	changing image location.
	* Fixed crash in CSV importer.
	* Tweaked entry ID values to start at 1 instead of 0.
2010-08-15 19:55:25 +00:00
drochner
ab1757dcb4 more pkgrev bumps for poppler update 2010-08-15 12:33:32 +00:00
obache
c78ed6aa86 Update libquantum to 1.0.0.
libquantum 1.0.0:
	- Fixed quantum_gate1 to work properly with sorted regs
	- Fixed several bugs in quantum_rk4a

libquantum 0.9.1:
	- Added fourth-order Runge-Kutta time evolution
	- Fixed error in quantum_measure() that caused some register values
	  never being measured
	- Improved error handling
	- Updated license and FSF contact data
	- Added arbitrary two-qubit gate
	- New function two print entire time evolution operator
	- Fixed Makefile syntax
2010-08-15 07:35:56 +00:00
drochner
317a90d51b -clean up the last patch - remove unneeded code (submitted upstream)
-add a "sync" option to the "dr" command which sets the next written
 value to the last read one, seems useful to me to do least invasive
 tests in a running system
-flush stdout on progress reports of the svf player (fixed differently
 in the development branch upstream)
bump PKGREVISION
2010-08-09 19:37:45 +00:00
drochner
098bdfbe2b update to 0.8.8
changes: misc bugfixes
2010-08-05 18:38:38 +00:00
seb
1b0bf224a0 Update p5-Vroom from version 0.21 to version 0.23.
Upstream changes:
version: 0.23
date:    Tue Jun 22 14:55:10 PDT 2010
- Add 'vroom -text' to publish text.

version: 0.22
date:    Mon Jun  7 19:23:39 PDT 2010
- Move Vroom::Vroom back to Vroom.pm
2010-08-04 22:08:39 +00:00
drochner
bdb884c89a fix a bug in optimizer code which is used by some cable drivers to
reduce the number of transactions which resulted in a wrong TDO
picked up under some circumstances
being here, quell a warning in the usbprog driver which only tells
us what we already know, and improve an error message
bump PKGREVISION
2010-08-03 15:22:27 +00:00
pooka
4e39d40c2a Update qemu dependecy to 0.12.3nb2, since earlier versions contain
a bug which causes fork from a threaded program to deadlock (this
is exercised heavily by the tests executed by "anita test").
2010-08-02 14:30:36 +00:00
drochner
b8e240e855 "gfloppy" doesn't exist anymore, not even for Linux, from
Matthias Ferdinand per pkgsrc-users
2010-08-02 09:07:55 +00:00
drochner
34b2cbdc13 there is no point in keeping a runtime dependency on bash just
for a trivial script, so fix the script instead
2010-07-30 16:59:48 +00:00
drochner
b8c64e10fa +urjtag 2010-07-30 16:06:37 +00:00
drochner
34fa13a450 add urjtag-0.10, a command-line tool for JTAG testing, successor
of the openwince-jtagtools (added features are ejtag support,
bsdl file import and svf player, probably more)
I've added a minimal driver for the "usbprog" adapter. It needs the
"usbprogJTAG" firmware which is not distributed in binary
by the developers but can be easily built with pkgsrc/cross/avr-gcc.
(There is some "openocd" firmware which looks similar, it might be
possible to make this work.)
Caution: The usbprog adapter does no Vref sampling but drives always 5V.
Make sure your taget device tolerates that. (I've tested with a PIC32
eval board.)
2010-07-30 16:02:45 +00:00
asau
dfc6889736 "fortran" -> "fortran77" except where it is clear that it isn't F77.
"fortran" is alias of "fortran77" for now, but it will change later.
2010-07-30 10:36:22 +00:00
dholland
5d17ed77ad Work around namespace pollution breaking the build on OpenSolaris.
From Aleksey Cheusov in PR 43638.
2010-07-30 07:10:50 +00:00
gls
ee69c27d9a Update misc/vym to 1.12.7.
Based on PR pkg/43665 by Ryo ONODERA.

Unfortunately, upstream has not updated changelog since version 1.8.1.
2010-07-27 18:27:34 +00:00
sbd
7db34beac2 If db4 is selected as the DBD_TYPE then PTHEADS_LDFLAGS is needed for linking. 2010-07-21 22:29:36 +00:00
wiz
df0c4c2ab3 Update to 0.17:
Gaupol 0.17
===========

 * Add "Save All As" (under the Projects menu) to save all open
   documents with selected properties (fixes #595685)
 * Add an inline spell-check for editable multiline text fields (off
   by default, can be activated in the preferences dialog)
 * Add support for milliseconds (field $MILLISECONDS) in preview
   commands. Allows use of Media Player Classic for preview.
 * Add help button in the preferences dialog, clickable in the
   preview tab to launch web browser to view wiki documentation
 * Use reading speed (characters per second) instead of optimal
   duration (seconds per character) in duration adjust dialog
 * Fix writing subtitle file headers with chosen newlines
 * Fix reading and writing extension configurations
 * Fix minor i18n issues with individual strings
 * Add optional dependency of PyGtkSpell (part of gnome-python-extras)
 * Add --mandir global option to setup.py to allow installation of man
   pages to somewhere else than .../share/man (fixes #620665)
 * Add Finnish translation

Gaupol 0.16.2
=============

 * Fix "Quit" and Close All" to ask to save unsaved changes
 * Update Russian translation (Алекс)
 * Update Hungarian translation (Andrássy László)
2010-07-21 11:29:37 +00:00
drochner
ef9b751a07 +usbprog 2010-07-21 11:27:36 +00:00
drochner
f110ee212a add usbprog-0.2.0, a tool to load firmware onto the "usbprog"
programming adapter
2010-07-21 11:25:42 +00:00
drochner
b3e0ef397c update to 0.8.7
changes:
* Implement cumulative histograms
* Make histogram able to use raw data
* Implement equations rotation
2010-07-20 12:12:39 +00:00
sbd
d823d74afa Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
drochner
7e1927a025 update to 2.30.1
This switches to the gnome-2.30 release branch.
2010-07-13 13:27:39 +00:00
markd
d4e3012e50 Not MAKE_JOBS safe. Noted by matthew green 2010-07-10 22:14:08 +00:00
drochner
649db0265f update to 2.30.0
This switches to the gnome-2.30 release branch.
2010-07-06 15:37:51 +00:00
markd
b1a20e5a84 Update to KDE SC 4.4.5.
Several bugs in encoding and refreshing in Konsole have been fixed
A couple of crashes in Okular's PDF viewer have been fixed
Alarms have received some fixes in KDE PIM
The changelog lists more, if not all improvements since KDE SC 4.4.4.
2010-07-04 11:02:32 +00:00
wiz
c87cbf9cbc Improve patch after discussion with upstream. 2010-06-20 16:46:24 +00:00
wiz
7f24cae207 Add bug report URL. 2010-06-20 15:05:43 +00:00
drochner
0c70f584c4 python/application.mk should be .included before needed Python extensions 2010-06-16 17:20:27 +00:00
joerg
d69a97f476 Use the tools framework for bison and unzip. 2010-06-15 22:19:15 +00:00
drochner
a8f69840c5 update to 2.30.1
This switches to the gnome-2.30 release branch
2010-06-15 21:24:14 +00:00
drochner
abb67825d0 update to 0.8.5
changes: minor fixes
2010-06-15 21:12:39 +00:00
bad
ecd4f0cf4b Update openoffice3-bin to 3.2.1.
Bugfixes only. Including fixes for
CVE-2010-0395: A security vulnerability in OpenOffice.org, related to python
	scripting, may lead to unexpected code execution.
CVE-2009-3555: OpenOffice.org 2 and 3 may be affected by the TLS/SSL
	Renegotiation Issue in 3rd Party Libraries.

The release notes at http://development.openoffice.org/releases/3.2.1.html
are not extremely difficult to summarize sensibly.
2010-06-15 16:48:19 +00:00
wiz
b72f1fdb13 Update to 0.1.4:
0.1.4
 - Remove function decls without body introduced in 0.1.3
 - Add functions to check for provider services (parts of the api they implement)
 - Make adding, disabling and removing default providers possible (so we can have other
 providers than openDesktop.org)
2010-06-15 12:03:16 +00:00
wiz
f9a941770f Update to 2.1pre8:
JBidwatcher 2.1pre8

* Bugs fixed
     * Searches (including Get My eBay Items) work again
     * Fixed a failure to start the internal web server if you shut it down and tried to restart it
     * Auctions with Buy It Now and Fixed Price listings are once again distinct
     * For many users JBidwatcher was failing to save configuration settings during shutdown
     * Make displayed bid values more consistent, and try to reduce the number of `null' prices that are displayed.
     * When deleting rows, sometimes they would be replaced with `*' and would cause all kinds of problems until you shut down and restarted JBidwatcher. This should
       be resolved.

JBidwatcher 2.1pre7

* Bugs fixed
     * Sniping works again for users who have time sync disabled, or are bidding on items that aren't on eBay US. That was a bad one. :(
     * Don't show auction listings as fixed price listings when they have a `Quantity' field in the item details.
     * Sellers and high bidder names are now parsed correctly after eBay's recent changes.
     * If you customize your selection color as per the FAQ, it wasn't being used anymore. It works again.
     * Private listings are recognized again.
     * Don't take up as much disk space with the database log
     * On the Mac, JBidwatcher would start up with a fresh database, without any of the previous listings in it. Unfortunately, if 2.1pre6 was the first version you've
       run, 2.1pre7 will appear to cause that problem. :(
     * For Mac users using the disk image (.dmg) version, future updates should upgrade cleaner as the app name no longer includes the version number. Also using the
       https site for Sparkle updates.
* Small features and improvements
     * More consistent synchronization with My JBidwatcher, including thumbnails, and entirely ignoring it if the user hasn't set it up.
     * Added the number of watchers, and promptly removed it as eBay made the data unavailable anonymously
     * Click the user info area to shrink it if you're having display issues (flickering, half-visible, etc.)
2010-06-15 11:43:49 +00:00
wiz
ef537739dd Update to 0.16.1:
* Add support for a variant of the TMPlayer format with two-digit
   hours, i.e. time strings of form HH:MM:SS:
 * Fix cropped close icons on tabs
 * Fix AttributeError related to locale functions on Windows
 * Fix launching web browser on Windows
 * Clarify dependencies of aeidon and gaupol in README.aeidon
 * Add Russian translation (Алекс)
2010-06-15 09:17:20 +00:00
wiz
e8d8834f6a Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
2010-06-13 22:43:46 +00:00
wiz
d09ca3b3f1 Add perl to tools so pod2man is available during the build. 2010-06-13 22:15:30 +00:00
drochner
7c31ea0318 update to 0.10.5
changes:
-fixes
-startup speed increase
pkgsrc change: added data for C/2009 R1 (McNaught) which should be
 visible these days
2010-06-10 18:20:03 +00:00
wiz
4041b5d068 Note bug report for SUBST_* workaround. 2010-06-05 23:55:39 +00:00
wiz
a296f59904 Update to 0.16:
Gaupol 0.16
===========

 * Split general-purpose, user-interface-independent subtitle editing
   code to a separate Python package called 'aeidon' while keeping the
   GTK+ user interface code under the package 'gaupol'. Allow
   installation of these two packages separate of one another.
   Developers and packagers are encouraged to read './setup.py --help'
   message and the file 'README.aeidon'. (Fixes #595809 and should
   allow fixing the likes of Debian bug #569983.)
 * Save menu item keybindings to a GtkAccelMap rc-file in the user's
   configuration directory
 * Have the interactive search look for times instead of subtitle
   numbers if the search string contains a colon (fixes #609176)
 * Add miscellaneous Latin common error corrections patterns
 * Add help menu item to browse wiki documentation at
   http://live.gnome.org/Gaupol
 * Increase size of line length superscripts shown in list cells
 * Fix focus changing when pasting subtitles
 * Use gtk.RecentAction for recent file menus (fixes #615372 and
   probably #608951)
 * Work around a subprocess error launching video player on Windows
   systems, which resulted in "TypeError: environment can only contain
   strings" (fixes #605805)
 * Fix handling of Unicode BOMs that broke as a result of a hasty fix
   for subtitle file reading functions for 0.15.1
 * Fix hearing impaired text removal pattern "Speaker before a colon"
   to not remove too much (fixes #618529)
 * Apply GNOME Goal: Correct Desktop Files
 * Migrate from Glade to GtkBuilder
 * Use attributes instead of markup in GtkBuilder files
 * Fix GtkBuilder constructed buttons to respect user preferences
   regarding whether or not to show icons in buttons
 * Use Python's JSON module instead of ConfigObj and Validate for
   reading and writing configuration files
 * Use enchant's user spell-check dictionaries (usually stored in
   $HOME/.config/enchant) instead gaupol-specific ones
 * Use copies of iso-codes XML files shipped with gaupol only as a
   fallback if they are not found under /usr/share/xml/iso-codes
 * Add global options --with-iso-codes and --without-iso-codes to
   setup.py to control whether or not to install iso-codes XML files
   (This means that packagers can use --without-iso-codes and mark the
   iso-codes package as a hard dependency to avoid duplicate files)
 * Probably fix i18n issues with Unicode ellipses of menu items
 * Fix i18n issues with locale codes and their fallbacks used in
   pattern files for 'Name' and 'Description' fields
 * Raise Python dependency to 2.6
 * Raise PyGTK dependency to 2.16
 * Raise PyEnchant dependency to 1.4.0
2010-06-05 14:04:45 +00:00
tnn
e739c994da Let configure accept bdb 4.8. 2010-06-03 07:58:37 +00:00
adam
9d058a64ed Revision bump for db4 update 2010-06-02 13:25:53 +00:00
markd
0c9976ffdf Update to KDE SC 4.4.4
* Several bugs in filename sorting in the Dolphin file manager have been
  fixed
* Issues with encoded filenames in ZIP archives have been fixed
* A number of bugs in games, such as KMines, KNetwalk and LSkat and
  KSpaceDuel have been fixed
The changelog lists more
2010-06-02 10:14:14 +00:00
joerg
8026b8e26c Sadly, not MAKE_JOBS_SAFE. 2010-05-29 08:04:17 +00:00
drochner
2e125aa7f2 update to 0.8.3
changes:
-Improve probability plots
-Use markup for graph tips
-bugfixes
2010-05-17 16:25:43 +00:00
heinz
4784f49977 Updated to version 2.23.0
Pkgsrc changes:
  - none

Changes since version 2.22.0:
=============================
2010-05-15
	* 2.23.0 released
	* Fixed -m option (thanks, deadolus!)

2010-05-14
	* Fixed bug 3001249: bid history parsing bug
2010-05-16 15:05:07 +00:00
obache
d48a2970c5 LICENSE=ruby-license 2010-05-16 12:19:11 +00:00
obache
e8e232b3ff Note commented out LICENSE (Ruby's). 2010-05-15 23:59:59 +00:00
adam
e6cf600156 Revision bump after updating boost-libs to 1.43.0 2010-05-15 07:28:08 +00:00
markd
5f15c1e399 Update to KDE SC 4.4.3
Numerous fixes in Konsole, KDE's terminal emulator, among them two possible
crashers in session management
Flash plugin support in KHTML has been enhanced to work with newest Youtube
skins
Case-sensitivity in renaming fixes in KIO, KDE's network-transparent I/O
library
Hiding the mouse cursor in some special cases in presentation mode and two
possible crashers have been fixed
2010-05-08 22:13:56 +00:00
jmmv
9a786011ff Bump PKGREVISION to reflect the recent change in pkginstall/shells to use
etcutils to update /etc/shells.
2010-05-07 12:02:43 +00:00
tonnerre
abad9711cb bbdb doesn't like jobs. 2010-05-06 06:06:47 +00:00
wiz
20429d62f4 Update to 0.1.3:
0.1.3
 - Add possibility to get Licenses from server
 - Add search for contents by username
 - Add convenience function to get list of download links and fix some related strings
 - Fix qt-only hasCredentials
 - Win and Mac compile/link fixes
 - Fix crash when multiple apps would use attica simultaneously: do not delete root component of qtplugins
2010-05-02 14:12:54 +00:00
wiz
16cd51f86d Update to 2.1pre6:
This update has been a long time in coming, and was spurred by some
recent eBay changes that broke drag'n'drop and searches. Other eBay
changes broke high-bidder recognition, and determining
whether a listing was an auction or a fixed price listing. This
should fix all of those, as well as several UI issues, especially
for Mac OS X Tiger users.

A great feature in the new version is thumbnail mode, which is
essentially a view of your listing that includes the thumbnail on
the same line as your auction information. It's been cleaned up
and made to look very nice. You can configure your columns to add
the Thumbnail column using the small '*' above the scroll bar on
the right, or under the Tab customization menu.

An overview of the features fixed for the new version are:

    * Bugs fixed
	  o Fix the blank-screen (but auctions are there, and only
	  visible when selected) on Mac OS X Tiger
	  o The newest forms of bad HTML found on eBay listings
	  shouldn't break the parser anymore
          o Don't mistake auctions for fixed price listings
          o Recognize eBay's new URL format.
          o Fix drag-and-drop on Linux (patch by Eric)
	  o Don't initiate sniping until the eBay time has been
	  loaded from the server
	  o If the pre-snipe had already fired (2 minutes before
	  the actual snipe), and you changed the snipe amount, it
	  would instantly place a bid for the amount you entered
	  as a snipe. This is fixed.
    * Small features and improvements
	  o Don't present a dialog message when cancelling a
	  multisnipe; events like that should just quietly obey.
	  o Reduce the number of unimportant exceptions that show
	  in the log file
          o Provide the ability to easily submit error logs
          o Improve the integration with My JBidwatcher
          o Improve high bidder recognition substantially
	  o Simplify tab save/restore handling, and apply a tab
	  ordering fix (patch from Andreas Stempfhuber).
	  o Added a patch from mickle_ak which should improve
	  corporate proxy support.
    * Features
          o Initial support for Gixen integration via My JBidwatcher
		+ This isn't complete, but it's getting close
	  o Deep improvements to the Thumbnail view and taking the
	  Mac UI improvements and applying them everywhere, including
	  (I believe) a working implementation on Windows and Linux!
2010-05-02 13:42:52 +00:00
wiz
533fc04d17 Update to 1.1.20100428:
2010/04/28
	+ several improvements to configure script:
	  + modify CF_CURSES_TERM_H to handle cases such as cygwin where
	    packager has installed curses.h and term.h in different
	    directories, e.g., to wedge in a termcap library.
	  + modify CF_XOPEN_SOURCE, adding special case for OpenSolaris
	  + modify CF_MAKE_TAGS to add check for exctags and exetags, prefer to
	    ctags and etags to work around pkgsrc (NetBSD) renaming.
	  + correct CF_FIND_LINKAGE, setting cache variable for library_file in
	    the special case where no directory search is made.
	  + improve CF_GCC_VERSION, suppress stderr for c89 alias of gcc.
	  + improve CF_GCC_WARNINGS, moving -W and -Wall into the list to
	    check, since c89 alias for gcc complains about these options.
	  + modify CF_HEADER_PATH, to not search for variations of everything
	    in the current include-path
	  + use "mkdir -p", remove mkdirs.sh
	  + use CF_CURSES_HEADER to fill in possible subdirectory used for
	    ncurses header filename.
	  + modify CF_XOPEN_CURSES to work around current ncurse header loss of
	    predefinition of _XOPEN_SOURCE_EXTENDED
	  + add "--disable-rpath-hack" option, along with scripting to add
	    rpath option to libraries found in unusual places.
	+ modify pause widget to autosize like gauge, and to omit the area for
	  buttons when none are displayed.
	+ fix an infinite loop in dlg_button_layout() if there are no buttons
	  to display (Debian #579390).
	+ add makefile rules for generating html, etc., documentation from
	  nroff.
	> patches by Samuel Mart
	+ reset errors in tailbox before reading new character.
	+ modify dlg_draw_scrollbar(), omitting hiding percentages in boxes
	  when no arrows or scrollbar are needed.
	+ correct value of row for scrollbars in formbox.
	+ update es.po from
		http://translationproject.org/latest/dialog/
2010-05-02 13:40:22 +00:00
wiz
67f7f25246 Update to 5.2:
2010-04-26 tim <gyunaev@ulduzsoft.com>
    - 5.2 RELEASE
    - Fixed missing images on CHM files under Windows XP SP3;
    - Fixed viewing CHM files which embed links to other CHM files;

2010-04-23 tim <gyunaev@ulduzsoft.com>
    - Fixed window icon (thanks Aaron Lewis)
    - Fixed typos in README and FAQ (thanks Martin 'Cheese' Lee)
    - Fixed errors while building index because 'keyword' was ignored (thanks ivg)
    - Switched to use new cross-compiler from http://mingw-cross-env.nongnu.org/ to create Windows builds

2009-12-17 tim <gyunaev@ulduzsoft.com>
    - 5.1 RELEASE
    - Trying to use non-normalized URL first to fix CHMs which use them in TOC/Index

2009-12-16 tim <gyunaev@ulduzsoft.com>
    - Fixed application settings storage.
    - Fixed bookmark edit button.
    - Version changed to 5.1
2010-05-02 11:29:23 +00:00
wiz
f8c7730652 Update to 0.15.1, set LICENSE.
* Fix complete breakage of opening subtitle files due to a change in
   newline handling of codecs.open in Python 2.6.5
 * Use existing subtitle file mime-types instead of text/plain when
   adding files to the recent files database
 * Add German translation (Chris Leick)
 * Add Hungarian translation (László Andrássy)
2010-05-02 11:03:13 +00:00
seb
88ae0a6c29 Add & enable p5-Vroom 2010-04-28 22:30:24 +00:00
seb
0d42839cb1 Initial import of p5-Vroom version 0.21 in the NetBSD Packages
Collection.

Ever given a Slide Show and needed to switch over to Vim?  Now you
don't ever have to switch again. You're already there.  Vroom lets
you create your slides in a single file using a Wiki-like style,
much like Spork and Sporx do. The difference is that your slides
don't compile to HTML or JavaScript or XUL. They get turned into a
set of files that begin with '0', like '03' or '07c' or '05b.pl'.
The slides are named in alphabetic order. That means you can bring
them all into a Vim session with the command: vim 0*. vroom --vroom
does exactly that.
2010-04-28 22:30:04 +00:00
drochner
d86019b825 update to 0.8.2
changes:
-improve canvas
-bugfixes
2010-04-28 18:34:22 +00:00
obache
08a0baf224 Update m17n-db to 1.6.1.
* Changes in the m17n database 1.6.1

** This release is just for a minor bug fix.
2010-04-19 13:55:50 +00:00
agc
0b6c319d2a catch up with newer libtool which now demands a --tag=CC 2010-04-17 21:00:33 +00:00
gson
1c14611b31 Update misc/py-anita to 1.11. Change since 1.10:
Remove '-serial stdio' from qemu argument list.  It's not actually
needed when the '-nographic' option is present, and it confuses
qemu 0.12.
2010-04-13 12:22:27 +00:00
gson
5602d3347c Update misc/py-anita to 1.10. Changes since 1.9:
Deal with recent sysinst changes: sysinst no longer displays a dialog
to select the CD-ROM device path, etc.

New command line option "--qemu-args".

Anita no longer passes the "-no-acpi" option to qemu by default,
because the ACPI case now works with -current, and disabling
ACPI triggers other bugs.  See PR port-i386/42681 for more details.
2010-04-10 18:33:46 +00:00
markd
0bcf1e9f16 include kde4/kde4.mk so that qmake is found and possible other settings
set correctly.
2010-04-10 02:54:35 +00:00
markd
24c82a1fd6 Update KDE to 4.4.2
For 4.4.0 major new technologies have been introduced, including social
networking and online collaboration features, a new netbook-oriented
interface and infrastructural innovations such as the KAuth authentication
framework. According to KDE's bug-tracking system, 7293 bugs have been
fixed and 1433 new feature requests were implemented.

KDE SC 4.4.1 has a number of improvements:
 A performance problem in KMail when sending emails has been fixed
 Various fixes in Plasma widgets and other addons, such as the analog clock
  and the picture frame
 A number of fixes in Konsole, KDE's powerful terminal application

KDE SC 4.4.2 has a number of improvements:
 Possible crashes in Plasma, Dolphin and Okular have been fixed
 The Microblog applet now shows the correct time in the timeline
 The audioplayer KRunner plugin has been fixed to not freeze the KRunner UI
  anymore
2010-04-10 02:45:02 +00:00
markd
13495f92b4 Add attica 2010-04-09 23:45:09 +00:00
markd
e36661dad2 Import attica-0.1.2
Attica is a Qt library that implements the Open Collaboration Services
API version 1.4. The REST API is defined here:
 http://www.freedesktop.org/wiki/Specifications/open-collaboration-services

It grants easy access to the services such as querying information
about persons and contents. The library is used in KNewStuff3 as content
provider. In order to integrate with KDE's Plasma Desktop, a platform
plugin exists in kdebase.
2010-04-09 23:43:12 +00:00
obache
4343638272 Update m17n-contrib to 1.1.11.
* Changes in the m17n-contrib 1.1.11

** New input method:

ii-phonetic.mim (Yi)
si-sumihiri.mim (Sinhala)
yi-yivo.mim (Yiddish)
ath-phonetic.mim (Eastern Cree/Carrier)
bla-phonetic.mim (Eastern Cree/Blackfoot)
cr-western.mim (Western Cree dialects)
iu-phonetic.mim (Inuktitut)
nsk-phonetic.mim (Eastern Cree/Naskapi)
oj-phonetic.mim (Ojibwe)
2010-04-09 01:49:36 +00:00
obache
44eac2b253 Update m17n-db to 1.6.0.
* Changes in the m17n database 1.6.0

** An input method is deleted.

si-wijesekera-preedit.mim

** New FLT files are added.

FLT/MLM2-OTF.flt, FLT/KND2-OTF.flt, FLT/TEL2-OTF.flt,
FLT/TML2-OTF.flt, FLT/ORY2-OTF.flt, FLT/GJR2-OTF.flt,
FLT/GUR2-OTF.flt, FLT/BNG2-OTF.flt, FLT/DEV2-OTF.flt,
FLT/MYMR-SIL.flt
2010-04-09 01:47:30 +00:00
joerg
a12b372846 Catch up with moved location. 2010-04-07 18:04:46 +00:00
joerg
e8ea037089 Catch up with xscreensaver 2010-04-07 17:52:04 +00:00
wiz
2843c83384 Pass in DO_ICONV_CAST on Solaris and NetBSD instead of incorrect
patch. Noted by Alexander Polakov in PR 43113.
2010-04-05 18:50:48 +00:00
asau
00708ce7e3 Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
jdolecek
067d0e94bc remove misc/php-intl in favor of textproc/php-intl (which supports both
PHP 5.2.* and PHP 5.3.*)
2010-03-21 17:06:06 +00:00
wiz
a51384412a Add py-imaging dependency, bump PKGREVISION.
Noted by Dennis den Brok.
2010-03-20 12:37:17 +00:00
sno
2ab1e50256 Updating misc/p5-Locale-Maketext-Lexicon from 0.77 to 0.79
pkgsrc changes:
- Add license definition

Upstream changes:
[Changes for 0.79 - 2010-03-02]
 * Locale::Maketext::Lexicon::Tie
    - Removed a deprecated use of "defined %" for Perl 5.11+

[Changes for 0.78 - 2010-02-23]
 * Locale::Maketext::Lexicon
    - Removed a deprecated use of "defined %" for Perl 5.11+
2010-03-16 22:55:46 +00:00
taca
8d2496e724 misc/php-mbstring moved to converters/php-mbstring. 2010-03-16 16:09:32 +00:00
taca
0a789d0ec9 misc/php-calendar has moved to time/php-calendar. 2010-03-16 16:08:16 +00:00
tnn
40234ac27f fix build after xulrunner-1.9.2.2 update 2010-03-16 15:58:54 +00:00
taca
7724c3d24e Add and enable php-intl. 2010-03-16 15:40:21 +00:00
taca
b4687d56d6 Importing misc/php-intl package 5.3.2 which contained in PHP 5.3.2.
PHP is a programming language designed to be embedded into web pages.
This module provides support for internationalization.
2010-03-16 15:39:10 +00:00
taca
b06fc2f3a9 Remove entry for php-calendar and php-mbstring. 2010-03-16 15:20:37 +00:00
taca
482a2c0370 * Remove USE_PHP_EXT_PATCHES since there is no patch for php-mbstring package.
* Fix COMMENT it isn't Japanese only.

Bump PKGREVISION.
2010-03-16 13:50:34 +00:00
sno
2aaf39dbdb Updating misc/p5-App-MrShell from 2.0205 to 2.0207
Upstream changes:
2.0207: Fri Jan 08 2010
   - Dennis Boone was kind enough to not only point out a serious
     bug in the ssh command token processing, but find and fix
     it (http://is.gd/5UxgX).  Thanks!!

2.0205: Wed Jul 08 2009
   - Doc bugs (very indirectly) found by Hans Dieter Pearcey
   - added perl critic and Test::Pod
   - fix bugs (as in wrongful code execution) found by critic.t
   - fixed many punctuation problems found by critic.t
2010-03-16 10:08:22 +00:00
wiz
b33d28c8b5 Remove xtide, moved to time. 2010-03-14 16:40:11 +00:00
wiz
589ae09e97 Remove kseg, moved to math/ 2010-03-14 16:37:45 +00:00
wiz
8df774611d Remove packages that were reimported to geography/ 2010-03-14 16:33:03 +00:00
wiz
024b97c798 Fix path to proj after its reimport. 2010-03-14 16:32:15 +00:00
morr
f6bb16f684 + bsdstats 2010-03-12 00:17:46 +00:00
morr
42ec8a63f2 BSD-Stats is collecting statistics about *BSD installations (and flavours).
PR pkg/35365
2010-03-12 00:13:40 +00:00
adam
95d484a7a4 Changes 0.10.4:
* Bug fix release.
* Fixed unpredictable openGL related crashes on win32.
* Fixed run on MacOSX Tiger/Leopard/Snow Leopard.
* Disable OpenGL shaders by default for stars and atmosphere. User activate
  it by setting use_glshaders = true in the [main] section of the config.ini
* Fixed the handling of the Qt -graphicssystem parameter. Now it is ignored
  if it is not used properly.
* Improved OpenGLES2 support (not finished yet).
* Added Qt widgets flags on the main windows to avoid filling background
  (this boosted the program a lot on linux).
2010-03-11 11:15:17 +00:00
sno
124b32d841 Updating misc/p5-Business-CreditCard from 0.30nb1 to 0.31
pkgsrc changes:
- Add license definition
- Remove files/Makefile.PL (is as good as upstream one)
- Explicitely tell, that no compiler is required

Upstream changes:
0.31  Mon Oct 19 18:51:35 PDT 2009
        - Add LICENSE section to POD documentation
        - Add META.yml to MANIFEST
        - Add Irish Laser card, thanks to Eoin Redmond for the heads-up.
        - Add documentation on what this module *is* and *is NOT* about.
        - Spelling fix in docs
        - correct misdocumentation of $Business::CreditCard::Country
        - Move test.pl to test/t and change to using Test::More, modify
          MANIFEST and Makefile.PL accordingly (thanks to Alexander Ciornii)
        - Silence unwanted warnings (thanks to Alexander Ciornii)
        - Discover cards starting with 644-649 are now recognized
        - Most Diner's Club cards (300-305, 3095 and 36) now processed as
          Discover
        - China Union pay now includes 624-626 and 628 in addition to 622 (and
          still identified as Discover outside China)
        - JCB identified as Discover in the US
2010-03-10 18:20:16 +00:00
sno
33edb07521 Updating misc/p5-Locale-Codes from 2.07nb1 to 3.11
pkgsrc changes:
- Add license definition

Upstream changes:
3.11  2010-03-01 sbeck
	* NEW CODE(s)
	* Added the IANA domain names to Country
	* Fixed a problem that produced warnings with perl 5.11.5.
		Jerry D. Hedden
	*

3.10  2010-02-18 sbeck
	* Moved support files into the Locale::Codes namespace.
	* The work done in each of the Locale::XXX modules was
		virtually identical to each other. It has all
		been moved to a central module and the
		Locale::XXX moduels are now just wrappers.
	* The XXX_code2code functions would return undef if the
		same codeset were passed in for both the 2nd and
		3rd arguments. This doesn't make sense and has
		been changed.
	* Added all semi-private routines (except for the
		couple that were already present):
			rename_XXX
			add_XXX
			delete_XXX
			add_XXX_alias
			delete_XXX_alias
			rename_XXX_code
			add_XXX_code_alias
			delete_XXX_code_alias
	* Added "UK" alias. Steve Hay

3.01  2010-02-15 sbeck
	* Fixed Makefile.PL and Build.PL to install as core
		modules.

3.00  2010-02-10 sbeck
	* Took over maintenance of the code
	* All codes and country names come from the official
		standards
	* code2country now returns the name of the country specified
	        in the standard (if the different standards refer
	        to the country by different variations in the name,
	        the results will differe based on the CODESET)
	* Added code sets
		FIPS 10 country codes
		Alpha-3 and Term language codes
		Numeric currency codes
	* The rename_country funcion from 2.07 would guess the
		CODESET (unlike all other functions which used
		a default of LOCALE_CODE_ALPHA_2). The guess can
		cause problems since (with the addition of FIPS)
		codes may appear in different codesets for different
		countries. The behavior has been changed to be
		the same as other functions (default to
		LOCALE_CODE_ALPHA_2).
	* Dropped support for _alias_code
	* Added language_code2code, currency_code2code
2010-03-08 18:15:51 +00:00
zafer
e93211dccf remove dead mirror 2010-03-07 15:13:37 +00:00
wiz
01965b145a Update minimum requirements per README. 2010-03-07 08:56:55 +00:00
wiz
3526f2cabe Update to 0.15:
Gaupol 0.15
===========

 * Add text correction task to split joined words or to join split
   words using spell-check suggestions (#572667)
 * Show duration in time mode as seconds
 * Merge Latin and French common error text correction patterns from
   subtitleeditor (kitone)
 * Allow pasting times with comma as a decimal separator (#580339)
 * Allow bookmarks to be added or removed by double-clicking or
   pressing enter in the bookmark column (#580346)
 * Add validation for character encoding given as an argument on the
   command line using the '-e' option
 * Fix handling of Unicode BOMs (#568906)
 * Add UTF-8-SIG character encoding for opening and saving files
   with a UTF-8 signature/BOM
 * Fix incorrect handling of common error patterns that at worst
   caused gaupol to hang due to an eternal loop (#581003)
 * Abort installation if an intltool-merge or msgfmt call fails
 * Add messages for raised exceptions

Gaupol 0.14
===========

 * Add an extension system (documentation to follow later)
 * Add two extensions: side pane and bookmarks
 * Adher to the home directory part of freedesktop.org's
   XDG Base Directory Specification
 * Handle reading and writing files with a UTF-8 BOM (#556956)
 * Save SSA and ASS files with '\N' linebreaks instead of '\n'
 * Resize columns after running text corrections
 * Make removing a large amount of subtitles significantly faster
 * Fix GtkWarning: GtkSpinButton: setting an adjustment with
   non-zero page size is deprecated
 * Remove deprecated Encoding-field from desktop file
 * Fix search dialog to not modify obsolete data (#572676)
 * Fix character count error with Unicode text
 * Fix updating of filenames in the projects menu
 * Fix erroneous cleaning of SubRip markup after removing hearing
   impaired subtitles
 * Fix open dialog file filter to list files with upper- and mixed
   case extensions as well
 * Fix AssertionError when installing multiple times
 * Switch version-control systems from subversion to git
2010-03-07 08:55:45 +00:00
wiz
1caefbef29 Do not accept xulrunner 1.9.2.2pre or newer, it comes without npapi.h. 2010-03-05 14:30:01 +00:00
gdt
78054ddba4 homepage moved to osgeo 2010-03-04 01:42:18 +00:00
bad
df0abfcc8d Replace list of accepted JVMs with a set that is available through pkgsrc.
Not tested yet.

Should fix PR pkgsrc/42916.
2010-03-03 21:39:49 +00:00
bad
152809551c Update openoffice3-bin to 3.2.0.
Changes since 3.1.2 are:
- security fixes
- improved MS Office compatibility
- faster startup times

For a more detailed list read http://www.openoffice.org/dev_docs/features/3.2/
2010-03-02 22:57:03 +00:00
drochner
b15f1cca5e first attempt to make this DESTDIR ready and to update it to a
newer version (5.26, the current production version).
The pkg builds and the result starts up and can do simple operations,
but there are strange errors if I try scripts which used to work
two years ago (mostly array size check related).
The biggest problem is that the pkg needs a fortran compiler
which supports the LOC() function. f2c doesn't, the cheapest way
I found is to depend on pkgsrc/lang/gcc3-f77. This needs to be done
cleaner.
2010-02-26 10:56:38 +00:00
wiz
aeaceb273d Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
joerg
bcc71ffe11 Clean up linker invocation to not just work by pure luck. 2010-02-25 18:23:45 +00:00
joerg
6e39f973df Reset maintainer, mail bounces. 2010-02-25 15:03:36 +00:00
wiz
37c7528b49 Remove files that do not belong here. Bump PKGREVISION. 2010-02-25 14:30:23 +00:00
drochner
35ffbdd612 this needs terminfo, so it might need ncurses to provide it 2010-02-23 10:56:04 +00:00
drochner
ab1cd1e48b this doesn't need ncurses, at least on NetBSD
bump PKGREVISION
2010-02-22 19:07:41 +00:00
obache
a993a272dc Subserve last jump update from 4.3.20 to 4.9.5 without note of notable changes.
* add missing PLIST entries.
* need termcap library.
* exactly disable transition script, resolve conflicts with scmgit-* packages
  ("git" command was renamed to "gitfm" in version 4.9.2,
    and "git" command is just a transitional script now.
    it also notate git-scm command, but not fit to pkgsrc's devel/scmgit).
* skip lib/charset.alias, suggested by joreg.
* set LICENSE=gnu-gpl-v3
* marked as user-destdir support
* some pkglint clean.
Bump PKGREVISION.
XXX: this package should be renamed to "gnuit"?
2010-02-22 09:15:56 +00:00
obache
210274fd84 INFO_FILES should be set to "YES". 2010-02-21 12:24:59 +00:00
joerg
e332b0c0d7 Be explicit about suid root. Fix unprivileged build. 2010-02-19 14:16:31 +00:00
drochner
bc16ac504a +goffice0.8 2010-02-18 21:05:32 +00:00
drochner
603623f237 add goffice0.8-0.8.0, a new release branch of that library 2010-02-18 20:48:56 +00:00
wiz
7a71dd8b72 Pick up maintainership. 2010-02-15 15:09:28 +00:00
wiz
747fdd28b3 Update to 2.2:
Features

    * Enabled KOrganizer integration for adding loans to calendar
      (kdepimlibs required).
    * Enabled KAddressBook integration for adding borrowers from
      the address book (kdepimlibs required).
    * Improved performance for modifying many entries at once.
    * Added data source for Giant Bomb.
    * Added data source for The Movie DB.
    * Updated CrossRef data source to allow authentication via
      email only (Bug #224619).
    * Added option for disabling webcam support.

Bug Fixes

    * Fixed some hyphenation issues for 978 ISBN values.
    * Fixed bug in en_GB translation that affected file selection.
    * Fixed adding "link-only" files (Bug #220645).
    * Fixed Discogs track download and title search.
    * Fixed setting correct permissions of backup file (Bug #219259).
    * Fixed formatting of multiple people with auto-formatting (Bug #219268).
    * Fixed updating from Amazon to include book title or album
      title in search.
    * Fixed crashing bug for sorting during HTML export.
    * Fixed multiple selection in entry view (Bug #216122).
2010-02-15 15:08:59 +00:00
wiz
34bdf08d1c + tellico-kde3. 2010-02-15 14:55:00 +00:00
wiz
e148fbe8b7 Remove options.mk, leftover from KDE3 version. 2010-02-15 14:54:22 +00:00
wiz
a95715de0b Update to 2.1.1nb3, the KDE4 version.
Lots of changes since KDE3, check it out!
2010-02-15 14:53:43 +00:00
wiz
28b5d72270 Reimport tellico as tellico-kde3. 2010-02-15 14:52:45 +00:00
wiz
c5435da3c0 Add .include "../../sysutils/desktop-file-utils/desktopdb.mk"
Bump PKGREVISION.
2010-02-15 14:52:00 +00:00
tnn
1f72f364a2 Merge GNOME git commit a5588114ed94d00ca64913aa5b248e09a5e13edc.
Fixes compatibility issues with xulrunner-1.9.2.
2010-02-13 12:26:15 +00:00
wiz
4388cc1944 Fix PLIST for xscreensaver-5.10 and depend on it
Bump PKGREVISION.
2010-02-12 23:05:03 +00:00
joerg
83d821de85 DESTDIR support 2010-02-11 19:30:01 +00:00
joerg
a74199ae33 DESTDIR support. Needs full libXt dependency. Bump revision. 2010-02-11 19:29:38 +00:00
joerg
f839f23a52 DESTDIR support 2010-02-11 19:20:55 +00:00
joerg
ff9f8929e9 DESTDIR support 2010-02-11 19:17:06 +00:00
joerg
5cc639072f DESTDIr support 2010-02-11 19:14:19 +00:00
joerg
15440c36cd DESTDIR support 2010-02-11 19:07:56 +00:00
joerg
550ea27f09 DESTDIR support 2010-02-11 19:02:01 +00:00
joerg
4f486c7829 DESTDIR support 2010-02-11 18:58:46 +00:00
joerg
3a06eb96bf Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
obache
e3a3ced090 Some improvements:
* set LICENSE=gnu-gpl-v2
* add user-destdir support
* reset WRKSRC setting, use CONFIGURE_DIRS instead,
  so that pkgsrc magick affect to all files
* regen patches, split out patch-ad from patch-ac
  (one patch file to multiple files is not good).
* need termcap to build.
2010-02-10 10:43:28 +00:00
obache
0a53a46617 sort 2010-02-10 10:36:00 +00:00
zafer
cd0de6d181 update master_sites 2010-02-07 18:41:54 +00:00
martin
d19d2ed8b5 Simplify (I accidently reverted parts of joergs changes and solve the
same problem differently - undo that now). No visible change.
2010-02-05 19:36:16 +00:00
martin
04a2aa2e13 Update to version 1.10 2010-02-05 15:27:27 +00:00
martin
f701177bef update to open2300 1.10 2010-02-05 15:26:15 +00:00
wiz
f1b3168c58 Update to 20091229: 4 more months of data. 2010-02-05 12:59:46 +00:00
joerg
9b5d43d667 DESTDIR support 2010-02-04 17:29:59 +00:00
joerg
399649a194 DESTDIR support 2010-02-04 17:19:34 +00:00
joerg
d7c411df8a DESTDIR support 2010-02-04 17:09:09 +00:00
joerg
cb8dd2bd84 DESTDIR support 2010-02-04 16:56:24 +00:00
joerg
7d3c9ae25f DESTDIR ready 2010-02-04 16:53:14 +00:00
joerg
bc31f6970e DESTDIR support 2010-02-04 16:50:32 +00:00
joerg
3ea90bd8d4 DESTDIR ready 2010-02-04 16:47:54 +00:00
joerg
173de87a45 DESTDIR support 2010-02-04 16:47:05 +00:00
joerg
0969cbb641 DESTDIR ready 2010-02-04 16:45:50 +00:00
joerg
4738a3350a DESTDIR support 2010-02-04 16:44:27 +00:00
joerg
1cfc503d56 DESTDIR support 2010-02-04 16:15:14 +00:00
wiz
b26e83ee5c Bump revision for yaz ABI depends bump. 2010-02-04 11:22:29 +00:00
dholland
250e7d7a12 destdir support 2010-02-04 05:08:12 +00:00