source: projects/specs/trunk/g/gdm/gdm-vl.spec @ 7938

Revision 7938, 38.7 KB checked in by Takemikaduchi, 11 years ago (diff)

GNOME-3.10.1

Line 
1%define libauditver 1.0.6
2%define pango_version 1.2.0
3%define gtk3_version 2.99.2
4%define libglade2_version 2.0.0
5%define libgnomeui_version 2.2.0
6%define pam_version 0.99.8.1-11
7%define desktop_file_utils_version 0.2.90
8%define gail_version 1.2.0
9%define nss_version 3.11.1
10%define consolekit_version 0.3.0-9
11%define fontconfig_version 2.6.0
12
13## %define _default_patch_fuzz 999
14
15Summary: The GNOME Display Manager
16Summary(ja): GNOME ディスプレイマネージャ
17Name: gdm
18Version: 3.10.0.1
19Release: 1%{?_dist_release}
20License: GPLv2+
21Group: User Interface/X
22URL: http://download.gnome.org/sources/gdm
23
24Source: http://download.gnome.org/sources/gdm/3.10/gdm-%{version}.tar.xz
25Source1: gdm-pam
26Source2: gdm-autologin-pam
27Source4: gdm-password.pam
28Source11: polkit-gnome-authentication-agent-1.desktop
29
30Source200: gdm-restart
31Source201: gdm-safe-restart
32Source202: gdm-stop
33Source203: gnome.desktop
34
35Requires(pre): shadow-utils
36Requires(posttrans): dconf
37Requires: pam >= %{pam_version}
38Requires: ConsoleKit >= %{consolekit_version}
39Requires: accountsservice
40Requires: iso-codes
41Requires: gnome-keyring-pam
42Requires: gnome-session
43Requires: gnome-settings-daemon
44Requires: gnome-shell
45Requires: polkit-gnome
46Requires: pulseaudio-gdm-hooks
47Requires: usermode-gtk
48Requires: util-linux
49Requires: xinitrc
50Requires: xorg-x11-xdm
51Requires: vine-backgrounds >= 4.0
52Requires: libXau >= 1.0.4-4
53Requires: audit-libs >= %{libauditver}
54
55BuildRequires: libcanberra-gtk3-devel
56BuildRequires: pango-devel >= %{pango_version}
57BuildRequires: gtk3-devel >= %{gtk3_version}
58BuildRequires: pam-devel >= %{pam_version}
59BuildRequires: fontconfig >= %{fontconfig_version}
60BuildRequires: desktop-file-utils >= %{desktop_file_utils_version}
61BuildRequires: libtool automake autoconf
62BuildRequires: libattr-devel
63BuildRequires: gettext
64BuildRequires: gnome-doc-utils
65BuildRequires: libdmx-devel
66BuildRequires: audit-libs-devel >= %{libauditver}
67BuildRequires: autoconf automake libtool
68BuildRequires: intltool
69BuildRequires: xorg-x11-server-Xorg
70BuildRequires: nss-devel >= %{nss_version}
71BuildRequires: ConsoleKit
72BuildRequires: check-devel
73BuildRequires: iso-codes
74BuildRequires: libxklavier-devel >= 4.0
75BuildRequires: upower-devel >= 0.9.7
76BuildRequires: libXdmcp-devel
77BuildRequires: libSM-devel
78BuildRequires: dbus-glib-devel
79BuildRequires: accountsservice-devel
80BuildRequires: plymouth-devel
81BuildRequires: itstool
82
83BuildRequires: dbus-x11
84BuildRequires: dconf-devel
85BuildRequires: gnome-power-manager
86BuildRequires: gsettings-desktop-schemas
87BuildRequires: gnome-settings-daemon
88
89Obsoletes:      %{name}-plugin-smartcard < 3.10.0
90Obsoletes:      %{name}-plugin-fingerprint < 3.10.0
91
92# Patch from Fedora
93
94
95# Patch from Ubuntu
96
97## patches for vine
98Patch500: gdm-3.10.0-vine-release.patch
99
100Vendor: Project Vine
101Distribution: Vine Linux
102
103
104%description
105GDM provides the graphical login screen, shown shortly after boot up,
106log out, and when user-switching.
107
108
109%package devel
110Summary:  Development files and headers for GDM
111Group:    Development/Libraries
112Requires: %{name} = %{version}-%{release}
113Requires: pkgconfig
114
115%description devel
116Development files and headers for writing GDM greeters.
117
118
119%prep
120%setup -q
121%patch500 -p1 -b .vine-release
122
123%build
124cp -f %{SOURCE1} data/pam-redhat/gdm.pam
125cp -f %{SOURCE2} data/pam-redhat/gdm-autologin.pam
126cp -f %{SOURCE4} data/pam-redhat/gdm-password.pam
127
128autoreconf -if
129intltoolize --force --copy
130%configure \
131        --with-pam-prefix=%{_sysconfdir} \
132        --with-plymouth=yes \
133        --with-default-pam-config=redhat \
134        --with-working-directory=%{_localstatedir}/gdm \
135        --enable-console-helper \
136        --with-console-kit \
137        --enable-split-authentication=yes \
138        --without-selinux \
139
140# drop unneeded direct library deps with --as-needed
141# libtool doesn't make this easy, so we do it the hard way
142sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/      func_append compile_command " -Wl,-O1,--as-needed"\n      func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
143
144make -C po
145
146#make %{?_smp_mflags}
147make
148
149
150%install
151[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
152
153mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gdm/Init
154mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gdm/PreSession
155mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gdm/PostSession
156
157make install DESTDIR=$RPM_BUILD_ROOT
158
159# docs go elsewhere
160rm -rf $RPM_BUILD_ROOT/%{_prefix}/doc
161
162# create log dir
163mkdir -p $RPM_BUILD_ROOT/var/log/gdm
164
165# and a spool dir
166mkdir -p $RPM_BUILD_ROOT/var/spool/gdm
167
168# remove the gdm Xsession as we're using the xdm one
169rm -f $RPM_BUILD_ROOT%{_sysconfdir}/gdm/Xsession
170(cd $RPM_BUILD_ROOT%{_sysconfdir}/gdm; ln -sf ../X11/xinit/Xsession .)
171
172mkdir -p $RPM_BUILD_ROOT%{_datadir}/gdm/autostart/LoginWindow
173
174# temporarily manually copy this
175cp -f %{SOURCE11} $RPM_BUILD_ROOT%{_datadir}/gdm/autostart/LoginWindow/polkit-gnome-authentication-agent-1.desktop
176
177mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/gdm/greeter
178
179rm -rf $RPM_BUILD_ROOT%{_localstatedir}/scrollkeeper
180
181find $RPM_BUILD_ROOT -name '*.a' -delete
182find $RPM_BUILD_ROOT -name '*.la' -delete
183
184
185install -m 0755 %{SOURCE200} %{SOURCE201} %{SOURCE202} $RPM_BUILD_ROOT%{_sbindir}/
186# install gnome.desktop
187# XXX: this should be included in each desktop environment package.
188mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/X11/dm/Sessions/
189cp %{SOURCE203} $RPM_BUILD_ROOT%{_sysconfdir}/X11/dm/Sessions/
190
191rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/gdm-fingerprint
192rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/gdm-smartcard
193
194
195%find_lang gdm --with-gnome
196
197%pre
198/usr/sbin/useradd -M -u 42 -d %{_localstatedir}/gdm -s /sbin/nologin -r gdm > /dev/null 2>&1
199/usr/sbin/usermod -d %{_localstatedir}/gdm -s /sbin/nologin gdm >/dev/null 2>&1
200# ignore errors, as we can't disambiguate between gdm already existed
201# and couldn't create account with the current adduser.
202exit 0
203
204%post
205/sbin/ldconfig
206
207touch --no-create /usr/share/icons/hicolor >&/dev/null || :
208
209# if the user already has a config file, then migrate it to the new
210# location; rpm will ensure that old file will be renamed
211
212custom=%{_sysconfdir}/gdm/custom.conf
213
214if [ $1 -ge 2 ] ; then
215    if [ -f /usr/share/gdm/config/gdm.conf-custom ]; then
216        oldconffile=/usr/share/gdm/config/gdm.conf-custom
217    elif [ -f /etc/X11/gdm/gdm.conf ]; then
218        oldconffile=/etc/X11/gdm/gdm.conf
219    fi
220
221    # Comment out some entries from the custom config file that may
222    # have changed locations in the update.  Also move various
223    # elements to their new locations.
224
225    [ -n "$oldconffile" ] && sed \
226    -e 's@^command=/usr/X11R6/bin/X@#command=/usr/bin/Xorg@' \
227    -e 's@^Xnest=/usr/X11R6/bin/Xnest@#Xnest=/usr/X11R6/bin/Xnest@' \
228    -e 's@^BaseXsession=/etc/X11/xdm/Xsession@#BaseXsession=/etc/X11/xinit/Xsession@' \
229    -e 's@^BaseXsession=/etc/X11/gdm/Xsession@#&@' \
230    -e 's@^BaseXsession=/etc/gdm/Xsession@#&@' \
231    -e 's@^Greeter=/usr/bin/gdmgreeter@#Greeter=/usr/libexec/gdmgreeter@' \
232    -e 's@^RemoteGreeter=/usr/bin/gdmlogin@#RemoteGreeter=/usr/libexec/gdmlogin@' \
233    -e 's@^GraphicalTheme=Bluecurve@#&@' \
234    -e 's@^BackgroundColor=#20305a@#&@' \
235    -e 's@^DefaultPath=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin@#&@' \
236    -e 's@^RootPath=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin@#&@' \
237    -e 's@^HostImageDir=/usr/share/hosts/@#HostImageDir=/usr/share/pixmaps/faces/@' \
238    -e 's@^LogDir=/var/log/gdm@#&@' \
239    -e 's@^PostLoginScriptDir=/etc/X11/gdm/PostLogin@#&@' \
240    -e 's@^PreLoginScriptDir=/etc/X11/gdm/PreLogin@#&@' \
241    -e 's@^PreSessionScriptDir=/etc/X11/gdm/PreSession@#&@' \
242    -e 's@^PostSessionScriptDir=/etc/X11/gdm/PostSession@#&@' \
243    -e 's@^DisplayInitDir=/var/run/gdm.pid@#&@' \
244    -e 's@^RebootCommand=/sbin/reboot;/sbin/shutdown -r now;/usr/sbin/shutdown -r now;/usr/bin/reboot@#&@' \
245    -e 's@^HaltCommand=/sbin/poweroff;/sbin/shutdown -h now;/usr/sbin/shutdown -h now;/usr/bin/poweroff@#&@' \
246    -e 's@^ServAuthDir=/var/gdm@#&@' \
247    -e 's@^Greeter=/usr/bin/gdmlogin@Greeter=/usr/libexec/gdmlogin@' \
248    -e 's@^RemoteGreeter=/usr/bin/gdmgreeter@RemoteGreeter=/usr/libexec/gdmgreeter@' \
249    $oldconffile > $custom
250fi
251
252if [ $1 -ge 2 -a -f $custom ] && grep -q /etc/X11/gdm $custom ; then
253   sed -i -e 's@/etc/X11/gdm@/etc/gdm@g' $custom
254fi
255
256%postun
257/sbin/ldconfig
258scrollkeeper-update >& /dev/null ||:
259if [ $1 -eq 0 ]; then
260  touch --no-create %{_datadir}/icons/hicolor >&/dev/null || :
261  gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
262fi
263if [ $1 -eq 0 ]; then
264  glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
265fi
266
267%posttrans
268dconf update
269gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
270glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
271
272%files -f gdm.lang
273%defattr(-, root, root)
274%doc AUTHORS COPYING NEWS README TODO
275%dir %{_sysconfdir}/gdm
276%config(noreplace) %{_sysconfdir}/gdm/custom.conf
277%config %{_sysconfdir}/gdm/Init/*
278%config %{_sysconfdir}/gdm/PostLogin/*
279%config %{_sysconfdir}/gdm/PreSession/*
280%config %{_sysconfdir}/gdm/PostSession/*
281%config %{_sysconfdir}/pam.d/gdm
282%config %{_sysconfdir}/pam.d/gdm-autologin
283%config %{_sysconfdir}/pam.d/gdm-launch-environment
284%config %{_sysconfdir}/pam.d/gdm-password
285%config %{_sysconfdir}/pam.d/gdm-pin
286# not config files
287%{_sysconfdir}/gdm/Xsession
288%{_datadir}/gdm/gdm.schemas
289%{_sysconfdir}/X11/dm/Sessions/gnome.desktop
290%{_sysconfdir}/dbus-1/system.d/gdm.conf
291%dir %{_sysconfdir}/gdm/Init
292%dir %{_sysconfdir}/gdm/PreSession
293%dir %{_sysconfdir}/gdm/PostSession
294%dir %{_sysconfdir}/gdm/PostLogin
295%{_datadir}/pixmaps/*.png
296%{_datadir}/icons/hicolor/*/apps/*.png
297%{_libexecdir}/gdm-host-chooser
298%{_libexecdir}/gdm-session-worker
299%{_libexecdir}/gdm-simple-chooser
300%{_libexecdir}/gdm-simple-slave
301%{_libexecdir}/gdm-xdmcp-chooser-slave
302%{_sbindir}/gdm
303%{_sbindir}/gdm-restart
304%{_sbindir}/gdm-safe-restart
305%{_sbindir}/gdm-stop
306%{_bindir}/gdmflexiserver
307%{_bindir}/gdm-screenshot
308%{_datadir}/gdm/locale.alias
309%{_datadir}/gdm/gdb-cmd
310%{_libdir}/libgdm*.so*
311%{_libdir}/girepository-1.0/*.typelib
312%dir %{_datadir}/gdm
313%dir %{_datadir}/gdm/autostart
314%dir %{_datadir}/gdm/autostart/LoginWindow
315%{_datadir}/gdm/autostart/LoginWindow/*
316%{_datadir}/gdm/greeter/autostart/orca-autostart.desktop
317%{_datadir}/gdm/greeter/applications/*
318%{_datadir}/glib-2.0/schemas/org.gnome.login-screen.gschema.xml
319%{_datadir}/gnome-session/sessions/gdm-shell.session
320%dir %{_localstatedir}/log/gdm
321%dir %{_localstatedir}/spool/gdm
322%attr(1770, gdm, gdm) %dir %{_localstatedir}/gdm
323%attr(1755, gdm, gdm) %dir %{_localstatedir}/run/gdm/greeter
324%attr(1777, root, gdm) %dir %{_localstatedir}/run/gdm
325%attr(1755, root, gdm) %dir %{_localstatedir}/cache/gdm
326%{_sysconfdir}/dconf/profile/gdm
327%{_sysconfdir}/dconf/db/gdm.d/00-upstream-settings
328%{_sysconfdir}/dconf/db/gdm.d/locks/00-upstream-settings-locks
329
330%files devel
331%defattr(-, root, root)
332%{_includedir}/gdm/gdm-client-glue.h
333%{_includedir}/gdm/gdm-client.h
334%{_includedir}/gdm/gdm-sessions.h
335%{_includedir}/gdm/gdm-user-switching.h
336%{_datadir}/gir-1.0/*.gir
337%{_libdir}/pkgconfig/*.pc
338
339
340%changelog
341* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0.1-1
342- new upstream release
343- update Patch500 (gdm-3.10.0-vine-release.patch)
344- remove Patch501 (gdm-3.6.0-simple-slave-vine.patch)
345- remove plugin-smartcard and plugin-fingerprint subpackages
346
347* Mon Apr 22 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1.1-1
348- new upstream release
349- add Requires: gnome-shell
350
351* Thu Nov 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.2-1
352- new upstream release
353
354* Thu Oct 18 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.1-1
355- new upstream release
356- remove Patch502 (libgdm-correct-invalid-gvariant-format-string.patch)
357
358* Fri Oct 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.0-1
359- new upstream release
360- remove Patch0 (plymouth.patch)
361- remove Patch105 (05_initial_server_on_vt7.patch)
362- remove Patch501 (gdm-2.32.0-greeter-login-window-be-dock.patch)
363- add Patch501 (gdm-3.6.0-simple-slave-vine.patch)
364- add Patch502 (libgdm-correct-invalid-gvariant-format-string.patch)
365- add BuildRequires: plymouth-devel, itstool
366- remove Source3,7,8,9,10
367
368* Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.1-1
369- new upstream release
370- update Patch0
371- remove Patch134,503
372
373* Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.1.1-1
374- new upstream release
375- change BuildRequires: dconf-devel instead of dconf
376
377* Sat Oct 01 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
378- new upstream release
379- create %%{name}-devel sub package
380- add BuildRequires: libSM-devel
381
382* Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.2-1
383- new upstream release
384- merge spec and patch files
385
386        * Wed Aug  3 2011 Lennart Poettering <lpoetter@redhat.com> - 1:3.1.2-4
387        - Register welcome pseudo-session in PAM
388        * Tue Jun 28 2011 Ray Strode <rstrode@redhat.com> 3.1.2-3
389        - Disable fatal critcals
390          Resolves: #717324
391        * Tue Jun 21 2011 Michael Schwendt <mschwendt@fedoraproject.org> - 3.1.2-2
392        - Fix /dev/ull typo in scriptlets (#693046).
393        * Mon Jun 13 2011 Ray Strode <rstrode@redhat.com> 3.1.2-1
394        - Update for release
395        * Mon Jun 06 2011 Ray Strode <rstrode@redhat.com> 3.0.4-1
396        - Update to latest version
397          Resolves CVE-2011-1709
398        * Fri Apr 15 2011 Matthias Clasen <mclasen@redhat.com> - 3.0.0-2
399        - Put the Fedora logo back in the greeter
400        * Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> - 3.0.0-1
401        - Update to 3.0.0
402
403* Sat Jul 02 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.32.2-5
404- add patch134 to disable a11y (revert upstream change)
405- add patch138 to give focus to user chooser on startup
406
407* Tue Jun 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.32.2-4
408- add patch117 to use timed login after autologin.
409
410* Wed Jun 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.32.2-3
411- add patch504 to use vine logo for simple greeter panel instead of
412  computer.svg.
413
414* Mon Jun 06 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.32.2-2
415- add patch503 to disable metacity compositing_manager
416
417* Fri Jun 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.2-1
418- update to 2.32.2
419  (including security fix for CVE-2011-1709)
420- drop Patch109
421- add Patch502 (gdm-2.32.2-simple-greeter-vine.patch)
422- update ja.po
423
424* Fri May 13 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.1-1
425- update to 2.32.1
426  (including security fix for CVE-2011-0727)
427- update Patch128,500
428
429* Wed Mar 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.32.0-2
430- add Patch501 to fix metacity warning..
431- update ja.po
432
433* Tue Mar 08 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.32.0-1
434- update to 2.32.0
435- remove R: plymouth-gdm-hooks
436- use ubuntu plymouth integration patch instead of fedora's.
437- update ubuntu patches
438
439* Sat Jan 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-6
440- remove Patch1 (gdm-2.30.2-UTF-8.patch)
441
442* Mon Jan 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-5
443- add Patch1 (gdm-2.30.2-UTF-8.patch)
444
445* Sat Oct 16 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-4
446- add BuildRequires: polkit-devel, gnome-panel-devel, libxklavier-devel, upower-devel,
447                     libXdmcp-devel, gnome-doc-utils, libICE-devel
448- add Patch100 (01_upower.patch) from ubuntu
449- add Patch105 (02_x_server_location.patch) from ubuntu
450- add Patch501 (gdm-2.30.2_add_dbus_glib_to_applet_deps.patch)
451- add configure option (--with-working-directory=%%{_localstatedir}/gdm)
452- fix %files (fix working directory)
453
454* Sun May 23 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.30.0-3
455- fix patch500: fix login panel crash on x86_64 (<BTS:992>)
456
457* Fri May 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.30.0-2
458- add patch104: hide mouse cursor on startup user session
459- add patch500: read vine-release to get system version
460
461* Mon May 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.30.0-1
462- new upstream release
463- add patch101,102,103 from ubuntu
464- drop themes
465
466* Sat Jul 25 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.20.10-6
467- update Patch100: fix typo & change BackgroundColor/GraphicalThemedColor
468  <BTS:VineLinux:0732>
469- add BuildRequires: libdmx-devel, audit-libs-devel
470
471* Thu May 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-5
472- add patch11: add hibernate button in GDM menu
473- add pathc18: use combo boxc for language selector
474
475* Mon May 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-4
476- remove explicit dependency to gnome libraries
477- remove BR: libgnome{ui,canvas}-devel
478- add Requires: xorg-x11-xdm
479
480* Mon May 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-3
481- update vine themes
482  - sync Vine-list with new Vine theme
483
484* Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-2
485- update vine theme
486
487* Mon Apr 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-1
488- update to 2.20.10
489- update vine themes
490  - add Requires: vine-backgrounds >= 4.0
491
492* Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.8-1
493- update to 2.20.8
494  - gdm-2.22/24 still not mature, so We are staying
495    with gdm-2.20 branch.
496
497* Wed Jun 25 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.20.5-2
498- rebuilt with --with-console-kit
499- TODO: update to 2.22.0 with PolicyKit support
500
501* Mon May 12 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.5-1
502- update to 2.20.5
503  - TODO: update to 2.22.0
504  - TODO: update theme to support gdm-2.22.0
505- build with xorg-x11-7.3
506
507* Mon Jan 14 2008 Shu KONNO <owa@bg.wakwak.com> 2.18.1-0vl4
508- added gdm-2.18.1-gdmphotosetup-desktop.patch
509
510* Fri May 04 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl3
511- import some upstream patches
512
513* Fri May 04 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl2
514- update Vine theme
515
516* Fri May 04 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl1
517- new upstream release
518
519* Thu Dec 28 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.10-0vl5
520- rebuilt for VineSeed
521
522* Thu Dec 21 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.14.10-0vl4.2
523- add Vendor/Distribution tag
524- fix changelog typo
525
526* Mon Dec 18 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.14.10-0vl4.1
527- add patch200 for fix CVE-2006-6105
528
529* Thu Sep 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.10-0vl4
530- update locale.alias
531  - remove unsupported langs, add ja_JP.UTF-8
532
533* Fri Sep 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.10-0vl3
534- update gdm-theme-vine
535  - shrink image size
536
537* Sun Aug 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.10-0vl2
538- update gdm-theme-vine
539  - add Face-browser version of Vine theme.
540
541* Sat Aug 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.10-0vl1
542- new upstream release
543- update gdm-theme-vine
544- drop Patch10 (merged in upstream)
545
546* Sun Jun 11 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.8-0vl1
547- new upstream release
548- add Patch10 to fix autologin
549  (<BTS:63>, http://bugzilla.gnome.org/show_bug.cgi?id=344191)
550
551* Sun Jun 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.7-0vl1
552- new upstream release
553
554* Sun May 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.6-0vl1
555- new upstream release
556- remove xsri dependency
557
558* Sun May 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.5-0vl2
559- use consolehelper for gdmsetup
560
561* Sat May 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.5-0vl1
562- new upstream release
563
564* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-0vl1
565- new upstream release
566
567* Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl2
568- rebuild to change _localstatedir
569
570* Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl1
571- new upstream release
572
573* Sun Mar 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.0.10-0vl2
574- fix %%post script for Vine Linux
575- remove Patch17,18 which are not needed for Vine Linux
576
577* Sun Mar 12 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.13.0.10-0vl1
578- new upstream release
579- updated %%post and %%postun script
580
581* Tue Sep 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0.4-0vl1
582- new upstream release
583- import gdm-theme-vine from Vine Linux 3.2
584
585* Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.0.6-0vl1
586- new upstream release
587- build with gnome-2.8.1
588
589* Sun Oct 17 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.0.5-0vl1
590- new upstream release
591- update Vine patch
592- remove obsolete patch and ja.po
593
594* Fri Oct 15 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl10
595- update Vine theme for Vine Linux 3.1
596
597* Mon Jul 26 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl9
598- rebuild to fix bogus consolehelper symlinks
599
600* Fri Jul 23 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl8
601- revert 0vl7's change..
602
603* Thu Jul 22 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl7
604- use 100dpi for X resolution instead of 96dpi
605
606* Mon Jun 28 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl6
607- Requires usermode-gtk instead of usermode
608
609* Wed Jun 16 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl5
610- move WindowMaker.desktop to WindowMaker package.
611
612* Fri Apr  2 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl4
613- add modified ja.po to fix a strange date notation in gdmlogin.
614
615* Wed Mar 10 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl3
616- add new Vine theme, rename old Vine theme to AquaVine
617- switch to new default Theme
618
619* Fri Mar  5 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl2
620- update GDM-Vine theme to change font size.
621
622* Sat Jan 31 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl1
623- new upstream release
624
625* Sat Oct 18 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.4-0vl1
626- new upstream release
627
628* Sun Sep 28 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.3-0vl1
629- new upstream release
630- fix locale.alias to use ja_JP.eucJP instead of UTF-8 for Japanese locale.
631  (this was fixed in 2.4.0.12, but it does not works with 2.4.4.x)
632
633* Tue Sep 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.1-0vl1
634- new upstream release
635
636* Sat Sep 13 2003 KAZUKI SHIMURA <rito@pos.to> 2.4.4.0-0vl4
637- fix LogDir/ServAuthDir
638
639* Tue Sep 09 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.0-0vl3
640- add WindowMaker.desktop which should go to WindowMaker package.
641
642* Tue Sep 09 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.0-0vl2
643- update ja.po
644- modified gdm.conf
645
646* Mon Sep 08 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.0-0vl1
647- new upstream release
648- partially merged with rawhide package
649  * Thu Sep  4 2003 Alexander Larsson <alexl@redhat.com> 1:2.4.4.0-2
650  - Use the right default session (#103546)
651  * Wed Sep  3 2003 Alexander Larsson <alexl@redhat.com> 1:2.4.4.0-1
652  - update to 2.4.4.0
653  - update to georges new selinux patch
654  * Fri Aug 29 2003 Elliot Lee <sopwith@redhat.com> 1:2.4.2.102-2
655  - Remove scrollkeeper files
656  * Tue Aug 26 2003 George Lebl <jirka@5z.com> 1:2.4.2.102-1
657  - updated to 2.4.2.102
658  - removed outdated patches
659  - Use Xsetup_0 only for :0 since that's the way it works
660    for xdm
661  - remove the gnome.desktop file, its going into gnome-session
662  * Thu Aug 14 2003 Havoc Pennington <hp@redhat.com> 1:2.4.1.6-1
663  - update to latest bugfix version on george's advice
664  - remove setlocale patch that's upstream
665  - remove console setup patches that are upstream
666  * Thu Jun 12 2003 Dan Walsh <dwalsh@redhat.com> 2.4.1.3-9
667  - Port to SELinux
668  * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
669  - rebuilt
670  * Tue Jun  3 2003 Jeff Johnson <jbj@redhat.com>
671  - add explicit epoch's where needed.
672  * Sun May 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
673  - fix post: localstatedir -> _localstatedir
674  * Thu May  1 2003 Havoc Pennington <hp@redhat.com> 1:2.4.1.3-6
675  - enable UTF-8 for CJK
676  * Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
677  - debuginfo rebuild
678  * Thu Feb 20 2003 Owen Taylor <otaylor@redhat.com>
679  - Run the error dialogs under /bin/sh --login, so we
680    get lang.sh, and thus unicode_start running. Fixes
681    the X-doesn't-start dialog showing up as random
682    blinking characters.
683  * Fri Feb 14 2003 Havoc Pennington <hp@redhat.com> 1:2.4.1.3-2
684  - nuke buildreq Xft
685  * Wed Feb  5 2003 Havoc Pennington <hp@redhat.com> 1:2.4.1.3-1
686  - upgrade to 2.4.1.3
687  * Mon Feb  3 2003 Matt Wilson <msw@redhat.com> 1:2.4.1.1-6
688  - added gdm-2.4.1.1-64bit.patch to fix 64 bit crash in cookie
689    generation (#83334)
690  * Mon Feb  3 2003 Owen Taylor <otaylor@redhat.com>
691  - Add patch to fix problem where setting LC_COLLATE=C would give LC_MESSAGES=wa_BE (#82019)
692  * Thu Jan 30 2003 Matt Wilson <msw@redhat.com> 1:2.4.1.1-3
693  - fix pam.d entry, pam_env wasn't properly patched
694  - disable optimizations on x86_64 to work around gcc bug
695  * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
696  - rebuilt
697  * Mon Jan 20 2003 Owen Taylor <otaylor@redhat.com>
698  - Upgrade to 2.4.1.1 (Fixes #81907)
699  - Redirect stdout of kill to /dev/null (#80814)
700  * Thu Jan  9 2003 Havoc Pennington <hp@redhat.com>
701  - 2.4.1.0
702  - add patch from george to ask "are you sure?" for shutdown/reboot since
703    it's now just one click away
704  * Thu Dec 19 2002 Havoc Pennington <hp@redhat.com>
705  - 2.4.0.12
706  - update new patch for no-utf8-in-cjk
707  - drop patch to photo setup, now upstream
708  - drop confdocs patch now upstream
709  - move all the gdm.conf changes into single "rhconfig" patch
710  - remove "sid-fix" patch now upstream
711
712* Sun Jan 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1.2-0vl1
713- new upstream release
714- add '-dpi 96' to Xserver option. (change default to 96dpi)
715
716* Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1.1-0vl1
717- new upstream release
718
719* Sat Jan  4 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1.0-0vl1
720- new upstream release
721- update PreReq tag.
722- discard scrollkeeper outputs.
723
724* Fri Jan  3 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0.12-0vl3
725- add Vine theme as default.
726- change ja locale from utf8 to eucJP
727- add Xsession/Xclients script for gdm.
728- add Sessions/* for Gnome/WindowMaker.
729
730* Mon Dec 30 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0.12-0vl2
731- remove redhat category
732
733* Mon Dec 30 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0.12-0vl1
734- merged with rawhide release for gnome2.
735
736* Mon Nov 11 2002 Nalin Dahyabhai <nalin@redhat.com> 2.4.0.7-14
737- remove the directory part of module specifications from the PAM config files,
738  allowing the same PAM config to work for either arch on multilib boxes
739
740* Thu Sep  5 2002 Owen Taylor <otaylor@redhat.com>
741- Change zh_CN entry in language menu to zh_CN.GB18030
742
743* Thu Sep  5 2002 Akira TAGOH <tagoh@redhat.com> 2.4.0.7-12
744- copied gdm-ja.po to ja.po.
745
746* Mon Sep  2 2002 Owen Taylor <otaylor@redhat.com>
747- Fix problem where gdm was opening ~/.xsession-errors itself to bad effect
748
749* Sat Aug 31 2002 Havoc Pennington <hp@redhat.com>
750- include ja.po with new date format
751
752* Wed Aug 28 2002 Havoc Pennington <hp@redhat.com>
753- remove noreplace on gdm.conf #71309
754- make gnome-gdmsetup absolute, #72910
755
756* Wed Aug 28 2002 Havoc Pennington <hp@redhat.com>
757- put /usr/X11R6/bin in path for now fixes #72781
758- use proper i18n algorithm for word wrap, #71937
759- remove greek text from language picker due to lack
760  of greek font
761- reorder PAM config file #72657
762
763* Wed Aug 28 2002 Havoc Pennington <hp@redhat.com>
764- improve gdmsetup icon
765- remove GNOME session, we will instead put it in gnome-session
766- apply patch from george to make gdmphotosetup file selector
767  work
768
769* Mon Aug 26 2002 Elliot Lee <sopwith@redhat.com> 2.4.0.7-6
770- Patches for #64902, #66486, #68483, #71308
771- post-install script changes from the gdm.spec mentioned in #70965
772- noreplace on gdm.conf for #71309
773
774* Sun Aug 25 2002 Havoc Pennington <hp@redhat.com>
775- put in a patch from george to fix some setsid()/kill() confusion
776  possibly fixing #72295
777- turn off UseCirclesInEntry for now, fixes #72433
778
779* Tue Aug 20 2002 Alexander Larsson <alexl@redhat.com>
780- Set UseCirclesInEntry to true in config
781
782* Thu Aug 15 2002 Havoc Pennington <hp@redhat.com>
783- rename Gnome session to GNOME, this was just bugging me
784
785* Thu Aug  8 2002 Havoc Pennington <hp@redhat.com>
786- 2.4.0.7 with bugfixes George kindly did for me,
787  including mnemonics for the graphical greeter
788- use Wonderland gtk theme for the nongraphical greeter
789- remove patches that are now upstream
790
791* Tue Jul 30 2002 Havoc Pennington <hp@redhat.com>
792- update rhconfig patch
793- use pam_timestamp for the config tool
794- link to a desktop file in redhat-menus
795- update .gnome2 patch, filed upstream bug
796- 2.4.0.4
797- rebuild with new gail, librsvg2
798
799* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
800- Require redhat-artwork, make the default greeter theme Wonderland
801- Look for all configuration in .gnome2 not .gnome. This avoids problems
802  with changes in the set of session/lang.
803- Remove English from locale.alias, make most locales UTF-8
804-C all find_lang with the right name
805
806* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
807- rebuild for new libs
808- put gdm-autologin pam config file in file list, hope
809  its absence wasn't deliberate
810- use desktop-file-install
811
812* Mon Jun 10 2002 Havoc Pennington <hp@redhat.com>
813- rebuild in different environment
814
815* Mon Jun 10 2002 Havoc Pennington <hp@redhat.com>
816- 2.4.0.0
817
818* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
819- rebuild in different environment
820
821* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
822- 2.3.90.3
823
824* Tue May 14 2002 Matt Wilson <msw@redhat.com> 2.3.90.2.90-1
825- pulled from current CVS, named it 2.3.90.2.90-1
826
827* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
828- rebuild for new libs
829- add URL tag
830
831* Mon Feb 11 2002 Alex Larsson <alexl@redhat.com> 2.3.90.1.90-1
832- Updated to a cvs snapshot that has the new greeter.
833
834* Thu Jan 24 2002 Havoc Pennington <hp@redhat.com>
835- rebuild in rawhide
836
837* Tue Sep  4 2001 Havoc Pennington <hp@redhat.com>
838- fix #52997 (ukrainian in language list)
839
840* Fri Aug 31 2001 Havoc Pennington <hp@redhat.com>
841- Add po files from sources.redhat.com
842
843* Mon Aug 27 2001 Havoc Pennington <hp@redhat.com>
844- Add po files from sources.redhat.com
845
846* Wed Aug 15 2001 Nalin Dahyabhai <nalin@redhat.com>
847- set SESSION to true in console.apps control file
848
849* Tue Aug 14 2001 Havoc Pennington <hp@redhat.com>
850- change default title font to work in CJK, #51698
851
852* Wed Aug  8 2001 Bill Nottingham <notting@redhat.com>
853- fix %pre for using /var/gdm as home dir
854
855* Sun Aug  5 2001 Nalin Dahyabhai <nalin@redhat.com>
856- Tweak PAM setup for gdmconfig to match other consolehelper users
857
858* Fri Aug  3 2001 Owen Taylor <otaylor@redhat.com>
859- Set RUNNING_UNDER_GDM when running display init script
860- Run xsri as the background program
861
862* Thu Aug 02 2001 Havoc Pennington <hp@redhat.com>
863- Change how session switching works, #49480
864- don't offer to make Failsafe the default, #49479
865
866* Thu Aug 02 2001 Havoc Pennington <hp@redhat.com>
867- clean up some format string mess, and don't
868  log username to syslog, #5681
869- own some directories #50692
870
871* Wed Aug 01 2001 Havoc Pennington <hp@redhat.com>
872- require/buildrequire latest gnome-libs, to compensate
873  for upstream crackrock. #50554
874
875* Tue Jul 31 2001 Havoc Pennington <hp@redhat.com>
876- get rid of GiveConsole/TakeConsole, bug #33710
877
878* Sun Jul 22 2001 Havoc Pennington <hp@redhat.com>
879- use Raleigh theme for gdm
880
881* Thu Jul 19 2001 Havoc Pennington <hp@redhat.com>
882- depend on usermode, xinitrc
883 
884* Thu Jul 19 2001 Havoc Pennington <hp@redhat.com>
885- build requires pam-devel, should fix #49448
886
887* Mon Jul 16 2001 Havoc Pennington <hp@redhat.com>
888- log to /var/log/gdm/*
889
890* Mon Jul 16 2001 Havoc Pennington <hp@redhat.com>
891- make Halt... power off
892
893* Tue Jul 10 2001 Havoc Pennington <hp@redhat.com>
894- gdm user's homedir to /var/gdm not /home/gdm
895
896* Mon Jul 09 2001 Havoc Pennington <hp@redhat.com>
897- put pam.d/gdm back in file list
898
899* Sun Jul 08 2001 Havoc Pennington <hp@redhat.com>
900- upgrade to 2.2.3.1, pray this fixes more than it breaks
901
902* Thu Jul 05 2001 Havoc Pennington <hp@redhat.com>
903- add "rpm" user to those not to show in greeter
904
905* Tue Jul 03 2001 Havoc Pennington <hp@redhat.com>
906- Upgrade to 2.2.3
907- require usermode since configure script now checks for it
908
909* Fri Jun 01 2001 Havoc Pennington <hp@redhat.com>
910- Prereq for scrollkeeper-update
911
912* Wed May 30 2001 Havoc Pennington <hp@redhat.com>
913- New CVS snap with the "no weird sessions" options;
914  more default settings changes
915
916* Wed May 30 2001 Havoc Pennington <hp@redhat.com>
917- Change a bunch of default settings; remaining fixes will involve C hacking
918
919* Wed May 30 2001 Havoc Pennington <hp@redhat.com>
920- After, oh, 2 years or so, finally upgrade version and set
921  release to 1. Remove all hacks and patches, pretty much;
922  this will break a few things, will be putting them back
923  via GNOME CVS. All changes should go in 'gdm2' module in
924  CVS for now.
925
926  This RPM enables all kinds of features that I'm going to turn
927  off shortly, so don't get excited about them. ;-)
928
929* Thu Mar 22 2001 Nalin Dahyabhai <nalin@redhat.com>
930- reinitialize pam credentials after calling initgroups() -- the
931  credentials may be group memberships
932
933* Mon Mar 19 2001 Owen Taylor <otaylor@redhat.com>
934- Fix colors patch
935
936* Thu Mar 15 2001 Havoc Pennington <hp@redhat.com>
937- translations
938
939* Mon Mar  5 2001 Preston Brown <pbrown@redhat.com>
940- don't screw up color map on 8 bit displays
941
942* Fri Feb 23 2001 Trond Eivind Glomsr藷?<teg@redhat.com>
943- langify
944- Don't define and use "ver" and "nam" at the top of the spec file
945- use %%{_tmppath}
946
947* Tue Feb 13 2001 Tim Powers <timp@redhat.com>
948- don't allow gdm to show some system accounts in the browser bugzilla
949  #26898
950
951* Fri Jan 19 2001 Akira TAGOH <tagoh@redhat.com>
952- Updated Japanese translation.
953
954* Tue Jan 02 2001 Havoc Pennington <hp@redhat.com>
955- add another close() to the fdleak patch, bugzilla #22794
956
957* Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
958- Return to toplevel main loop and start Xdcmp if enabled
959  (Bug #16106)
960
961* Fri Aug 11 2000 Jonathan Blandford <jrb@redhat.com>
962- Up Epoch and release
963
964* Wed Aug 02 2000 Havoc Pennington <hp@redhat.com>
965- Requires Xsession script
966
967* Wed Jul 19 2000 Owen Taylor <otaylor@redhat.com>
968- Italian is better as it_IT than it_CH (bugzilla 12425)
969
970* Mon Jul 17 2000 Jonathan Blandford <jrb@redhat.com>
971- Don't instally gdmconfig as it doesn't work.
972
973* Fri Jul 14 2000 Havoc Pennington <hp@redhat.com>
974- Rearrange code to avoid calling innumerable system calls
975  in a signal handler
976
977* Fri Jul 14 2000 Havoc Pennington <hp@redhat.com>
978- Verbose debug spew for infinite loop stuff
979
980* Fri Jul 14 2000 Havoc Pennington <hp@redhat.com>
981- Try to fix infinite loops on X server failure
982
983* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
984- automatic rebuild
985
986* Thu Jun 29 2000 Havoc Pennington <hp@redhat.com>
987- Remove Docdir
988
989* Mon Jun 19 2000 Havoc Pennington <hp@redhat.com>
990- Fix file descriptor leak (Bugzilla 12301)
991
992* Mon Jun 19 2000 Havoc Pennington <hp@redhat.com>
993- Apply security errata patch we released for 6.2
994- Add Gnome.session back, don't know when it disappeared or why
995
996* Thu Jun  1 2000 Nalin Dahyabhai <nalin@redhat.com>
997- modify PAM setup to use system-auth
998
999* Fri May 19 2000 Havoc Pennington <hp@redhat.com>
1000- rebuild for the Winston tree
1001
1002* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
1003- Modify Default.session and Failsafe.session not to add -login option to bash
1004- exec the session scripts with the user's shell with a hyphen prepended
1005- doesn't seem to actually work yet with tcsh, but it doesn't seem to
1006  break anything. needs a look to see why it doesn't work
1007
1008* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
1009- Link PreSession/Default to xdm/GiveConsole
1010- Link PostSession/Default to xdm/TakeConsole
1011
1012* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
1013- Fix the fix to the fix (8877)
1014- remove docs/gdm-manual.txt which doesn't seem to exist from %doc
1015
1016* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
1017- Enhance 8877 fix by not deleting the "Please login"
1018  message
1019
1020* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
1021- Try to fix bug 8877 by clearing the message below
1022  the entry box when the prompt changes. may turn
1023  out to be a bad idea.
1024
1025* Mon Jan 17 2000 Elliot Lee <sopwith@redhat.com>
1026- Fix bug #7666: exec Xsession instead of just running it
1027
1028* Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
1029- Work around so that russian works (uses koi8-r instead
1030  of the default iso8859-5)
1031
1032* Tue Oct 12 1999 Owen Taylor <otaylor@redhat.com>
1033- Try again
1034
1035* Tue Oct 12 1999 Owen Taylor <otaylor@redhat.com>
1036- More fixes for i18n
1037
1038* Tue Oct 12 1999 Owen Taylor <otaylor@redhat.com>
1039- Fixes for i18n
1040
1041* Sun Sep 26 1999 Elliot Lee <sopwith@redhat.com>
1042- Fixed pipewrite bug (found by mkj & ewt).
1043
1044* Fri Sep 17 1999 Michael Fulbright <drmike@redhat.com>
1045- added requires for pam >= 0.68
1046
1047* Fri Sep 10 1999 Elliot Lee <sopwith@redhat.com>
1048- I just update this package every five minutes, so any recent changes are my fault.
1049
1050* Thu Sep 02 1999 Michael K. Johnson <johnsonm@redhat.com>
1051- built gdm-2.0beta2
1052
1053* Mon Aug 30 1999 Michael K. Johnson <johnsonm@redhat.com>
1054- built gdm-2.0beta1
1055
1056* Tue Aug 17 1999 Michael Fulbright <drmike@redhat.com>
1057- included rmeier@liberate.com patch for tcp socket X connections
1058
1059* Mon Apr 19 1999 Michael Fulbright <drmike@redhat.com>
1060- fix to handling ancient gdm config files with non-standard language specs
1061- dont close display connection for xdmcp connections, else we die if remote
1062  end dies.
1063
1064* Fri Apr 16 1999 Michael Fulbright <drmike@redhat.com>
1065- fix language handling to set GDM_LANG variable so gnome-session
1066  can pick it up
1067
1068* Wed Apr 14 1999 Michael Fulbright <drmike@redhat.com>
1069- fix so certain dialog boxes dont overwrite background images
1070
1071* Wed Apr 14 1999 Michael K. Johnson <johnsonm@redhat.com>
1072- do not specify -r 42 to useradd -- it doesn't know how to fall back
1073  if id 42 is already taken
1074
1075* Fri Apr 9 1999 Michael Fulbright <drmike@redhat.com>
1076- removed suspend feature
1077
1078* Mon Apr 5 1999 Jonathan Blandford <jrb@redhat.com>
1079- added patch from otaylor to not call gtk funcs from a signal.
1080- added patch to tab when username not added.
1081- added patch to center About box (and bring up only one) and ignore "~"
1082  and ".rpm" files.
1083
1084* Fri Mar 26 1999 Michael Fulbright <drmike@redhat.com>
1085- fixed handling of default session, merged all gdmgreeter patches into one
1086
1087* Tue Mar 23 1999 Michael Fulbright <drmike@redhat.com>
1088- remove GNOME/KDE/AnotherLevel session scripts, these have been moved to
1089  the appropriate packages instead.
1090- added patch to make option menus always active (security problem otherwise)
1091- added jrb's patch to disable stars in passwd entry field
1092
1093* Fri Mar 19 1999 Michael Fulbright <drmike@redhat.com>
1094- made sure /usr/bin isnt in default path twice
1095- strip binaries
1096
1097* Wed Mar 17 1999 Michael Fulbright <drmike@redhat.com>
1098- fixed to use proper system path when root logs in
1099
1100* Tue Mar 16 1999 Michael Fulbright <drmike@redhat.com>
1101- linked Init/Default to Red Hat default init script for xdm
1102- removed logo from login dialog box
1103
1104* Mon Mar 15 1999 Michael Johnson <johnsonm@redhat.com>
1105- pam_console integration
1106
1107* Tue Mar 09 1999 Michael Fulbright <drmike@redhat.com>
1108- added session files for GNOME/KDE/AnotherLevel/Default/Failsafe
1109- patched gdmgreeter to not complete usernames
1110- patched gdmgreeter to not safe selected session permanently
1111- patched gdmgreeter to center dialog boxes
1112
1113* Mon Mar 08 1999 Michael Fulbright <drmike@redhat.com>
1114- removed comments from gdm.conf file, these are not parsed correctly
1115
1116* Sun Mar 07 1999 Michael Fulbright <drmike@redhat.com>
1117- updated source line for accuracy
1118
1119* Fri Feb 26 1999 Owen Taylor <otaylor@redhat.com>
1120- Updated patches for 1.0.0
1121- Fixed some problems in 1.0.0 with installation directories
1122- moved /usr/var/gdm /var/gdm
1123
1124* Thu Feb 25 1999 Michael Fulbright <drmike@redhat.com>
1125- moved files from /usr/etc to /etc
1126
1127* Tue Feb 16 1999 Michael Johnson <johnsonm@redhat.com>
1128- removed commented-out #1 definition -- put back after testing gnome-libs
1129  comment patch
1130
1131* Sat Feb 06 1999 Michael Johnson <johnsonm@redhat.com>
1132- initial packaging
1133
Note: See TracBrowser for help on using the repository browser.