summaryrefslogtreecommitdiff
path: root/x11/zenity
AgeCommit message (Collapse)AuthorFilesLines
2005-10-14Update to 2.12.1:jmmv3-25/+56
Zenity 2.12.1 ============== " One more " * Fixes bug #315020 * Fixes bug #317033 * New and updated translations - Inaki Larranaga [eu] - Clytie Siddall [vi] - Runa Bhattacharjee [bn] Zenity 2.12.0 ============== " G12 " * New and updated translations - Evandro Fernandes Giovanini [pt_BR] - Changwoo Ryu [ko] - Telsa Gwynne [cy] - Danilo ¿egan, Slobodan D. Sredojevic [sr, sr@Latn] - Priit Laes [et] - Ignacio Casal Quinteiro [gl] - Baris Cicek [tr] * New documentation translations - Vincent Untz [fr] Zenity 2.11.92 ============== " Muqueca " * New and updated translations - Christian Rose [sv] - ¿ygimantas Beru¿ka [lt] - Duarte Loreto [pt] - Kostas Papadimas [el] - Gabor Kelemen [hu] - Jordi Mallach [ca] - Mugurel Tudor [ro] - Maxim Dziumanenko [uk] * New documentation translations - Francisco Javier F. Serrador [es] - Maxim Dziumanenko [uk] Zenity 2.11.91 ============== " All we need is love! " * New and updated translations - Artur Flinta [pl] - Laursen Dhima [sq] - Hendrik Brandt [de] - Funda Wang [zh_CN] - Ilkka Tuohela [fi] - Chao-Hsiung Liao [zh_TW] Zenity 2.11.90 ============== " Almost there! " * gnome-doc-utils migration [Lucas] * New and updated translations - Vincent van Adrighem [nl] - Yair Hershkovitz [he] - Ivar Smolin [et] - Ankit Patel [gu] - Rostislav Raykov [bg] - Clytie Siddall [vi] - Kjartan Maraas [no, nb] - Ilkka Tuohela [fi] Zenity 2.11.1 ============= " All night long " * Several code cleanups [Benoît] * Activate GOption --help translations [Lucas] * Deactivate --help alias behavior [Lucas] * New and updated translations - Theppitak Karoonboonyanan [th] - Ivar Smolin [et] - Takeshi Aihana [ja] - Adam Weinberger [en_CA] - Jens Seidel [de] - Benoît Dejean [fr] - Francisco Javier F. Serrador [es] - Marcel Telka [sk] - Miloslav Trmac [cs] Zenity 2.11.0 ============= " Caruru is delicious! " * New --no-wrap option on info/error/warning/question dialogs [Lucas, Timo, Carlos] * Fix for #171838 [Carlos] * Some code improvements and cleanups [Glynn, Lucas] * Single/multiple selection on list dialogs [Lucas] * Double-clicking on list dialogs [Lucas, Norman] * Better error handling [Lucas] * --print-column option on List dialogs accepts a comma-separated list of column indexes [Lucas] * New --hide-column option on List dialogs [Lucas] * New and updated translations - Theppitak Karoonboonyanan [th] - Marcel Telka [sk] - Martin Hansen [da] - Ignacio Casal Quinteiro [gl] - Kjartan Maraas [nb, no] - Pawan Chitrakar [ne] - Kostas Papadimas [el] - Rajesh Ranjan [hi] - Vladimir Petkov [bg] - Francisco Javier F. Serrador [es] - Miloslav Trmac [cs] - Priit Laes [et] - Vincent van Adrighem [nl] - Gareth Owen [en_GB] - Abduxukur Abdurixit [ug] - Adi Attar [xh] - Steve Murphy [rw] - Josep Puigdemont [ca] - Adam Weinberger [en_CA] - Stefano Canepa [it] - Mugurel Tudor [ro]
2005-09-22Fix PLIST. Bump PKGREVISION.minskim2-2/+6
2005-08-21Update to 2.10.1: updated translations: en_CA, ca, rw, ug, et, it, gl, bg.jmmv2-6/+6
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam1-3/+2
file's sole purpose was to provide a dependency on pkg-config and set some environment variables. Instead, turn pkg-config into a "tool" in the tools framework, where the pkg-config wrapper automatically adds PKG_CONFIG_LIBDIR to the environment before invoking the real pkg-config. For all package Makefiles that included pkg-config/buildlink3.mk, remove that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz1-2/+2
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-23Removed trailing white-space.rillig1-1/+1
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-22Update to 2.10.0:jmmv3-8/+14
Zenity 2.10.0 ============= " 10 Moves Ahead " * New and updated translations - Kostas Papadimas [el] - Ahmad Riza H Nst [id] - Vincent van Adrighem [nl] - Danilo ¿egan [sr, sr@Latn] - Alessio Frusciante, Stefano Canepa [it] - Laszlo Dvornik, Gabor Kelemen [hu] - Abel Cheung [zh_TW, ar] Zenity 2.9.92 ============= " Perdition " * Fix a few leaks [Paolo, Glynn] * New and updated translations - Tommi Vainikainen [fi] - Leonid Kanter [ru] - Kjartan Maraas [nb, no] - Miloslav Trmac [cs] - Hendrik Richter [de] - Francisco Javier F. Serrador [es] - Jordi Mallach [ca] - Alexander Shopov, Vladimir Petkov [bg] - Duarte Loreto [pt] - ¿ygimantas Beru¿ka [lt] - Marcel Telka [sk] - Ole Laursen [da] - Priit Laes [et] - Benoît Dejean [fr] - Maxim Dziumanenko [uk] - Simos Xenitellis [es] - Laurent Dhima [sq] - Takeshi AIHANA [ja] - Changwoo Ryu [ko] - Raphael Higino [pt_BR] - Rhys Jones [cy] - Artur Flinta [pl] - Ankit Patel [gu] - Arafat Medini [ar] - Alessio Frusciante, Stefano Canepa [it] Zenity 2.9.91 ============= " the L I T T L E things " * Build fixes [Chris] * Update docs [Glynn] * Fix progress dialog with auto-close [Glynn] * New and updated translations - Duarte Loreto [pt] - Raphael Higino [pt_BR] - Tommi Vainikainen [fi] - Ole Laursen [da] - Kostas Papadimas [el] - Changwoo Ryu [ko] - David Lodge [en_GB] - Adam Weinberger [en_CA] - Christian Rose [sv] Zenity 2.9.90 ============= " Up yer bum! " * Fix stdin on the tree dialog [Ed] * Misc updates [Glynn] * New and updated translations - Hendrik Richter [de] - Priit Laes [et] - Funda Wang [zh_CN] - Vincent van Adrighem [nl] Zenity 2.9.2 ============ " New Year Zenolutions " * Pre-load current dates in the calendar, because gtk_calendar* is dumb [Glynn] * Correct error message for notification icon [Glynn] * New and updated translations - Takeshi AIHANA [ja] - Kjartan Maraas [nb, no] - Adam Weinberger [en_CA] - Miloslav Trmac [cs] - Marcel Telka [sk] - Leonid Kanter [ru] - ¿ygimantas Beru¿ka [lt] - Francisco Javier F. Serrador [es] - Christophe Merlet, Baptiste Mille-Mathias [fr] Zenity 2.9.1 ============ " Happy Christmas, GNOME " * Add code to listen for commands on stdin and update the notification area icon [James] * ANSIfication [Kjartan] * Fix documentation [Lucas] * Check the xterm ID is valid for the current display [Ross] * Add goption support [Lucas] * Don't use utf-8 at the commandline [Leonardo] * Miscellaneous fixes [Glynn, Christian] * New and updated translations - Takeshi AIHANA [ja] - Roozbeh Pournader, Meelad Zakaria [fa] - Dmitry G. Mastrukov, Leonid Kanter [ru] - Adam Weinberger [en_CA] - Miloslav Trmac [cs] - Marcel Telka [sk] - David Lodge [en_GB] - Laurent Dhima [sq] - Mohammad DAMT [id] - Vincent van Adrighem [nl] - Danilo ¿egan [sr, sr@Latn] - Francisco Javier F. Serrador [es] - Hendrik Richter [de] - Martin Willemoes Hansen [da] - Simos Xenitellis [el] - ¿ygimantas Beru¿ka [lt] - Alexander Shopov, Rostislav Raykov [bg] - Christian Rose [sv] Zenity 2.9.0 ============ " Zen Translation " * Add support for save file selection [Lucas] * Add support for directory-only selection [Lucas] * Add support for notification area [Glynn]
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+2
2004-12-28Update to 2.8.2:jmmv2-5/+5
* Fix crasher where gtk_widget_render_icon doesn't seem to like being passed (GtkIconSize) -1 [Glynn] * New and updated translations - Mohammad DAMT [id] - Christophe Merlet [fr] - Alessio Frusciante [it] - Martin Willemoes Hansen [da]
2004-10-28Update to 2.8.1:jmmv2-6/+5
* Build fixes [Kjartan] * New and updated translations - Meelad Zakaria, Roozbeh Pournader [fa] - Dmitry G. Mastrukov [ru] - Adam Weinberger [en_CA] - Marcel Telka [sk]
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-21Update to 2.8.0. This version corresponds to GNOME 2.8.0.jmmv3-7/+15
Zenity 2.8.0 ============ " Zen Elimination " * Add new translations [Abel] * New and updated translations - Takeshi AIHANA [ja] - Hendrik Richter [de] - Raphael Higino [pt_BR] - Miloslav Trmac [cs] - Kostas Papadimas [el] - David Lodge [en_GB] - Mugurel Tudor [ro] - Vincent van Adrighem [nl] - Arafat Medini [ar] - Priit Laes [et] - Baris Cicek [tr] - Abel Cheung [zh_TW] - Dafydd Harries [cy] Zenity 2.7.91 ============= " Here I stand, sad and free " * Updated online documentation [Breda, Glynn] * Fix translator-credits string [Christian, Glynn] * Update man pages [Glynn] * New and updated translations - Maxim Dziumanenko [uk] - Alessio Frusciante, Stefano Canepa [it] - Sami Pesonen [fi] - Martin Willemoes Hansen [da] - Jordi Mallach [ca] - Danilo Å| egan [sr, sr@Latn] - Kjartan Maraas [nb, no] - Laurent Dhima [sq] - Hasbullah Bin Pit [ms] - Laszlo Dvornik [hu] - Christian Rose [sv] - Christian Rose, Kemal Sanjta [bs] - Metin Amiroff, MÉ~Ytin Æ~Omirov [az] - Ankit Patel [gu] - Francisco Javier F. Serrador [es] - Duarte Loreto [pt] - Changwoo Ryu [ko] - Miloslav Trmac [cs] - Adam Weinberger [en_CA] - Funda Wang [zh_CN] - Artur Flinta [pl] - Marcel Telka [sk] Zenity 2.7.90 ============ " Let's sit down to find out where we stand " * New and updated translations - Laurent Dhima [sq] - Iñaki Larrañaga [eu] - Takeshi AIHANA [ja] - Alexander Winston [en_CA] - Guntupalli Karunakar [hi] - Miloslav Trmac [cs] - Vincent van Adrighem [nl] - Christian Rose [sv] - Duarte Loreto [pt] - Gareth Owen [en_GB] - Laszlo Dvornik [hu] - Kjartan Maraas [no] - Francisco Javier F. Serrador [es] Zenity 2.7.0 ============ " You know what, I think I might stay here a little longer " * Parsing typos [Paul Bolle] * Send HUP to parent in progress dialog [Luke Suchocki] * Compilation fixes [Ivan Noris] * Use markup in message dialogs so that we get nice HIG compliatn dialogs [Sebastian Heinlein] * Documentation fixes [Baptiste Mille-Mathias] * Remove duplicate headers [Leonardo Boshell] * Add --print-column option for list dialog [Paul Bolle, Glynn] * Miscellaneous cleanups [Paul Bolle] * New and updated translations - Rostislav Raykov, Alexander Shopov [bg] - Ahmad Riza H Nst, Mohammad DAMT [id] - John C Barstow [mi]
2004-05-15Update to 2.6.2:jmmv2-5/+5
* Make dialogs transients of parent xterm [Sebastian Kapfer] * Fix up the dialogs according to the HIG [Sebastian Heinlein] * Add --text to the list dialog, it was mostly implemented but never hooked up [Glynn] * New and updated translations - Adam Weinberger [en_CA] - Duarte Loreto [pt] - Vincent van Adrighem [nl]
2004-05-07Drop maintainership; I don't have the enough free time to maintainxtraeme1-2/+2
all these packages.
2004-05-03Update to 2.6.1:jmmv3-6/+9
* Fix up scrollkeeper issues [Glynn] * Fix up help docs [Ross, Matt] * New and updated translations: - David Fernandez Vaamonde, Jesus Bravo Alvarez [gl] - Guntupalli Karunakar [gu] - Adam Weinberger [en_CA] - Yogeesh MB [kn]
2004-04-14Make use of the new USE_DIRS variable, instead of directly depending on thejmmv1-2/+2
*-dirs packages.
2004-04-01Update to 2.6.0. Changes since the previous stable branch:jmmv3-9/+29
Zenity 2.6.0 ============ " Roll on Rottnest! " * Fix up dialog sizes [Darren, Glynn] * Add Serbian help docs [Danilo] * New and updated translations - Alexander Winston [en_CA] - Kostas Papadimas, Nikos Charonitakis [el] - Telsa Gwynne, Dafydd Tomos [cy] - Andras Timar [hu] - Mugurel Tudor [ro] Zenity 2.5.91 ============= " Too old to die young " * Use automake 1.7 now [Glynn] * Removed some unused code [Glynn] * New and updated translations - MÉ~Ytin Æ~Omirov [az] Zenity 2.5.90 ============= " Half drunk " * Build fixes [Tomasz] * Fix help, remove cruft [Glynn] * THANKS [Glynn] * New and updated translations - Takeshi AIHANA [ja] - Changwoo Ryu [ko] - Robert Sedak [hr] - Arafat Medini [ar] - Danilo Å| egan, Aleksandar UroÅ¡eviÄ~G [sr, sr@Latn] - Paisa Seeluangsawat, Supranee Thirawatthanasuk [th] - Jarkko Ranta [fi] - Laurent Dhima [sq] - Kostas Papadimas [el] - Priit Laes [et] - Guntupalli Karunakar, Amanpreet Singh Alam [pa] Zenity 2.5.2 ============ " Bottle half full or half empty? " * Handle stdin on text dialog [Glynn] * Build fixes [Glynn] * New and updated translations - Duarte Loreto [pt] - Sanlig Badral [mn] - Robert Sedak [hr] - Christophe Merlet [fr] - Roozbeh Pournader [fa] - Christian Neumair [de] - Kjartan Maraas [no] - Laurent Dhima [sq] - Ã~Esmund Skjæveland [nn] - Andras Timar [hu] - Funda Wang [zh_CN] - MÉ~Ytin Æ~Omirov [az] - Laurent Dhima [sq] Zenity 2.5.1 ============ " Zen beginnings " * Use the new file selection widget [Jan]
2004-03-07Bump PKGREVISION due to a fix in scrollkeeper's handling of its documentationjmmv1-1/+2
database.
2004-02-22bl3ify and add explicit dependancies on packages used directly by this one.jmmv1-7/+9
2004-02-06Update to 1.8:jmmv4-21/+18
* Fix quote and output bugs [Christian] * Hook up 'activate' on text entry [Glynn, raf@noduck.net] * Fix up Solaris build [Damien] * Fix up spec file [Glynn] * Add locale header [Leonardo] * Make dialogs resizable [Ingo] * Unmark translation messages [Christian] * Fix up gdialog wrapper [Peter]
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-23Bump PKGREVISION due to xmlcatmgr update to 2.0beta1. I know; this is a PITA.jmmv1-2/+2
This shouldn't be needed if we had non-recursive dependancies *sigh*.
2004-01-03Bump package revisions for tiff update.reed1-2/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-12-13Bump PKGREVISION for atk library major bump.wiz1-1/+2
2003-12-03Initial import of zenity-1.6 from pkgsrc-wip.xtraeme5-0/+123
This is zenity - a rewrite of gdialog, the GNOME port of dialog which allows you to display dialog boxes from the commandline and shell scripts.