summaryrefslogtreecommitdiff
path: root/misc
AgeCommit message (Collapse)AuthorFilesLines
2011-02-25Pullup ticket #3364 - requested by tacatron4-75/+3
misc/rubygems: build fix Revisions pulled up: - misc/rubygems/Makefile 1.36 - misc/rubygems/distinfo 1.27 - misc/rubygems/patches/patch-aq delete - misc/rubygems/patches/patch-ar delete --- Module Name: pkgsrc Committed By: taca Date: Wed Feb 23 10:32:24 UTC 2011 Modified Files: pkgsrc/misc/rubygems: Makefile distinfo Removed Files: pkgsrc/misc/rubygems/patches: patch-aq patch-ar Log Message: Remove patches to make a gemspec file's format compatible as before. Now latest ruby19-base package comes with gem supporting newer format, so no need to keep older. Shouold be fix build problem of newer rails3 related packages with ruby18-base. Bump PKGREVISION.
2011-01-10Fix build on DragonFly. PR#44351 from Peter Avalosmarkd2-1/+15
2011-01-10Fix build on DragonFly PR#44352 from Peter Avalosmarkd2-1/+20
2011-01-08add Dragonfly support, from Tony Young per PR pkg/44345drochner5-2/+235
2011-01-02Fixes build on DragonFly-2.8.2.obache2-11/+33
2011-01-02Fixes build on DragonFly-i386.obache2-1/+26
2010-12-31This package is using GNU Configure script.obache1-3/+2
Changed to GNU_CONFIGURE=yes so that pksrc hooks for GNU Configure will be invoked and fixes PR#44299.
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty5-10/+10
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-21Update to 1.3. Tested on NetBSD-current/amd64 and Mac OS X 10.6.jmmv4-36/+13
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-17Bump PKGREVISION from icu shlib major bump.obache4-7/+8
2010-12-15Update to 2.3.2:wiz2-6/+6
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-12Update to 0.8.12:wiz3-8/+14
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-12Update to 2.1.3:wiz2-6/+6
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-06Changes 0.10.6:adam6-22/+50
* 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-06Find recent libwpd, but remove koffice-libwpd option from the defaultmarkd4-8/+30
build as currently doesn't build against it. Bump PKGREVISION.
2010-12-06Update to KDE SC 4.5.4markd19-59/+56
4.5.4 brings bugfixes and translation updates
2010-12-04Update misc/py-anita to 1.18. Changes from 1.17:gson2-6/+6
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-04Update ruby-configuration pacakge to 1.2.0.taca3-7/+8
Changes are unknown.
2010-12-04Update ruby-columnize package to 0.3.2.taca3-10/+12
0.3.2 - Mostly Administrivia. * Add .gemspec, correct description field and add a summary. * Add Columnize::VERSION * Simplify Rakefile * Add stub Makefiles
2010-12-04Update ruby-bundler package to 1.0.7.taca3-9/+80
## 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-02Requires gdk-pixbuf2-xlib for gtk plugin. From PR 44178.dholland1-1/+2
2010-11-29update to 2.30.2drochner3-8/+8
changes: -minor fixes -translation updates
2010-11-28Fix PR 44163 by setting PREFIX correctly within the package. Whiledholland4-19/+43
here, add patch comments and remove pkglint. PKGREVISION -> 7.
2010-11-28update to 2.32.0drochner6-18/+21
This switches to the gnome-2.32 release branch.
2010-11-25Update misc/py-anita from 1.15 to 1.17. Changes:gson2-6/+6
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-25Bump PKGREVISION for libwpd shlib name change.wiz1-2/+2
2010-11-23Update to 2.1.2:wiz2-6/+6
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-23Update to 2.3.1:wiz3-8/+49
* 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-19add a "cups" options, default to on.mrg3-17/+31
2010-11-17committed previous from the wrong tree, we should only bl3 gdk-pixbuf2-xlibtnn2-3/+3
if the gtk2 option is enabled.
2010-11-17buildlink graphics/gdk-pixbuf2-xlib to fixtnn1-1/+2
configure: error: requirements to build the gtk-plugin not met.
2010-11-15PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnomeabs48-84/+96
2010-11-14Shlib major bumped from 3 to 4 at update of ImageMagick-6.6.4.1.obache2-4/+4
Bump ABI_DEPENDS (and recursive bump).
2010-11-10Make sure it uses the correct liblzmamarkd1-1/+3
2010-11-08update to 3.9.7:plunky2-6/+6
2010-10-28 : zyGrib Version 3.9.7 * Fix a supid bug (oops) : crash when create animation.
2010-11-03Update to KDE SC 4.5.3markd9-31/+34
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-01Reset maintainer.wiz4-8/+8
2010-10-28update to 3.9.6plunky2-6/+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-27Add a buildlink3.mkmarkd1-0/+13
2010-10-27hacks.mk was meant to go as part of the 4.5.2 update.markd1-4/+0
2010-10-25Update to KDE SC 4.5.2markd30-532/+1122
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-25Update to attica 0.2.0markd3-8/+17
- 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-20If installing icons to share/icons/gnome, depend on gnome-icon-theme.wiz1-1/+2
Bump PKGREVISION.
2010-10-16Update m17n-contrib to 1.1.12.obache3-7/+9
* Changes in the m17n-contrib 1.1.12 ** New input method: im/be-kbd.mim (Belarusian)
2010-10-16Update m17n-db to 1.6.2.obache3-7/+9
* Changes in the m17n database 1.6.2 ** New FLT file. FLT/HEBR-OTF.flt
2010-10-16update to zyGrib 3.9.4:plunky6-38/+67
# 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-03require some directories before installation.obache1-1/+3
2010-09-30Bump PKGREVISION by default mysql version changed from 5.0 to 5.1.obache1-1/+2
2010-09-29Force flush to be pipe-friendly (from ppower -m). Bump PKGREVISION.dsainty3-2/+20
2010-09-23Remove empty value of LICENSE.taca1-2/+1