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

Revision 12056, 40.3 KB checked in by tomop, 5 years ago (diff)

Merge branch 'tomop'

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