summaryrefslogtreecommitdiff
path: root/x11/gdm/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* x11/gdm: udpate to 47.0Olivier Duchateau2025-06-1130-1121/+602
| | | | PR: 286697
* x11/gdm: Unlock the user's keyring during loginNeel Chauhan2022-04-162-0/+8
| | | | | PR: 263309 Reported by: cyclaero AT gmail DOT com
* x11/gdm: Fix bug where we go to console on logoutNeel Chauhan2022-03-273-89/+5
|
* x11/gdm: Update to 42.0Neel Chauhan2022-03-2214-207/+72
|
* x11/gdm: Use /usr/sbin/chown, not /sbin/chown in Xsession patchesNeel Chauhan2022-02-043-6/+6
|
* x11/gdm: Update to 41.3Neel Chauhan2022-01-3151-2840/+1498
| | | | Differential Revision: https://reviews.freebsd.org/D34088
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-2/+0
|
* Remove from the gnome session a list of required dbus services that noBaptiste Daroussin2020-10-091-0/+7
| | | | | | | longer exists Notes: svn path=/head/; revision=551814
* The FreeBSD GNOME team proudly presents GNOME 3.28 for FreeBSD.Koop Mast2018-09-3031-248/+3783
| | | | | | | | | | | | The offical GNOME 3.28 release notes can be found at https://help.gnome.org/misc/release-notes/3.28/ Thanks to Antoine Brodin for running the exp-runs. PR: 229761 Notes: svn path=/head/; revision=480951
* Drop bogus libgnome-keyring dependencyRuslan Makhmatkhanov2016-03-211-3/+3
| | | | | | | | | | | | | And add dependency upon libsecret where needed. Bump PORTREVISION because of dependency change. For x11/gdm also drop KEYRING option and corresponding logic bits - this functionality is now available unconditionally. Differential Revision: D5690 Reviewed by: kwm, mat Notes: svn path=/head/; revision=411541
* Fix lockscreen bypass.Koop Mast2015-11-181-0/+207
| | | | | | | | MFH: 2015Q4 Security: 68847b20-8ddc-11e5-b69c-c86000169601 Notes: svn path=/head/; revision=401858
* The FreeBSD GNOME team proudly presents GNOME 3.16 for FreeBSD.Koop Mast2015-08-053-11/+11
| | | | | | | | | | | | | | | | | | | | | The offical GNOME 3.16 release notes can be found at https://help.gnome.org/misc/release-notes/3.16/ Upgrade instructions for port users: Delete the old tracker package with: # pkg delete -f tracker And user port upgrade tool of choice to upgrade. Thanks to Antoine Brodin for running the exp-runs. This release was made possible by the following people: Gustau Perez Ting-Wei_Lan PR: 201980 Notes: svn path=/head/; revision=393607
* The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2.Koop Mast2014-11-1926-371/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up. This commit removes the old GNOME 2 desktop, bindings and some ports that can't be compiled. A few ports where updated to more recent versions to allow them to compile with this update. Apart from updating ports to newer versions GDM is more integrated with gnome-shell now, and handles several things for the GNOME desktop such as screen locking. If you want to use GNOME 3 via startx, you will have to add your own lock screen/screensaver. For example xscreensaver can be used for sessions started without GDM. Shell Extensions can be installed via https://extensions.gnome.org/ , we have ported a few that can't be installed via this way. The old gnome-utils and gnome-games ports where split up into single ports and where converted to meta-ports. gnome-terminal requires a UTF-8 locale to run, gdm handles this already, but if you use startx you need to do this yourself. Upgrade instructions: Delete the old and conflicting packages: # pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \ guile gcalctool gnome-media libgnomekbd # pkg delete gnome-screensaver gnome-applets bug-buddy evolution-exchange \ evolution-webcal gnome-system-tools seahorse-plugins gnome-control-center For package users the following lines will be enough: # pkg upgrade # pkg install gnome3 For ports users should do the following: # portmaster -a # portmaster x11/gnome3 We are currently aware of two issues. The first issue is a bug in the file monitoring code in the glib20 port. This bug causes glib programs to crash when files in a monitored directory are added or removed. Upstream is aware of the problem, but since the problem is quite complex there is no solution yet. This problem isn't restricted to BSD. The second issue is that on certain video cards totem will display a purple/pink overlay on the video. It not clear yet where the issues comes from. Major thanks goes to Gustau Perez for being a driving force behind getting GNOME 3 up to speed again. Also thanks to Antoine Brodin for running the exp-runs. This update was also made possible by: Joe Maloney Kris Moore Beeblebrox Ryan Lortie Antoine Jacoutot and everyone I missed Notes: svn path=/head/; revision=372768
* Convert almost all gnome@ ports to OptionsNG, trim header, use USES=pathfixKoop Mast2013-03-193-67/+18
| | | | | | | | | | instead of gnomehack and pet portlint. Add conflicts with future gnome3 versions. Reviewed by: miwi, bapt Notes: svn path=/head/; revision=314632
* Fix the rc.d script:Jeremy Messenger2012-03-161-11/+16
| | | | | | | | | | | | | | | | | | | | | 1. If gnome_enable is not set, gdm_enable will remain undefined. 2. Change the order of calling load_rc_config() and setting the default variables to the typical order for ports 3. Not only is the checkyesno for gdm_enable in gdm_start() not needed, it causes problems if, for example the user does '/usr/local/etc/rc.d/gdm onestart' from the command line. 4. Switch to using 'unlink' instead of 'rm -f' 5. If lshal does not exist, error out instead of looping 6. Mark a variable local Bump the PORTREVISION. PR: ports/159391 Submitted by: dougb Feature safe: yes Notes: svn path=/head/; revision=293396
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. Notes: svn path=/head/; revision=289156
* Make sure to exit if there is a problem setting up the desktop session.Joe Marcus Clarke2012-01-021-8/+9
| | | | | | | | | If not, the user would be dropped in as root. PR: 159721 Notes: svn path=/head/; revision=288432
* Before, the setusercontext(3) call in gdm is missing a few flags. ReplaceJeremy Messenger2011-06-251-11/+8
| | | | | | | | | | | | those LOGIN_* to LOGIN_SETALL to enable all but not LOGIN_SETGROUP. It fixes the rctl resource limits. Note that, the MAC framework is untest with it. Bump the PORTREVISION. PR: ports/158174 Submitted by: trasz Notes: svn path=/head/; revision=276371
* Fix privilege escalation vulnerability.Koop Mast2011-03-291-5/+48
| | | | | | | | Obtained from: upstream git Security: c6fbd447-59ed-11e0-8d04-0015f2db7bde Notes: svn path=/head/; revision=271975
* Presenting GNOME 2.30.2. for FreeBSD.Koop Mast2010-07-253-26/+19
| | | | Notes: svn path=/head/; revision=258246
* Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for thisKoop Mast2010-05-1012-622/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | release can be found at http://library.gnome.org/misc/release-notes/2.30/ . This release brings initial PackageKit support, Upower (replaces power management part of hal), cuse4bsd integration with HAL and cheese, and a faster Evolution. Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This will also be the last of the 2.x releases. The next release will be the highly-anticipated GNOME 3.0 which will bring with it a new UI experience. Currently, there are a few bugs with GNOME 2.30 that may be of note for our users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading instructions, and the up-to-date list of known issues. This release features commits by avl, ahze, bland, marcus, mezz, and myself. The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the initual packagekit porting. And the following contributors & testers for there help with this release: Eric L. Chen Vladimir Grebenschikov Sergio de Almeida Lenzi DomiX walder crsd Kevin Oberman Michal Varga Pavel Plesov Bapt kevin and ITetcu for two exp-run PR: ports/143852 ports/145347 ports/144980 ports/145830 ports/145511 Notes: svn path=/head/; revision=254099
* Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1
| | | | | | | s#. %%RC_SUBR%%#. /etc/rc.subr# Notes: svn path=/head/; revision=251553
* * Update to 2.28.2.Joe Marcus Clarke2009-12-192-23/+63
| | | | | | | | | | * Properly add support for reading keyboard invariants from hal. [1] PR: 141143 [1] Submitted by: Andreas Wetzel <mickey242@gmx.net> [1] Notes: svn path=/head/; revision=246214
* This patch was actually meant for gdm-2.26. Remove it.Joe Marcus Clarke2009-12-071-40/+0
| | | | Notes: svn path=/head/; revision=245315
* Remove a bogus empty line to fix patching.Joe Marcus Clarke2009-12-071-1/+0
| | | | Notes: svn path=/head/; revision=245314
* Add keyboard invariant support to GDM.Joe Marcus Clarke2009-12-061-0/+41
| | | | | | | | PR: 141143 Submitted by: Andreas Wetzel <mickey242@gmx.net> Notes: svn path=/head/; revision=245307
* Fix the language list in GDM.Joe Marcus Clarke2009-12-062-19/+1
| | | | | | | | PR: 141136 Submitted by: MOROHOSHI Akihiko <moro@remus.dti.ne.jp> Notes: svn path=/head/; revision=245306
* Presenting GNOME 2.28.1 for FreeBSD. The official release notes for thisJoe Marcus Clarke2009-11-2811-118/+320
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | release can be found at http://library.gnome.org/misc/release-notes/2.28/ . Officially, this is mostly a polishing release in preparation for GNOME 3.0 due in about a year. On the FreeBSD front, though, a lot went into this release. Major thanks goes to kwm and avl who did a lot of the porting work for this release. In particular, kwm brought in Evolution MAPI support for better Microsoft Exchange integration. Avl made sure that the new gobject introspection repository ports were nicely compartmentalized so that large dependencies aren't brought in wholesale. But, every GNOME team member (ahze, avl, bland, kwm, mezz, and myself) contributed to this release. Other major improvements include an updated HAL with better volume probing code, ufsid integration, and support for volume names containing spaces (big thanks to J.R. Oldroyd); a new WebKit; updated AbiWord; an updated Gimp; and a preview of the new GNOME Shell project (thanks to Pawel Worach). The FreeBSD GNOME Team would like to that the following additional contributors to this release whose patches and testing really helped make it a success: Andrius Morkunas Dominique Goncalves Eric L. Chen J.R. Oldroyd Joseph S. Atkinson Li Pawel Worach Romain Tartière Thomas Vogt Yasuda Keisuke Rui Paulo Martin Wilke (and an extra shout out to miwi and pav for pointyhat runs) We would like to send this release out to Alexander Loginov (avl) in hopes that he feels better soon. PR: 136676 136967 138872 (obsolete with new epiphany-webkit) 139160 134737 139941 140097 140838 140929 Notes: svn path=/head/; revision=244923
* * Fix hardcoded use of /usr/local.Joe Marcus Clarke2009-05-312-9/+73
| | | | | | | | | | * Re-add support for reading /etc/login.conf. [1] PR: 133793 [1] Submitted by: thomas [1] Notes: svn path=/head/; revision=234937
* Correct path to file.Joe Marcus Clarke2009-05-171-1/+1
| | | | Notes: svn path=/head/; revision=234046
* Whoops, add two more hunks to complete XDMCP support.Joe Marcus Clarke2009-05-162-1/+21
| | | | Notes: svn path=/head/; revision=234018
* * Fix XDMCP support with gdm. Note: that for IPv4 support to work, oneJoe Marcus Clarke2009-05-165-8/+226
| | | | | | | | | must rebuild gdm after disabling IPV6 support in the OPTIONS menu. * Set IPV6 support to DISABLED by default. * Add support for '&' in the gecos field. Notes: svn path=/head/; revision=234017
* * Add support for a gdm_lang rc.conf macro to control the locale used byJoe Marcus Clarke2009-05-033-1/+180
| | | | | | | | | | | | | the GDM greeter [1] * Add a patch from Fedora to support reading the keyboard layout from hal [2] PR: 131533 [2] Obtained from: Fedora CVS [2] Submitted by: daichi [1] Andreas Wetzel <mickey242@gmx.net> [2] Notes: svn path=/head/; revision=233140
* Presenting GNOME 2.26.1 for FreeBSD.Koop Mast2009-04-243-1/+14
| | | | | | | Approved by: portmgr (marcus) Notes: svn path=/head/; revision=232642
* Presenting GNOME 2.26 for FreeBSD. SeeJoe Marcus Clarke2009-04-104-98/+1
| | | | | | | | | | | | | | | | http://library.gnome.org/misc/release-notes/2.26/ for a list of what's new. On the FreeBSD front, we introduced a port of libxul 1.9 as an alternative for Firefox 2.0 as a Gecko provider. Almost all of the Gecko consumers can make use of this provider by setting: WITH_GECKO=libxul The GNOME 2.26 port was done by ahze, kwm, marcus, and mezz with contributions by Joseph S. Atkinson, Peter Wemm, Eric L. Chen, Martin Matuska, Craig Butler, and Pawel Worach. Notes: svn path=/head/; revision=231972
* Take a stab at working around the hald/gdm race. After we loop waitingJoe Marcus Clarke2009-01-311-0/+8
| | | | | | | for the getty, loop waiting for hald to be ready. Notes: svn path=/head/; revision=227296
* Depend on hald when starting up so that we have a better chance of findingJoe Marcus Clarke2009-01-261-1/+1
| | | | | | | all necessary input devices. Notes: svn path=/head/; revision=226910
* Presenting GNOME 2.24 for FreeBSD.Joe Marcus Clarke2009-01-1026-415/+357
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See http://library.gnome.org/misc/release-notes/2.24/ for the general release notes. On the FreeBSD front, this release introduces Fuse support in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some long-standing seahorse and gnome-keyring bugs. The documentation updates to the website are forthcoming. This release features commits by adamw, ahze, kwm, mezz, and myself. It would not have been possible without are contributors and testers: Alexander Loginov Craig Butler [1] Dmitry Marakasov [6] Eric L. Chen Joseph S. Atkinson Kris Moore Lapo Luchini [7] Nikos Ntarmos Pawel Worach Romain Tartiere TAOKA Fumiyoshi [3] Yasuda Keisuke Zyl aZ [4] bf [2] [5] Florent Thoumie Peter Wemm pluknet PR: 125857 [1] 126993 [2] 130031 [3] 127399 [4] 127661 [5] 124302 [6] 129570 [7] 129936 123790 Notes: svn path=/head/; revision=225629
* Update to 2.20.8.Joe Marcus Clarke2008-09-082-10/+2
| | | | Notes: svn path=/head/; revision=220212
* Restore the ability to process gdm_flags when starting.Joe Marcus Clarke2008-08-171-1/+1
| | | | | | | Reported by: jhay Notes: svn path=/head/; revision=218726
* * Add support for integrating GDM with GnomeKeyring and PAMJoe Marcus Clarke2008-07-272-0/+28
| | | | | | | | | | * Remove some ancient PAM checks PR: 125983 Submitted by: Marcin Wisnicki <mwisnicki+freebsd@gmail.com> Notes: svn path=/head/; revision=217704
* gdmchooser/XDMCP:Volker Stolz2008-07-261-0/+27
| | | | | | | | | | | | | - fix harmless warning getting logged as CRITICAL when enumerating interfaces http://bugzilla.gnome.org/show_bug.cgi?id=544790 - unbreak XDMCP discovery on the IPv6-mapped IPv4 broadcast address by unsetting IPV6_V6ONLY socket option (obtained from NetBSD pkgsrc) http://bugzilla.gnome.org/show_bug.cgi?id=544730 Approved by: marcus@ Notes: svn path=/head/; revision=217528
* * Make sure seahorse-agent is only run when we're starting gnome-sessionJoe Marcus Clarke2008-06-091-10/+32
| | | | | | | | | * Run seahorse-agent using dbus-launch * No longer run ssh-agent when running gnome-session as gnome-keyring-daemon provides this functionality Notes: svn path=/head/; revision=214528
* Add the ability to spawn seahorse-agent from gdm rather than from everyJoe Marcus Clarke2008-06-081-0/+17
| | | | | | | | | | | underlying session. This is very similar to how many Linux distributions integrate seahorse-agent with GNOME. PR: 124398 Submitted by: Robert Noland <rnoland@2hip.net> Notes: svn path=/head/; revision=214510
* Add a delay loop which keeps GDM from starting until the gettys have beenJoe Marcus Clarke2008-03-261-1/+22
| | | | | | | allocated. This will allow ConsoleKit to properly initialize. Notes: svn path=/head/; revision=209834
* The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 forJoe Marcus Clarke2008-03-242-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | FreeBSD. The official GNOME 2.22 release notes can be found at http://library.gnome.org/misc/release-notes/2.22/ . On the FreeBSD front, this release features an updated hal port with support for video4linux devices, DRM (Direct Rendering), and better support of removable media. Work is also underway to tie webkit more closely into GNOME. As part of the GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well. Be sure to consult UPDATING on the proper steps to upgrade all of your GNOME ports. This release would not have been possible without the contributions and testing efforts of the following people: Pawel Worach kan edwin Peter Ulrich Kruppa J. W. Ballantine Yasuda Keisuke Andriy Gapon Notes: svn path=/head/; revision=209647
* Update to 2.20.2.Jeremy Messenger2007-12-121-1/+1
| | | | Notes: svn path=/head/; revision=203161
* Presenting GNOME 2.20.1 and all related works for FreeBSD. The officialJoe Marcus Clarke2007-10-245-20/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GNOME 2.20 release notes can be found at http://www.gnome.org/start/2.20/notes/en/ . Beyond that, this update includes the new GIMP 2.4 (courtesy of ahze). The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME hierarchy. We are now using the more standard DATADIR of ${PREFIX}/share rather than ${PREFIX}/share/gnome. The result is that fewer patches and hacks are needed to port GNOME components to FreeBSD. This will mean some user changes may be required, so be sure to read /usr/ports/UPDATING for more details. This release and the things we accomplished in it would not have been possible without mezz's crazy idea to collapse DATADIR, and his persistence to make it happen successfully. Ahze and pav also deserve thanks for their work on porting modules and testing the whole ball of wax on pointyhat (respectively). The FreeBSD GNOME team would also like to thank our various testers and contributors: Yasuda Keisuke Frank Jahnke Pawel Worach Brian Gruber Franz Klammer Yuri Pankov Nick Barkas Cristian KLEIN Tony Maher Scot Hetzel Martin Matuska (mm) Benoit Dejean Martin Wilke (miwi) (And anyone else I may have missed) PRs fixed in this release: 111272, 113470, 115995, 116338 Notes: svn path=/head/; revision=201947
* Update to 2.18.1Michael Johnson2007-04-091-8/+8
| | | | Notes: svn path=/head/; revision=189567
* Presenting GNOME 2.18 for FreeBSD. GNOME 2.18 is a departure from recent GNOMEJoe Marcus Clarke2007-03-193-19/+48
| | | | | | | | | | | | | | | | releases in that it focuses more on stability and functionality than on new features. Not that it doesn't have its share of new and exciting items. See http://www.gnome.org/start/2.18/ for all the goodies in this release. GNOME 2.18 for FreeBSD would not have been possible without the hard work of the FreeBSD GNOME Team and our intrepid band of testers including J. W. Ballantine, Pawel Worach, Yasuda Keisuke, Pascal Hofstee, miwi, Yoshihiro Ota, Vladimir Grebenschikov, Jukka A. Ukkonen, Phillip Neumann, Franz Klammer, and Neal Delmonico. Notes: svn path=/head/; revision=187702