summaryrefslogtreecommitdiff
path: root/x11/gnome-session
AgeCommit message (Collapse)AuthorFilesLines
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-11-25Bump PKGREVISION for libgsf dependencies, and BUILDLINK_DEPENDS becausewiz1-1/+2
of the libgsf shlib major bump and associated BUILDLINK_DEPENDS bump.
2005-10-12Update to 2.12.0:jmmv3-16/+16
============== Version 2.12.0 ============== Misc * New splash screen for GNOME 2.12 (Felix Dietze) Translators * Bryn Salisbury (cy) * Francisco Javier F. Serrador (es) * Christophe Merlet (RedFox) (fr) * Gabor Kelemen (hu) * Norayr Chilingaryan (hy) * Mohammad DAMT (id) * Žygimantas Beručka (lt) * Duarte Loreto (pt) * Sebastian Ivan (ro) * Leonid Kanter (ru) * Baris Cicek (tr) * Maxim Dziumanenko (uk) =============== Version 2.11.91 =============== Fixes * Fix rendering of splash screen text (Ray Strode) * Fix RandR support to correctly use host settings (Sebastien Bacher) Translators * GNOME PL Team (pl) * Wang Jian (zh_CN) * Woodman Tuen (zh_TW) =============== Version 2.11.90 =============== Fixes * Fix some memory leaks (Aivars Kalvans, Federico) * Make the session capplet have a window icon (Jaap A. Haitsma) * Don't set deprecated default window manager key in gnome-wm (Mark) Misc * Remove gnome-smproxy (Mark) See: http://mail.gnome.org/archives/desktop-devel-list/2005-July/msg00527.html Translators * Rostislav "zbrox" Raykov (bg) * Martin Willemoes Hansen (da) * Hendrik Richter (de) * Priit Laes (et) * Ilkka Tuohela (fi) * Ignacio Casal Quinteiro (gl) * Norayr Chilingaryan (hy) * Takeshi AIHANA (ja) * Kjartan Maraas (nb) * Shiva Prasad Pokharel (ne) * Kjartan Maraas (no) * Marcel Telka (sk) * Laurent Dhima (sq) * Данило Шеган (sr) * Theppitak Karoonboonyanan (th) * Clytie Siddall (vi) * Woodman Tuen (zh_TW) ============== Version 2.11.1 ============== Misc * Remember the last chosen logout action (Carlos Garnacho Parro) * Clean up the ICE code slightly (Iain Holmes) Translators * Jordi Mallach (ca) * Miloslav Trmac (cs) * Frank Arnold (de) * Kostas Papadimas (el) * Adam Weinberger (en_CA) * Francisco Javier F. Serrador (es) * Priit Laes (et) * Elnaz Sarbar (fa) * Ankit Patel (gu) * Hasbullah Bin Pit (ms) * Tino Meinen (nl) * Evandro Fernandes Giovanini (pt_BR) * Steve Murphy (rw) * Baris Cicek (tr) * Pablo Saratxaga (wa)
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-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam1-3/+2
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
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:jmmv5-90/+20
============== Version 2.10.0 ============== Misc * New splash screen (Sami "alump" Viitanen) * Improved schemas string (Byran Clark, Kjartan Maraas) Translators * Vladimir \"Kaladan\" Petkov (bg) * Jordi Mallach (ca) * Miloslav Trmac (cs) * Martin Willemoes Hansen (da) * Frank Arnold (de) * Kostas Papadimas (el) * Adam Weinberger (en_CA) * David Lodge (en_GB) * Francisco Javier F. Serrador (es) * Ivar Smolin (et) * Pauli Virtanen (fi) * Christophe Merlet (RedFox) (fr) * Ankit Patel (gu) * Gil Osher (he) * Gabor Kelemen (hu) * Luca Ferretti (it) * Takeshi AIHANA (ja) * Changwoo Ryu (ko) * Žygimantas Beručka (lt) * Kjartan Maraas (nb) * Tino Meinen (nl) * Åsmund Skjæveland (nn) * Kjartan Maraas (no) * GNOME PL Team (pl) * Evandro Fernandes Giovanini (pt_BR) * Duarte Loreto (pt) * Mişu Moldovan (ro) * Leonid Kanter (ru) * Marcel Telka (sk) * Laurent Dhima (sq) * Данило Шеган (sr) * Christian Rose (sv) * Theppitak Karoonboonyanan (th) * Maxim Dziumanenko (uk) * Simon Kemisho (xh) * Wang Jian (zh_CN) * Woodman Tuen (zh_TW) ============= Version 2.9.4 ============= Session Manager * Use GDM's logout actions protocol to shutdown/reboot (Raffaele Sandrini, Mark) * Change "Prompt" to "Ask" in the configuration dialog (Vincent Noel) * Fix compiler warnings (Jens Granseuer) * Slave the lifecycle of the keyring daemon to the session (Alex Larsson) Translators * Jordi Mallach (ca) * Miloslav Trmac (cs) * Adam Weinberger (en_CA) * Francisco Javier F. Serrador (es) * Kjartan Maraas (nb) * Kjartan Maraas (no) * Laurent Dhima (sq) * Christian Rose (sv) * Zuza Software Foundation (zu) ============= Version 2.9.2 ============= Misc * Add X-GNOME-Bugzilla-Version to .desktop file (Christoffer Olsen) * Install .desktop file in $(datadir)/applications (Mark) Translators * Martin Willemoes Hansen (da) * Zuza Software Foundation (nso)
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+3
2005-02-13adapt to latest bsd.pkg.mk changesrecht1-3/+3
2005-01-11Depend on the latest glib2 and gnome-vfs2 which have sane paths built in.jmmv3-28/+30
Avoid the need to mess with the environment WRT the XDG_{CONFIG,DATA}_DIRS variables. While here, fix installation of this package (missing files), caused by a change recently made to libgnomeui (-lSM is not a direct dependency any more). Bump PKGREVISION to 2.
2004-12-08Fix compile error on NetBSD 1.6.2, making it compile with gcc-2.95.taca2-1/+18
2004-11-19Let the reboot and halt options appear in GNOME's "Log Out" dialog andjmmv3-2/+59
make they use /sbin/shutdown under *BSD, instead of the poweroff and reboot commands. The patch is a hack (not to be submitted back to the upstream developers without modification), but is the simplest thing we can do to avoid ugly and hard to maintain patches. I'll submit a better, but more complex one, to GNOME's Bugzilla when I have more time. Bump PKGREVISION to 1.
2004-10-26Update to 2.8.1:jmmv3-17/+16
Session Manager * Don't crash gnome-session-remove if we can't get a program name (Ray Strode) * Add a big bunch of debug spew (Federico) * Don't leak the splash screen background image (Kjartan) * Remove the purge timeout when re-incarnating a client (Federico) Misc * Use automake 1.7 (James Henstridge) Translators * Adam Weinberger (en_CA) * Changwoo Ryu (ko)
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-23Use a new splash screen file that is not corrupted (uploading with a newjmmv2-7/+7
name to avoid a manual removal of the old file). The previous PNG image was not uploaded correctly, and misteriously resulted in checksum mismatches (though I haven't been able to reproduce the problem). Closes PR pkg/27019.
2004-09-21Update to 2.8.0. This version corresponds to GNOME 2.8.0.jmmv4-12/+35
============= Version 2.8.0 ============= Session Manager * New splash screen (Jakub Steiner) Translators * Miloslav Trmac (cs) * Adam Weinberger (en_CA) * Priit Laes (et) * Jesús Bravo Álvarez (gl) * Gabor Kelemen (hu) ============== Version 2.7.92 ============== Session Manager * Fix various warnings, deprecated API usage etc. (Kjartan Maraas) Translators * Kemal Sanjta (bs) * Kjartan Maraas (nb) * Laurent Dhima (sq) * Maxim Dziumanenko (uk) ============== Version 2.7.91 ============== Session Manager * Add support for activating Vino (Mark) Translators * Kartik Mistry (gu) ============= Version 2.7.4 ============= Fixes * Fix the fadeout at logout on Xinerama (Bastien Nocera) Translators * Pawan Chitrakar (ne) ============= Version 2.7.3 ============= Fixes * Don't start a keyring if one is already available (Alex Larsson) * Fix minor text drawing issue with the slash screen (Carlos Romero, Simone Gotti) Translators * Evandro Fernandes Giovanini (pt_BR) * Laurent Dhima (sq) * zhakanini (ta) ============= Version 2.7.1 ============= Translators * Reinout van Schouwen (nl)
2004-06-28Update to 2.6.2:jmmv2-5/+5
Fixes * Fix issue with drop shadow on splash screen not being redrawn (Carlos Romero, Simone Gotti) * Don't start a keyring if there's one already available (Alex Larsson) Translators * Zygimantas Berucka (lt) * Reinout van Schouwen (nl)
2004-05-15Update to 2.6.1:jmmv4-17/+20
Fixes * Fix a crash with the logout dialog on multi-screen setups (Mark) Translators * Zuza Software Foundation (af) * Hizkuntza Politikarako Sailburuordetza (eu) * Guntupalli Karunakar (gu) * John C Barstow (mi)
2004-04-14Make use of the new USE_DIRS variable, instead of directly depending on thejmmv1-3/+2
*-dirs packages.
2004-04-01Update to 2.6.0:jmmv4-16/+36
Version 2.6.0 ============= Translators * Alexander Winston (en_CA) * Gareth Owen (en_GB) * Jitendra Shah (mr) * Mişu Moldovan (ro) * Leonid Kanter (ru) Version 2.5.92 ============== Translators * Vladimir \"Kaladan\" Petkov (bg) * Dinesh Nadarajah (ta) * Maxim Dziumanenko (uk) Version 2.5.91 ============== Session Manager * New splash screen for 2.6 (Jakub Steiner) * Make the capplet use GtkFileChooser (Chris Kelso) Translations * Mətin Əmirov (az) * Laszlo Dvornik (hu) * Christopher R. Gabriel (it) * Amanpreet Singh Alam (pa) * Paisa Seeluangsawat (th) Version 2.5.90 ============== Translations * Laurent Dhima (sq) * Paisa Seeluangsawat (th) Version 2.5.5 ============= Session Manager * Set accessible role on the logout dialog (Padraig) * Update help links to the new user-guide location (Mark) Session Properties Dialog * Make Escape actually with the warning dialog (Bala) * Don't warn user about discarding changes if no changes have been made (Bala) Translators * Changwoo Ryu (ko) * Robert Sedak (hr) * Maxim Dziumanenko (uk) Version 2.5.4 ============= Session Manager * Don't show silly icon when we can't find an splash icon (Glynn) * Update the icon map (Luca Ferretti) * Fix usage of deprecated function (Kjartan) Misc * Fix issue with underquoted definition of AM_PATH_ESD (Alexander Winston) * Kill unused .desktop file (Mark) * Update support for lwm (James F. Carter) * Add support for openbox (Michael Terry) Translators * Kjartan Maraas (no) * Laurent Dhima (sq) * Miloslav Trmac (cs) * Mətin Əmirov (az) * Reinout van Schouwen (nl) Version 2.5.3 ============= Session Manager * Fix lock-up on log out with glib 2.3.1 (Mark) * Use a managed window for the logout dialog when accessibility is enabled (Mark, Bill Haneman) * Require gtk+ 2.3.x and dump the pangox coverage cache hack (Mark) Translators * Duarte Loreto (pt) * Isam Bayazidi (ar) * Paul Duffy (ga) * Sanlig Badral (mn) Version 2.5.2 ============= Session Manager * Start the gnome-keyring daemon at login (Alexander Larsson) * Shut down the GConf daemon at logout (W. Michael Petullo, Mark) * Don't set the full path of the splash screen in GConf (Mark) Translators * Kostas Papadimas (el) * Paisa Seeluangsawat (th) Version 2.5.1 ============= Misc * Add a --enable-deprecations build flag (Mark) Translators Dafydd Harries (cy) Miloslav Trmac (cs)
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz1-2/+2
Buildlink files: RECOMMENDED version changed to current version.
2004-03-08Handle some shared directories by depending on (or updating dependancies tojmmv1-3/+3
the latest versions) xdg-dirs, xdg-x11-dirs or gnome*-dirs. Bump PKGREVISION.
2004-03-08Get rid of the SPLASH_NAME variable, because SITES_${SPLASH_NAME} was notjmmv1-6/+5
beeing defined properly (causing a build failure). (I could have defined the variable at the very beginning of the Makefile, but this annoys pkglint.)
2004-03-07Use a custom splash screen that includes a note about pkgsrc and also showsjmmv3-4/+21
the current installed version of GNOME. Bump PKGREVISION to 4.
2004-02-14Explicitly depend on pkgconfig.minskim1-1/+2
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-3/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-11bl3ifyxtraeme1-10/+10
2004-02-09Bump PKGREVISION due to gnome-vfs2 update (fam readded as a dependancy).jmmv1-2/+2
2004-02-08Include intltool's buildlink2.mk to handle dependancies required by thesejmmv1-1/+2
tools (as p5-XML-Parser). Noted by Min Sik Kim.
2004-02-06Bump revision due to nautilus update to 2.4.2.jmmv1-2/+2
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-1/+2
This shouldn't be needed if we had non-recursive dependancies *sigh*.
2004-01-16Update to 2.4.2xtraeme2-6/+5
Changes: Session Manager * Fix lock-up on log out with glib 2.3.1 (Mark)
2004-01-04Bump revision due to librsvg2 update (libcroco added as a dependancy).jmmv1-2/+2
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-28Bump PKGREVISION due to gnome-vfs2 update (fam removed as dependancy).jmmv1-1/+2
( We really need non-recursive dependancies... *sigh* )
2003-12-15Fix typo.xtraeme1-3/+1
2003-12-15Update to 2.4.1xtraeme4-27/+19
Changes: o Funky new splash screen o Many bugfixes were solved too. Review Changelog to see a full list of changes.
2003-12-13Bump PKGREVISION for atk library major bump.wiz1-2/+2
2003-11-12PKGREVISION++ due to devel/popt update.salo1-2/+2
2003-07-23Bump revision due to metacity update (startup-notification was added to itsjmmv1-2/+2
buildlink2.mk file, so a new dependancy was introduced).
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-2/+2
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-2/+2
2003-05-05Line up PKGREVISION whitespace.jmmv1-2/+2
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz1-1/+2
dependency bumps.