source: projects/specs/branches/6/u/usermode/usermode-vl.spec @ 4196

Revision 4196, 21.2 KB checked in by daisuke, 13 years ago (diff)

usermode:

  • update to 1.107
  • add UGROUPS=wheel to config-util
  • update ja.po for better authentication dialog
Line 
1Summary: Tools for certain user account management tasks.
2Summary(ja): ユーザアカウント管理用ツール
3Name: usermode
4Version: 1.107
5Release: 1%{?_dist_release}
6License: GPLv2+
7Group: Applications/System
8URL: https://fedorahosted.org/usermode/
9
10Source: https://fedorahosted.org/releases/u/s/usermode/usermode-%{version}.tar.xz
11## Vine Source(s)/Patch(es)
12Source10: usermode-1.107-ja.po
13Patch10: usermode-1.37-halt-p.patch
14
15Vendor: Project Vine
16Distribution: Vine Linux
17Packager: daisuke
18
19BuildRoot: %{_tmppath}/%{name}-%{version}-root
20BuildRequires: desktop-file-utils, glib2-devel, gtk2-devel
21BuildRequires: libglade2-devel, libuser-devel, pam-devel, util-linux-ng, libwnck-devel
22BuildRequires: libblkid-devel
23BuildRequires: perl-XML-Parser, libSM-devel, startup-notification-devel, gettext
24
25Requires: util-linux-ng, pam >= 0.75, passwd
26Conflicts: SysVinit < 2.74-14
27
28%description
29The usermode package contains the userhelper program, which can be
30used to allow configured programs to be run with superuser privileges
31by ordinary users.
32
33%description -l ja
34usermode パッケージには、一般ユーザが設定されたプログラムをスーパーユー
35ザとして実行できるようにするユーザヘルパープログラムが含まれています。
36
37%package gtk
38Summary: Graphical tools for certain user account management tasks.
39Summary(ja): ユーザアカウント管理用グラフィカルツール
40Group: Applications/System
41Requires: %{name} = %{version}-%{release}
42
43%description gtk
44The usermode-gtk package contains several graphical tools for users:
45userinfo, usermount and userpasswd.  Userinfo allows users to change
46their finger information.  Usermount lets users mount, unmount, and
47format filesystems.  Userpasswd allows users to change their
48passwords.
49
50Install the usermode-gtk package if you would like to provide users with
51graphical tools for certain account management tasks.
52
53%description gtk -l ja
54usermode-gtk には userinfo, usermount, userpasswd といったユーザ用
55グラフィカルツールも収められています。userinfo を使うと一般ユーザが自
56分のアカウントの finger 情報を変更することが出来ます.
57usermount は一般ユーザがファイルシステムのマウント/アンマウント/初期化を
58行うことを可能にします.userpasswd は一般ユーザが自分のパスワードを
59変更するのに使います.
60
61一般ユーザ向けに,アカウント管理用グラフィカルツールを提供したい場合は
62usermode パッケージをインストールして下さい.
63
64%prep
65%setup -q
66cp -f po/ja.po po/ja.po.orig
67cp -f %{SOURCE10} po/ja.po
68
69%patch10 -p1 -b .halt-p
70
71%build
72intltoolize --force --copy
73autoreconf
74%configure
75make -C po usermode.pot
76make -C po update-po
77make
78
79%install
80rm -rf $RPM_BUILD_ROOT
81make install DESTDIR=$RPM_BUILD_ROOT
82
83# We set up the shutdown programs to be wrapped in this package.  Other
84# packages are on their own....
85mkdir -p $RPM_BUILD_ROOT/etc/pam.d $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps
86for wrappedapp in halt reboot poweroff ; do
87        ln -s consolehelper $RPM_BUILD_ROOT%{_bindir}/${wrappedapp}
88        install -m644 $wrappedapp $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps/${wrappedapp}
89        cp shutdown.pamd $RPM_BUILD_ROOT/etc/pam.d/${wrappedapp}
90done
91cat <<EOF > $RPM_BUILD_ROOT/etc/security/console.apps/config-util
92USER=root
93UGROUPS=wheel
94EOF
95
96for desktopfile in $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop
97do
98  mv $desktopfile ${desktopfile/redhat-/}
99done
100
101%find_lang %{name}
102
103%clean
104rm -rf $RPM_BUILD_ROOT
105
106%files -f %{name}.lang
107%defattr(-,root,root)
108%attr(4711,root,root) /usr/sbin/userhelper
109%{_bindir}/consolehelper
110%{_mandir}/man8/userhelper.8*
111%{_mandir}/man8/consolehelper.8*
112# PAM console wrappers
113%{_bindir}/halt
114%{_bindir}/reboot
115%{_bindir}/poweroff
116%{_bindir}/shutdown
117%config(noreplace) /etc/pam.d/halt
118%config(noreplace) /etc/pam.d/reboot
119%config(noreplace) /etc/pam.d/poweroff
120%config(noreplace) /etc/security/console.apps/config-util
121%config /etc/security/console.apps/halt
122%config /etc/security/console.apps/reboot
123%config /etc/security/console.apps/poweroff
124
125%files gtk
126%defattr(-,root,root)
127%{_bindir}/usermount
128%{_mandir}/man1/usermount.1*
129%{_bindir}/userinfo
130%{_mandir}/man1/userinfo.1*
131%{_bindir}/userpasswd
132%{_mandir}/man1/userpasswd.1*
133%{_bindir}/consolehelper-gtk
134%{_mandir}/man8/consolehelper-gtk.8*
135%{_bindir}/pam-panel-icon
136%{_mandir}/man1/pam-panel-icon.1*
137%{_datadir}/%{name}
138%{_datadir}/pixmaps/*
139%{_datadir}/applications/*
140     
141%changelog
142* Sat Jun 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.107-1
143- update to 1.107
144- add UGROUPS=wheel to config-util
145- update ja.po for better authentication dialog
146
147* Mon Jan 17 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.106.1-1
148- new upstream release
149
150* Tue Aug 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.98-1
151- new upstream release
152
153* Fri Aug 15 2008 Shu KONNO <owa@bg.wakwak.com> 1.86-1vl5
154- applied new versioning policy, spec in utf-8
155
156* Sat Jan 12 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.86-0vl3
157- rebuilt with libwnck 2.20.2
158- added Patch100 for avoiding desktop-file-install failure
159- fixed *.desktop.in files
160
161* Tue Sep 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.86-0vl2
162- fix Patch12
163  - The old patch changes the application's locale by mistake.
164
165* Thu Sep 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.86-0vl1
166- new upstream release
167- add Patch12 to fix broken messages in consolehelper-gtk (<BTS:181>)
168- update ja.po
169
170* Thu Jun 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.85-0vl1
171- new upstream release
172
173* Sun Aug 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.81-0vl1
174- new upstream release
175- rebuild with new libwnck
176
177* Mon Mar 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.70-4vl3
178- rebuild with new libwnck
179
180* Sat Jul  3 2004 Tomoya TAKA <taka@vinelinux.org> 1.70-4vl2
181- fix lack of %%{_bindir}/shutdown
182
183* Mon Jun 28 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.70-4vl1
184- new upstream release
185- fixed spec's kanji code.
186- split gui related utilities to usermode-gtk subpackage.
187
188* Mon Nov 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.69-1vl1
189- new upstream release
190
191* Tue Oct 23 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.68-0vl1
192- new upstream release
193
194* Sat Jan 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.65-1vl1
195- merged with Vine Linux package 1.42-1vl5
196  * Sat Aug 17 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.42-1vl5
197  - enable system authentication even if %%{build6x} is set to 0
198    (for compatibility with previous version)
199  * Mon Aug 05 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.42-1vl4
200  - reinstated /usr/bin/shutdown
201  * Fri Aug 02 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.42-1vl3
202  - rebuild with pam-0.75-39vl1
203  - set build6x to 0
204  * Wed Feb 20 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.42-1vl2
205  - rebuild to remove rpmlib dependancy
206  * Fri Jun 01 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
207  - 1.42-1vl1
208  - based on 1.42-1 from Rawhide and merged some from 1.37-2vl2
209  - %%define build6x 1 for Vine
210
211* Mon Jan 20 2003 Nalin Dahyabhai <nalin@redhat.com> 1.65-1
212- pass-through DESKTOP_STARTUP_ID
213
214* Mon Jan  6 2003 Nalin Dahyabhai <nalin@redhat.com> 1.64-1
215- set the requesting user PAM item to the invoking user's name (#81255)
216
217* Mon Nov 11 2002 Nalin Dahyabhai <nalin@redhat.com> 1.63-2
218- remove directory names from PAM config files, allowing the same config
219  files to work for both arches on multilib boxes
220- translation updates
221
222* Wed Sep  4 2002 Nalin Dahyabhai <nalin@redhat.com> 1.63-1
223- userhelper: swallow the exec'd program's exit stauts, which would be
224  misinterpreted by consolehelper anyway
225
226* Tue Sep  3 2002 Nalin Dahyabhai <nalin@redhat.com> 1.62-1
227- consolehelper: suppress dialog on successful execution
228- userhelper: return 0 on success, not 1 (what was I *thinking*?)
229
230* Mon Sep  2 2002 Nalin Dahyabhai <nalin@redhat.com> 1.61-1
231- userinfo: exit properly on escape. handle site_info field properly. go
232  insensitive while running child process.
233- userpasswd: exit properly on cancel.
234- all of the above: reap the child instead of checking for pipe close -- this
235  way is more robust (#68578,72684).
236- usermount: run mount/umount synchronously. capture stderr and display in a
237  dialog. desensitize action buttons when no filesystems are selected.
238- consolehelper: display errors if we're attempting to run bogus programs
239  (#72127)
240- translation updates (#70278)
241
242* Wed Aug 14 2002 Nalin Dahyabhai <nalin@redhat.com> 1.60-1
243- reconnect the "cancel" and "ok" buttons in userinfo
244- heed the cancel button when prompting for passwords in userinfo (#68578)
245- translation update
246
247* Wed Aug 14 2002 Nalin Dahyabhai <nalin@redhat.com> 1.59-2
248- change "forget password" to "forget authorization", because we don't actually
249  remember the password (that would be scary, #71476)
250- translation update
251
252* Tue Aug 13 2002 Nalin Dahyabhai <nalin@redhat.com> 1.59-1
253- pam-panel-icon: overhaul, change the 'locked' icon to keyring-small, nix the
254  'unlocked' icon
255- consolehelper-gtk: properly set up the dialog buttons (should be 'cancel/ok'
256  when we're asking questions, was always 'close')
257- disappear pam_timestamp_init
258
259* Wed Aug  7 2002 Nalin Dahyabhai <nalin@redhat.com> 1.58-2
260- install the new 'unlocked' icon
261
262* Tue Aug  6 2002 Jonathan Blandford <jrb@redhat.com>
263- New version.
264
265* Mon Aug  5 2002 Nalin Dahyabhai <nalin@redhat.com> 1.57-1
266- add support for BANNER and BANNER_DOMAIN in the userhelper configuration
267
268* Mon Aug  5 2002 Nalin Dahyabhai <nalin@redhat.com> 1.56-4
269- mark strings in the .glade file as translatable (#70278)
270- translation updates
271
272* Wed Jul 31 2002 Nalin Dahyabhai <nalin@redhat.com> 1.56-3
273- add icons for userpasswd and usermount
274
275* Wed Jul 24 2002 Nalin Dahyabhai <nalin@redhat.com> 1.56-2
276- actually include the icons
277- translation updates
278
279* Tue Jul 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.56-1
280- userinfo: prevent users from selecting "nologin" as a shell (#68579)
281- don't strip binaries by default; leave that to the buildroot policy
282- use desktop-file-install
283
284* Wed Jun 19 2002 Havoc Pennington <hp@redhat.com>
285- put pam-panel-icon in file list
286
287* Mon May 20 2002 Nalin Dahyabhai <nalin@redhat.com> 1.55-2
288- don't strip binaries which have no special privileges
289
290* Wed May 15 2002 Nalin Dahyabhai <nalin@redhat.com> 1.55-1
291- remove the pixmap we don't use any more (we use stock pixmaps now)
292- update translations
293
294* Thu Apr 16 2002 Nalin Dahyabhai <nalin@redhat.com> 1.54-1
295- suppress even error messages from Xlib when consolehelper calls
296  gtk_init_check() to see if the display is available
297
298* Mon Apr 15 2002 Nalin Dahyabhai <nalin@redhat.com> 1.53-2
299- refresh translations
300
301* Thu Apr 11 2002 Nalin Dahyabhai <nalin@redhat.com> 1.53-1
302- refresh shell variable code from authconfig (#63175)
303
304* Tue Apr  9 2002 Nalin Dahyabhai <nalin@redhat.com> 1.52-2
305- refresh translations
306
307* Mon Apr  1 2002 Nalin Dahyabhai <nalin@redhat.com> 1.52-1
308- attempt to make prompts at the console more meaningful
309- when falling back, reset the entire environment to the user's
310
311* Thu Mar 28 2002 Nalin Dahyabhai <nalin@redhat.com>
312- stop giving the user chances to enter the right password if we get a
313  conversation error reading a response (appears to be masked by libpam)
314  (#62195)
315- always center consolehelper dialog windows
316
317* Wed Mar 27 2002 Nalin Dahyabhai <nalin@redhat.com> 1.51-1
318- patch to make gettext give us UTF-8 strings (which GTK needs) from ynakai
319
320* Fri Mar 22 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-6
321- update translations
322- actually include the glade files (#61665)
323
324* Mon Mar 11 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-5
325- update translations
326
327* Mon Feb 25 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-4
328- rebuild
329
330* Fri Feb 22 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-3
331- update translations
332
333* Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-2
334- rebuild to fix dependencies
335
336* Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 1.50-1
337- fix userpasswd dialog message being incorrect for password changes
338- use a dumb conversation function when text mode is invoked without a tty -- if
339  the service's configuration doesn't call for prompts, then it'll still work
340- port from pwdb to libuser
341- catch child-exit errors correctly again
342- fix keyboard-grabbing
343
344* Wed Jan 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.49-3
345- add default locations for certain binaries to configure.in
346
347* Thu Jan  3 2002 Nalin Dahyabhai <nalin@redhat.com> 1.49-2
348- munge glade file to use stock items for buttons where possible
349
350* Mon Dec 10 2001 Nalin Dahyabhai <nalin@redhat.com> 1.49-1
351- the console.apps configs shouldn't be missingok
352- fix buildprereqs for gtk2/libglade2
353
354* Tue Dec  4 2001 Nalin Dahyabhai <nalin@redhat.com>
355- more gtk2 changes
356- split off a -gtk subpackage with all of the gtk-specific functionality
357
358* Wed Nov 28 2001 Nalin Dahyabhai <nalin@redhat.com>
359- the grand libglade/gtk2 overhaul
360- allow disabling display of GUI windows by setting "GUI=false" in the
361  console.apps configuration file (default: TRUE)
362- allow disabling display of GUI windows by recognizing a magic option
363  on the command-line of the program being wrapped (NOXOPTION, no default)
364
365* Fri Nov  9 2001 Nalin Dahyabhai <nalin@redhat.com> 1.46-1
366- restore the previous XAUTHORITY setting before opening PAM sessions
367
368* Fri Nov  2 2001 Nalin Dahyabhai <nalin@redhat.com> 1.45-1
369- propagate environment variables from libpam to applications
370
371* Fri Oct  3 2001 Nalin Dahyabhai <nalin@redhat.com> 1.44-1
372- only try to call gtk_main_quit() if we've got a loop to get out of (#54109)
373- obey RPM_OPT_FLAGS, obey
374
375* Tue Aug 28 2001 Trond Eivind Glomsr藷?<teg@redhat.com> 1.43-1
376- Update translations
377
378* Mon Aug  6 2001 Nalin Dahyabhai <nalin@redhat.com>
379- add build requirements on glib-devel, gtk+-devel, pam-devel (#49726)
380
381* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
382- Bump release + rebuild.
383
384* Wed Feb 14 2001 Preston Brown <pbrown@redhat.com>
385- final translation merge.
386
387* Wed Feb 14 2001 Nalin Dahyabhai <nalin@redhat.com>
388- clear the supplemental groups list before running binaries as root (#26851)
389
390* Wed Feb  7 2001 Nalin Dahyabhai <nalin@redhat.com>
391- set XAUTHORITY if we fall back to regular behavior (#26343)
392- make the suid helper 04711 instead of 04755
393
394* Mon Feb  5 2001 Nalin Dahyabhai <nalin@redhat.com>
395- refresh translations
396
397* Mon Jan 29 2001 Preston Brown <pbrown@redhat.com>
398- use lang finding script.
399
400* Thu Jan 25 2001 Yukihiro Nakai <ynakai@redhat.com>
401- Some fix for Japanese environment.
402- Use gtk_set_locale() instead of setlocale()
403- Copyright update.
404
405* Sun Jan  7 2001 Yukihiro Nakai <ynakai@redhat.com>
406- Add gettextized
407
408* Thu Nov  2 2000 Nalin Dahyabhai <nalin@redhat.com>
409- fix segfault in userhelper (#20027)
410
411* Tue Oct 24 2000 Nalin Dahyabhai <nalin@redhat.com>
412- /sbin/shutdown, not /usr/sbin/shutdown (#19034)
413
414* Fri Oct  6 2000 Nalin Dahyabhai <nalin@redhat.com>
415- don't pass on arguments to halt and reboot, because they error out
416
417* Thu Oct  5 2000 Nalin Dahyabhai <nalin@redhat.com>
418- fix the /usr/bin/shutdown wrapper so that root can call shutdown
419- only include the /usr/bin/shutdown wrapper on 6.x
420- also sanitize LC_MESSAGES
421- tweak sanitizing checks (from mkj)
422
423* Wed Oct  4 2000 Jakub Jelinek <jakub@redhat.com>
424- fix a security bug with LC_ALL/LANG variables (#18046)
425
426* Mon Aug 28 2000 Nalin Dahyabhai <nalin@redhat.com>
427- mark defined strings translateable (#17006)
428
429* Thu Aug 24 2000 Nalin Dahyabhai <nalin@redhat.com>
430- fix incorrect user name
431- add a shell wrapper version of /usr/bin/shutdown
432- build for 6.x errata
433- bump revision to upgrade the errata
434
435* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
436- fix stdin/stdout redirection shenanigans (#11706)
437- fix authentication and execution as users other than root
438- make sure the right descriptors are terminals before dup2()ing them
439- cut out an extra-large CPU waster that breaks GUI apps
440
441* Mon Aug 21 2000 Nalin Dahyabhai <nalin@redhat.com>
442- fix typo (#16664)
443
444* Sun Aug 20 2000 Nalin Dahyabhai <nalin@redhat.com>
445- previous fix, part two
446
447* Sat Aug 19 2000 Nalin Dahyabhai <nalin@redhat.com>
448- fix inadvertent breakage of the shell-changing code
449
450* Fri Aug 18 2000 Nalin Dahyabhai <nalin@redhat.com>
451- fix the "run unprivileged" option
452
453* Mon Aug 14 2000 Nalin Dahyabhai <nalin@redhat.com>
454- actually use the right set of translations
455
456* Fri Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
457- remove the shutdown command from the list of honored commands
458
459* Wed Aug  9 2000 Nalin Dahyabhai <nalin@redhat.com>
460- merge in updated translations
461- set XAUTHORITY after successful authentication (#11006)
462
463* Wed Aug  2 2000 Nalin Dahyabhai <nalin@redhat.com>
464- install translations
465- fixup a messy text string
466- make "Mount"/"Unmount" translatable
467- stop prompting for passwords to shut down -- we can hit ctrl-alt-del anyway,
468  and gdm users can just shut down without logging in
469
470* Mon Jul 31 2000 Nalin Dahyabhai <nalin@redhat.com>
471- attempt to add i18n support
472
473* Wed Jul 12 2000 Nalin Dahyabhai <nalin@redhat.com>
474- attempt to get a usable icon for userhelper-wrap (#13616, #13768)
475
476* Wed Jul  5 2000 Nalin Dahyabhai <nalin@redhat.com>
477- fix them right this time
478
479* Mon Jul  3 2000 Nalin Dahyabhai <nalin@redhat.com>
480- fix verbosity problems
481
482* Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
483- strip all binaries by default
484- add the name of the program being run to the userhelper dialog
485- add a graphic to the userhelper-wrap package
486- add a button to jump straight to nonprivileged operation when supported
487
488* Sun Jun 18 2000 Matt Wilson <msw@redhat.com>
489- rebuilt to see if we get stripped binaries
490
491* Mon Jun  5 2000 Nalin Dahyabhai <nalin@redhat.com>
492- move man pages to %%{_mandir}
493
494* Thu Jun  1 2000 Nalin Dahyabhai <nalin@redhat.com>
495- modify PAM setup to use system-auth
496- bzip2 compress tarball
497
498* Fri Mar 17 2000 Ngo Than <than@redhat.de>
499- fix problem with LANG and LC_ALL
500- compress source with bzip2
501
502* Thu Mar 09 2000 Nalin Dahyabhai <nalin@redhat.com>
503- fix problem parsing userhelper's -w flag with other args
504
505* Wed Mar 08 2000 Nalin Dahyabhai <nalin@redhat.com>
506- ignore read() == 0 because the child exits
507
508* Tue Mar 07 2000 Nalin Dahyabhai <nalin@redhat.com>
509- queue notice messages until we get prompts in userhelper to fix bug #8745
510
511* Fri Feb 03 2000 Nalin Dahyabhai <nalin@redhat.com>
512- free trip through the build system
513
514* Tue Jan 11 2000 Nalin Dahyabhai <nalin@redhat.com>
515- grab keyboard input focus for dialogs
516
517* Fri Jan 07 2000 Michael K. Johnson <johnsonm@redhat.com>
518- The root exploit fix created a bug that only showed up in certain
519  circumstances.  Unfortunately, we didn't test in those circumstances...
520
521* Mon Jan 03 2000 Michael K. Johnson <johnsonm@redhat.com>
522- fixed local root exploit
523
524* Thu Sep 30 1999 Michael K. Johnson <johnsonm@redhat.com>
525- fixed old complex broken gecos parsing, replaced with simple working parsing
526- can now blank fields (was broken by previous fix for something else...)
527
528* Tue Sep 21 1999 Michael K. Johnson <johnsonm@redhat.com>
529- FALLBACK/RETRY in consolehelper/userhelper
530- session management fixed for consolehelper/userhelper SESSION=true
531- fix memory leak and failure to close in error condition (#3614)
532- fix various bugs where not all elements in userinfo got set
533
534* Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
535- set $HOME when acting as consolehelper
536- rebuild against new pwdb
537
538* Tue Sep 14 1999 Michael K. Johnson <johnsonm@redhat.com>
539- honor "owner" flag to mount
540- ask for passwords with username
541
542* Tue Jul 06 1999 Bill Nottingham <notting@redhat.com>
543- import pam_console wrappers from SysVinit, since they require usermode
544
545* Mon Apr 12 1999 Michael K. Johnson <johnsonm@redhat.com>
546- even better check for X availability
547
548* Wed Apr 07 1999 Michael K. Johnson <johnsonm@redhat.com>
549- better check for X availability
550- center windows to make authentication easier (improve later with
551  transients and embedded windows where possible)
552- applink -> applnk
553- added a little padding, especially important when running without
554  a window manager, as happens when running from session manager at
555  logout time
556
557* Wed Mar 31 1999 Michael K. Johnson <johnsonm@redhat.com>
558- hm, need to be root...
559
560* Fri Mar 19 1999 Michael K. Johnson <johnsonm@redhat.com>
561- updated userhelper.8 man page for consolehelper capabilities
562- moved from wmconfig to desktop entries
563
564* Thu Mar 18 1999 Michael K. Johnson <johnsonm@redhat.com>
565- added consolehelper
566- Changed conversation architecture to follow PAM spec
567
568* Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
569- remove gdk_input_remove (causing segfaults)
570
571* Tue Jan 12 1999 Michael K. Johnson <johnsonm@redhat.com>
572- fix missing include files
573
574* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
575- strip binaries
576- use defattr
577- fix spec file ( rm -rf $(RPM_BUILD_ROOT) is a stupid thing to do ! )
578
579* Tue Oct 06 1998 Preston Brown <pbrown@redhat.com>
580- fixed so that the close button on window managers quits the program properly
581
582* Thu Apr 16 1998 Erik Troan <ewt@redhat.com>
583- use gtk-config during build
584- added make archive rule to Makefile
585- uses a build root
586
587* Fri Nov  7 1997 Otto Hammersmith <otto@redhat.com>
588- new version that fixed memory leak bug.
589
590* Mon Nov  3 1997 Otto Hammersmith <otto@redhat.com>
591- updated version to fix bugs
592
593* Fri Oct 17 1997 Otto Hammersmith <otto@redhat.com>
594- Wrote man pages for userpasswd and userhelper.
595
596* Tue Oct 14 1997 Otto Hammersmith <otto@redhat.com>
597- Updated the packages... now includes userpasswd for changing passwords
598  and newer versions of usermount and userinfo.  No known bugs or
599  misfeatures.
600- Fixed the file list...
601
602* Mon Oct 6 1997 Otto Hammersmith <otto@redhat.com>
603- Created the spec file.
Note: See TracBrowser for help on using the repository browser.