system-config-display-vl.spec 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. Summary: A graphical interface for configuring the X Window System display
  2. Summary(ja): X ウィンドウシステムのディスプレイを設定するためのグラフィカルインタフェース
  3. Name: system-config-display
  4. Version: 1.1.3
  5. Release: 5%{?_dist_release}
  6. URL: http://fedoraproject.org/wiki/SystemConfig/Tools
  7. License: GPL
  8. ExclusiveOS: Linux
  9. Group: System Environment/Base
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildArch: noarch
  12. Source0: http://fedorahosted.org/releases/s/y/%{name}/%{name}-%{version}.tar.bz2
  13. Patch10: system-config-display-1.1.3-check-DISPLAY.patch
  14. ExcludeArch: s390 s390x
  15. BuildRequires: desktop-file-utils
  16. BuildRequires: intltool, gettext
  17. Requires: pygtk2 >= 1.99.11
  18. Requires: pygtk2-libglade
  19. Requires: python
  20. Requires: usermode >= 1.98
  21. Requires: usermode-gtk
  22. Requires: hwdata
  23. Requires: dbus-python
  24. Requires: pyxf86config >= 0.3.16
  25. Requires: rhpl >= 0.170-1
  26. Requires: rhpxl >= 0.34-1
  27. Requires: xorg-x11-server-Xorg
  28. Requires: metacity
  29. Requires: gtk2 >= 2.6
  30. Requires: hicolor-icon-theme
  31. %description
  32. system-config-display is a graphical application for configuring an
  33. X Window System X server display.
  34. %prep
  35. %setup -q
  36. %patch10 -p1
  37. for i in src/* ;do
  38. perl -pi -e 's|python2|python|g' $i
  39. done
  40. %build
  41. make
  42. %install
  43. rm -rf $RPM_BUILD_ROOT
  44. make INSTROOT=$RPM_BUILD_ROOT install
  45. desktop-file-install --vendor "" --delete-original \
  46. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  47. --remove-category Application \
  48. --remove-category SystemSetup \
  49. --add-category Settings \
  50. $RPM_BUILD_ROOT%{_datadir}/applications/system-config-display.desktop
  51. chmod a-x $RPM_BUILD_ROOT%{_datadir}/system-config-display/pixmaps/*
  52. %find_lang %name
  53. %clean
  54. rm -rf $RPM_BUILD_ROOT
  55. %postun
  56. touch --no-create %{_datadir}/icons/hicolor
  57. if [ -x /usr/bin/gtk-update-icon-cache -a -e %{_datadir}/icons/hicolor ]; then
  58. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  59. fi
  60. %post
  61. touch --no-create %{_datadir}/icons/hicolor
  62. if [ -x /usr/bin/gtk-update-icon-cache -a -e %{_datadir}/icons/hicolor ]; then
  63. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  64. fi
  65. %files -f %{name}.lang
  66. %defattr(-,root,root)
  67. %{_bindir}/system-config-display
  68. %{_datadir}/system-config-display
  69. %{_datadir}/applications/*
  70. %attr(0644,root,root) %config /etc/security/console.apps/system-config-display
  71. %attr(0644,root,root) %config /etc/pam.d/system-config-display
  72. %attr(0644,root,root) %{_datadir}/icons/hicolor/48x48/apps/system-config-display.png
  73. %changelog
  74. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.3-5
  75. - rebuild with python-2.7.2
  76. * Sun May 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.3-4
  77. - change Requires: xorg-x11-server-Xorg instead of /usr/bin/Xorg
  78. * Sat Apr 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.3-3
  79. - rebuild for Vine 6
  80. * Mon Aug 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.3-2
  81. - add Patch10 to run on no-X environment. (<BTS:760>)
  82. * Tue Apr 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.3-1
  83. - new upstream release
  84. - remove obsolete patches
  85. * Sun Aug 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.51-2
  86. - require usermode >= 1.98
  87. * Tue Aug 12 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.51-1
  88. - initial build for Vine Linux
  89. * Sun Apr 06 2008 Adam Jackson <ajax@redhat.com> 1.0.51-9
  90. - scd-1.0.51-backtick.patch: Fix unicode hilarity. (#441060)
  91. * Thu Mar 27 2008 Bill Nottingham <notting@redhat.com> 1.0.51-8
  92. - don't use rhpxl.mouse any more
  93. * Mon Feb 25 2008 Adam Jackson <ajax@redhat.com> 1.0.51-7
  94. - scd-1.0.51-unkudzify.patch: Replace kudzu dependency with dbus dependency.
  95. - Fix the chmod fix from -6 to, you know, work.
  96. * Tue Feb 12 2008 Adam Jackson <ajax@redhat.com> 1.0.51-6
  97. - Clear executable bit from the icons. (#429875)
  98. * Tue Jan 22 2008 Adam Jackson <ajax@redhat.com> 1.0.51-5
  99. - scd-1.0.51-config-util.patch: Update for new usermode. (#428397)
  100. * Mon Oct 01 2007 Adam Jackson <ajax@redhat.com> 1.0.51-4
  101. - Un-Require: redhat-artwork, we don't actually require it. (#314001)
  102. * Tue Jul 24 2007 Adam Jackson <ajax@redhat.com> 1.0.51-3
  103. - Remove ppc64 from ExcludeArch.
  104. * Wed Jun 27 2007 Matthias Clasen <mclasen@redhat.com> 1.0.51-2
  105. - Fix up categories in desktop file
  106. * Wed Apr 11 2007 Adam Jackson <ajax@redhat.com> 1.0.51-1
  107. - Load the mouse and keyboard configs from the config file, so as not to
  108. clobber them. (#145316)
  109. * Wed Mar 28 2007 Jeremy Katz <katzj@redhat.com> - 1.0.50-1
  110. - start X server with a black background; we don't need xsri anymore
  111. * Thu Mar 22 2007 Adam Jackson <ajax@redhat.com> 1.0.49-1
  112. - Package review cleanups.
  113. * Mon Jan 29 2007 Adam Jackson <ajax@redhat.com>
  114. - Copy instead of rename when doing backup of xorg.conf, in case the user has
  115. it as a symlink. (#181965)
  116. * Fri Dec 15 2006 Adam Jackson <ajax@redhat.com> 1.0.48-2
  117. - Rebuild for translations.
  118. * Fri Dec 8 2006 Adam Jackson <ajax@redhat.com>
  119. - Add dist tag to Release.
  120. * Thu Dec 7 2006 Adam Jackson <ajax@redhat.com> 1.0.48-1
  121. - Import old driver list code from rhpxl. (#218241)
  122. * Wed Dec 6 2006 Adam Jackson <ajax@redhat.com> 1.0.47-1
  123. - Fail gracefully on machines with no video.
  124. * Tue Nov 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.0.46-1
  125. - Fix mnemonic for the color depth combo on the last tab (#216391)
  126. * Wed Sep 13 2006 Adam Jackson <ajackson@redhat.com> 1.0.45-1
  127. - Refresh the mode state before first paint, to give rhpxl a chance to ask
  128. RANDR for the current mode.
  129. * Mon Aug 28 2006 Adam Jackson <ajackson@redhat.com> 1.0.44-1
  130. - Unpack properly when given a refresh rate instead of a refresh range.
  131. * Fri Aug 25 2006 Adam Jackson <ajackson@redhat.com> 1.0.43-1
  132. - Drop 8bpp support.
  133. - Simplify monitor selection view.
  134. - Fix initial window sizing to be large enough for all fields.
  135. * Mon Aug 21 2006 Adam Jackson <ajackson@redhat.com> 1.0.42-1
  136. - Align lists correctly in RTL locales. (#202754)
  137. * Thu Aug 3 2006 Bill Nottingham <notting@redhat.com> 1.0.41-1
  138. - adjust to new rhpxl (<clumens@redhat.com>)
  139. - work with newer, sparser, config files
  140. - when dealing with autoprobed monitors, pull current resolution from randr
  141. * Wed Jul 26 2006 Chris Lumens <clumens@redhat.com> 1.0.38-1
  142. - Fix CHARSET in te and kn translations (#200203).
  143. - Add gettext to buildrequires.
  144. * Thu Mar 09 2006 Chris Lumens <clumens@redhat.com> 1.0.37-2
  145. - Add back spec file parts that got lost on last rebuild.
  146. * Tue Mar 07 2006 Chris Lumens <clumens@redhat.com> 1.0.37-1
  147. - Initialize monitor name label to something other than unknown if we
  148. really know what it is.
  149. * Fri Mar 03 2006 Martin Stransky <stransky@redhat.com> 1.0.36-3
  150. - added pam fix (#170625)
  151. - fix prereq (#182861, #182862)
  152. * Wed Feb 22 2006 Chris Lumens <clumens@redhat.com> 1.0.36-2
  153. - Add rhpxl to requires
  154. * Fri Jan 27 2006 Paul Nasrat <pnasrat@redhat.com> - 1.0.36-1
  155. - Rebuild for translations
  156. - Fix reconfig mode
  157. * Thu Jan 12 2006 Soren Sandmann <sandmann@redhat.com> - 1.0.35-1
  158. - Rebuild
  159. * Tue Jan 10 2006 Soren Sandmann <sandmann@redhat.com> - 1.0.34-1
  160. - Some s/rhpl/rhpxl/ type changes
  161. * Mon Nov 14 2005 Jeremy Katz <katzj@redhat.com> - 1.0.33-1
  162. - minor changes needed for modular X
  163. * Wed Sep 21 2005 Bill Nottingham <notting@redhat.com> 1.0.32-1
  164. - Fix up some leftover code that still needed migration (#168932)
  165. * Fri Sep 9 2005 Bill Nottingham <notting@redhat.com> 1.0.31-1
  166. - Adapt to new kudzu video driver probing, and new rhpl
  167. * Mon Jun 27 2005 Soren Sandmann <sandmann@redhat.com> 1.0.30-1
  168. - Add ppc64 to ExcludeArchs
  169. * Mon May 23 2005 Jeremy Katz <katzj@redhat.com> - 1.0.29-1
  170. - put scriptlets from distcvs in this specfile
  171. * Mon May 23 2005 Jeremy Katz <katzj@redhat.com> - 1.0.28-1
  172. - fix typo in cleanup leading to traceback (#157423)
  173. * Thu Apr 28 2005 Soren Sandmann <sandmann@redhat.com> 1.0.26-1
  174. - Clean up deprecation warnings (#153937)
  175. * Tue Jan 04 2005 Paul Nasrat <pnasrat@redhat.com> 1.0.25-1
  176. - Only merge hardware_state if defined (#143944)
  177. - Only print card if verbose (#143271)
  178. * Mon Nov 15 2004 Paul Nasrat <pnasrat@redhat.com> 1.0.24-1
  179. - Dual Head patch for testing thanks to Marc Andre Morissette (#136916)
  180. * Tue Oct 19 2004 Paul Nasrat <pnasrat@redhat.com> 1.0.23-1
  181. - Firstboot - re-read config so both kbd and display changes persist (#135361)
  182. * Thu Oct 14 2004 Paul Nasrat <pnasrat@redhat.com> 1.0.22-1
  183. - Depth callback patch from twaugh (#128650)
  184. * Fri Oct 01 2004 Paul Nasrat <pnasrat@redhat.com> 1.0.21-1
  185. - fix mouse traceback
  186. * Tue Sep 07 2004 Paul Nasrat <pnasrat@redhat.com> - 1.0.20-1
  187. - Refactor some stuff into rhpl
  188. - Don't override driver changes unless in reconfig (#127779)
  189. * Tue Sep 07 2004 Paul Nasrat <pnasrat@redhat.com> - 1.0.19-1
  190. - Translatable desktop
  191. - Layout changes for firstboot screen
  192. * Thu Aug 19 2004 Paul Nasrat <pnasrat@redhat.com> - 1.0.18-2
  193. - Ensure selection string translatable
  194. * Thu Aug 19 2004 Paul Nasrat <pnasrat@redhat.com> - 1.0.18-1
  195. - Monitor selection for first boot
  196. * Fri Jun 25 2004 Brent Fox <bfox@redhat.com> - 1.0.17-1
  197. - initialize self.probed_path in videocardDialog.py (bug #113695)
  198. * Wed Jun 23 2004 Brent Fox <bfox@redhat.com> - 1.0.16-1
  199. - reduce size of monitor-off.png and monitor-on.png to fit in 640x480 (bug #122142)
  200. * Mon Jun 14 2004 Brent Fox <bfox@redhat.com> - 1.0.15-2
  201. - set the text domain for xconf.py and xConfigDialog.py (bug #123494)
  202. * Wed Jun 2 2004 Alex Larsson <alexl@redhat.com> 1.0.15-1
  203. - fix --reconfig and catch some exceptions for readonly root
  204. * Tue May 25 2004 Brent Fox <bfox@redhat.com> 1.0.14-2
  205. - add BuildRequires for desktop-file-utils (bug# 124181)
  206. * Fri Apr 30 2004 Brent Fox <bfox@redhat.com> 1.0.14-1
  207. - do not write out extra XF86Config file during firstboot (bug #121729)
  208. * Tue Apr 20 2004 Brent Fox <bfox@redhat.com> 1.0.13-3
  209. - Do not write out XkbRules line to config file, as it is unnecessary to hard
  210. code the rules file, which has a built in default which should always
  211. work. (#120858)
  212. * Wed Apr 14 2004 Brent Fox <bfox@redhat.com> 1.0.13-2
  213. - update requires for new pyxf86config
  214. * Tue Apr 13 2004 Brent Fox <bfox@redhat.com> 1.0.13-1
  215. - make changes for XFree86 -> Xorg conversion
  216. * Thu Apr 8 2004 Brent Fox <bfox@redhat.com> 1.0.12-2
  217. - fix icon path (bug #120174)
  218. * Tue Mar 23 2004 Brent Fox <bfox@redhat.com> 1.0.12-1
  219. - filter out duplicate monitor entries (bug #118976)
  220. * Wed Mar 17 2004 Mike A. Harris <mharris@redhat.com> 1.0.11-1
  221. - Change Requires: XFree86 to Requires: /usr/X11R6/bin/XFree86, which is
  222. what it appears from the sources is being called. That will need to change
  223. when the server gets renamed, so it should be implemented IMHO in a way
  224. that is not hard coded. This should suffice for now however.
  225. - Changed package description to remove "XFree86" name and replace it with
  226. generic "X Window System X server" term.
  227. - Added the "via", and "voodoo" drivers that were missing to internal driver
  228. list in videocardDialog.py. The list is still missing stuff though, but
  229. those sprung to mind.
  230. - Added force-tag target to Makefile with tag -cF
  231. - Added tag target without -F to Makefile
  232. - Removed -F from archive target as that can potentially blow away an already
  233. tagged and released version from the repository if someone accidentally
  234. does a "make archive" without updating the spec file Version: field like
  235. I just about did. ;o)
  236. * Mon Mar 1 2004 Brent Fox <bfox@redhat.com> 1.0.10-1
  237. - sanity check the monitor selection (bug #112314)
  238. * Mon Mar 1 2004 Brent Fox <bfox@redhat.com> 1.0.9-3
  239. - remove Requires on system-config-mouse
  240. * Fri Feb 27 2004 Brent Fox <bfox@redhat.com> 1.0.9-2
  241. - another stab at the dual-head code
  242. * Thu Feb 26 2004 Brent Fox <bfox@redhat.com> 1.0.9-1
  243. - write out "Screen" entry for dual-head cards
  244. * Tue Feb 24 2004 Brent Fox <bfox@redhat.com> 1.0.8-1
  245. - start up metacity to make the windows look nice (bug #108206)
  246. * Thu Feb 19 2004 Brent Fox <bfox@redhat.com> 1.0.7-1
  247. - don't import rhpl.mouse in xconf.py
  248. * Tue Feb 17 2004 Brent Fox <bfox@redhat.com> 1.0.6-1
  249. - write XF86Config to the correct path (bug #115501)
  250. * Fri Jan 30 2004 Brent Fox <bfox@redhat.com> 1.0.5-1
  251. - correct naming in the spec file description
  252. * Thu Dec 4 2003 Brent Fox <bfox@redhat.com> 1.0.4-1
  253. - add code to apply changes made in the firstboot display screen
  254. * Tue Dec 2 2003 Brent Fox <bfox@redhat.com> 1.0.3-1
  255. - add code to pull display notebook page into firstboot
  256. * Thu Nov 20 2003 Brent Fox <bfox@redhat.com> 1.0.2-1
  257. - fix path problem
  258. * Wed Nov 19 2003 Brent Fox <bfox@redhat.com> 1.0.1-1
  259. - rename from redhat-config-xfree86 to system-config-display
  260. - add Obsoletes for redhat-config-xfree86
  261. - make changes for Python2
  262. * Thu Oct 23 2003 Brent Fox <bfox@redhat.com> 0.9.15-1
  263. - work around cards with no driver entries (bug #106501)
  264. * Thu Oct 23 2003 Brent Fox <bfox@redhat.com> 0.9.14-1
  265. - check length of list before removing items (bug #107790)
  266. * Thu Oct 16 2003 Brent Fox <bfox@redhat.com> 0.9.13-1
  267. - allow dualhead to be disabled (bug #107261)
  268. * Wed Oct 15 2003 Brent Fox <bfox@redhat.com> 0.9.12-1
  269. - fix bug #106884 for real this time
  270. * Tue Oct 14 2003 Brent Fox <bfox@redhat.com> 0.9.11-1
  271. - package lightrays.png inside redhat-config-xfree86
  272. * Mon Oct 13 2003 Brent Fox <bfox@redhat.com> 0.9.10-1
  273. - make sure current is initialized (bug #106884)
  274. * Mon Oct 6 2003 Brent Fox <bfox@redhat.com> 0.9.9-3
  275. - add a Requires for XFree86 (bug #105992)
  276. * Mon Oct 6 2003 Brent Fox <bfox@redhat.com> 0.9.9-2
  277. - finish up the dual-head code
  278. - catch case of having no layout options
  279. * Thu Oct 2 2003 Brent Fox <bfox@redhat.com> 0.9.9-1
  280. - first stab at multihead code
  281. - commit some additional monitor icons
  282. * Thu Aug 14 2003 Brent Fox <bfox@redhat.com> 0.9.8-1
  283. - tag on every build
  284. * Thu Jun 5 2003 Brent Fox <bfox@redhat.com> 0.9.7-1
  285. - see if we have the name for an unprobed monitor
  286. * Tue Jun 3 2003 Brent Fox <bfox@redhat.com> 0.9.6-1
  287. - only offer the resolutions that we know to be reasonable for the selected monitor (bug #88269)
  288. * Fri May 30 2003 Brent Fox <bfox@redhat.com> 0.9.5-1
  289. - big UI changes
  290. - make room in the UI for multihead stuff
  291. * Wed May 28 2003 Brent Fox <bfox@redhat.com> 0.7.6-1
  292. - add an ExcludeArch for s390 and s390x (bug #91811)
  293. * Fri May 23 2003 Brent Fox <bfox@redhat.com> 0.7.5-1
  294. - turn on horizontal scrolling in videocard window
  295. - initialize dpi measurement option menu correctly (bug #90190)
  296. * Wed May 21 2003 Michael Fulbright <msf@redhat.com> 0.7.4-1
  297. - converted to use new way of representing Generic monitors in MonitorsDB
  298. * Tue Feb 4 2003 Brent Fox <bfox@redhat.com> 0.7.3-2
  299. - paint the background with lightrays.png
  300. * Thu Jan 30 2003 Brent Fox <bfox@redhat.com> 0.7.3-1
  301. - bump and build
  302. * Tue Jan 21 2003 Brent Fox <bfox@redhat.com> 0.7.2-3
  303. - add closing parenthesis (bug #80398)
  304. * Mon Jan 20 2003 Brent Fox <bfox@redhat.com> 0.7.2-2
  305. - iterate through available video cards until one works
  306. - clean up the output
  307. * Fri Jan 17 2003 Brent Fox <bfox@redhat.com> 0.7.1-6
  308. - make monitor dialog a little larger and allow horz. scrolling (bug #82112)
  309. * Tue Jan 14 2003 Brent Fox <bfox@redhat.com> 0.7.1-5
  310. - fixed desktop file icon
  311. * Thu Jan 9 2003 Jeremy Katz <katzj@redhat.com> 0.7.1-4
  312. - import rhpl.monitor
  313. * Mon Jan 6 2003 Brent Fox <bfox@redhat.com> 0.7.1-3
  314. - try to read the XMOUSETYPE from /etc/sysconfig/mouse (bug #74992)
  315. * Sun Jan 5 2003 Brent Fox <bfox@redhat.com> 0.7.1-2
  316. - fix the dialog centering code
  317. - connect the resolution menu to update_ui so the screenshot gets refreshed
  318. * Sun Jan 5 2003 Brent Fox <bfox@redhat.com> 0.7.1-1
  319. - change radio buttons to OptionMenus
  320. * Fri Jan 3 2003 Brent Fox <bfox@redhat.com> 0.7.0-6
  321. - default to us keyboard if /etc/sysconfig/keyboard contains a keyboard unknown to rhpl (bug #80993)
  322. * Sun Dec 22 2002 Brent Fox <bfox@redhat.com> 0.7.0-5
  323. - change xconfig.comment to reflect that redhat-config-xfree86 made the change
  324. * Fri Dec 20 2002 Brent Fox <bfox@redhat.com> 0.7.0-4
  325. - call mouse.read() if probing didn't return a valid DEVICE info (bug #80115)
  326. - import string in videocardDialog.py
  327. - pass hardware_state into VideocardDialog
  328. * Thu Dec 19 2002 Brent Fox <bfox@redhat.com> 0.7.0-2
  329. - made some ui cleanups that keeps the dialog from resizing while changing resolutions
  330. - removed all the autoconf stuff and replaced it with simpler Makefile and spec file
  331. - rebuild for completeness
  332. * Fri Dec 13 2002 Brent Fox <bfox@redhat.com> 0.7.0-1
  333. - pulled the classes out into their own files to make it more understandable
  334. * Tue Nov 12 2002 Michael Fulbright <msf@redhat.com> 0.6.9-1
  335. - migrated to new rhpl based backend
  336. * Tue Nov 5 2002 Alexander Larsson <alexl@redhat.com>
  337. - Fixed some small bugs
  338. * Thu Sep 5 2002 Alexander Larsson <alexl@redhat.com>
  339. - Require pygtk2-libglade
  340. * Fri Aug 30 2002 Jeremy Katz <katzj@redhat.com> 0.6.6-1
  341. - create /etc/X11/X symlink (#73108)
  342. * Wed Aug 28 2002 Alexander Larsson <alexl@redhat.com> 0.6.5-1
  343. - Fix DRI state changes. (#72255)
  344. * Tue Aug 27 2002 Alexander Larsson <alexl@redhat.com> 0.6.4-1
  345. - Fix XF86Option typo (#72243)
  346. * Mon Aug 26 2002 Alexander Larsson <alexl@redhat.com> 0.6.3-1
  347. - Fixes bug #72456
  348. * Fri Aug 23 2002 Alexander Larsson <alexl@redhat.com> 0.6.2-1
  349. - Fixed part of Bug #72275, the rest is in Gtk+.
  350. * Wed Aug 21 2002 Preston Brown <pbrown@redhat.com> 0.6.1-1
  351. - fixed starting tool when XF86Config is corrupt (#71461)
  352. * Fri Aug 9 2002 Alexander Larsson <alexl@redhat.com> 0.6.0-1
  353. - Add 640x480 to list of resolutions
  354. - Kluge around treeview horizontal scroll bug in videocard dialog
  355. - set textdomain everywhere it is needed to make i18n work
  356. - Try --reconfig if starting an xserver with the current config file doesn't work.
  357. - Tell gdm to restart server on logout after we write the config file.
  358. * Tue Aug 6 2002 Preston Brown <pbrown@redhat.com> 0.5.2-1
  359. - output to XF86Config (not XF86Config-4) when using --reconfig
  360. * Fri Jul 19 2002 Alexander Larsson <alexl@redhat.com>
  361. - Obsolete Xconfigurator
  362. * Wed Jun 26 2002 Alexander Larsson <alexl@redhat.com> 0.3.1-1
  363. - Updated to use configure
  364. * Mon Jun 17 2002 Alexander Larsson <alexl@redhat.com>
  365. - Bumped version to 0.3.0
  366. * Thu May 30 2002 Alex Larsson <alexl@redhat.com>
  367. - Bumped to 0.2.2
  368. * Tue May 28 2002 Alex Larsson <alexl@redhat.com>
  369. - Update to version 0.2.0
  370. * Thu Apr 11 2002 Alex Larsson <alexl@redhat.com> 0.1.0-1
  371. - Initial release
  372. * Tue Apr 9 2002 Alex Larsson <alexl@redhat.com>
  373. - Initial specfile