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

Revision 8353, 38.9 KB checked in by Takemikaduchi, 10 years ago (diff)

GNOME-3.12.0

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