system-config-services-vl.spec 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  1. Summary: An initscript and xinetd configuration utility
  2. Summary(ja): initscript � xinetd �設定ユーティリティ
  3. Name: system-config-services
  4. Version: 0.99.47
  5. Release: 1%{?_dist_release}
  6. URL: http://fedoraproject.org/%{name}
  7. Source0: %{name}-%{version}.tar.bz2
  8. License: GPLv2+
  9. Group: Applications/System
  10. BuildArch: noarch
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  12. AutoReq: no
  13. BuildRequires: intltool, sed, desktop-file-utils
  14. BuildRequires: gettext
  15. BuildRequires: python, python-devel
  16. Requires: chkconfig
  17. Requires: python
  18. Requires: pygtk2, pygtk2-libglade, rhpl
  19. Requires: htmlview
  20. Requires: python
  21. Requires: gamin-python
  22. Requires: initscripts
  23. Requires: python
  24. Requires: dbus-python
  25. Requires: python-slip
  26. Requires: python-slip-dbus
  27. Requires: python-slip-gtk
  28. Requires: polkit
  29. Requires(post): hicolor-icon-theme, gtk2
  30. Requires(postun): hicolor-icon-theme, gtk2
  31. Vendor: Project Vine
  32. Distribution: Vine Linux
  33. Packager: daisuke
  34. %description
  35. system-config-services is a utility which allows you to configure which services
  36. should be enabled on your machine.
  37. %description -l ja
  38. %{name} � initscript � xinetd ���サービスを起動��る�を設定�る
  39. ユーティリティ��。
  40. %prep
  41. %setup -q
  42. %build
  43. make
  44. %install
  45. rm -rf %{buildroot}
  46. make DESTDIR=%buildroot POLKIT0_SUPPORTED=0 install
  47. desktop-file-install --vendor system --delete-original \
  48. --dir %{buildroot}%{_datadir}/applications \
  49. %{buildroot}%{_datadir}/applications/%{name}.desktop
  50. find %{buildroot}%{_sysconfdir} -type f -exec chmod a-x \{\} \;
  51. chmod a-x %{buildroot}%{_mandir}/*/*
  52. %find_lang %name
  53. %post
  54. touch --no-create %{_datadir}/icons/hicolor
  55. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  56. gtk-update-icon-cache -q %{_datadir}/icons/hicolor ||:
  57. fi
  58. %postun
  59. touch --no-create %{_datadir}/icons/hicolor
  60. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  61. gtk-update-icon-cache -q %{_datadir}/icons/hicolor ||:
  62. fi
  63. %clean
  64. rm -rf %{buildroot}
  65. %files -f %{name}.lang
  66. %defattr(-,root,root)
  67. %doc COPYING
  68. %{_sbindir}/*
  69. %{_bindir}/*
  70. %{_datadir}/applications/system-config-services.desktop
  71. %{_datadir}/icons/hicolor/48x48/apps/system-config-services.png
  72. %{_datadir}/system-config-services
  73. %{python_sitelib}/scservices
  74. %{python_sitelib}/scservices-%{version}-py%{python_version}.egg-info
  75. %{python_sitelib}/scservices.dbus-%{version}-py%{python_version}.egg-info
  76. %{_sysconfdir}/dbus-1/system.d/org.fedoraproject.Config.Services.conf
  77. %{_datadir}/dbus-1/system-services/org.fedoraproject.Config.Services.service
  78. %{_datadir}/polkit-1/actions/org.fedoraproject.config.services.policy
  79. %{_mandir}/*/system-config-services.8*
  80. %changelog
  81. * Sat Apr 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.47-1
  82. - update to 0.99.47
  83. * Wed Oct 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.4-1
  84. - initial build for Vine Linux
  85. * Wed Dec 6 2006 Harald Hoyer <harald@redhat.com> - 0.9.4
  86. - fixed service start/stop (#218429)
  87. - translation update (#216558)
  88. - Resolves: rhbz#216558, rhbz#218429
  89. * Fri Nov 24 2006 Nils Philippsen <nphilipp@redhat.com> - 0.9.3
  90. - pick up updated translations (#216558)
  91. * Fri Oct 20 2006 Nils Philippsen <nphilipp@redhat.com> - 0.9.2
  92. - use intltool-extract for i18n of glade files (#211248) and desktop file
  93. (#207345)
  94. * Tue Sep 05 2006 Nils Philippsen <nphilipp@redhat.com> - 0.9.1
  95. - don't disable Start/Stop/Restart upon reverting changes (#202722)
  96. - add dist tag
  97. - install po files (again)
  98. - require gettext for building
  99. - fix tagging for make archive
  100. - fix circular make dependency
  101. - remove duplicate message definitions
  102. * Fri Aug 18 2006 Nils Philippsen <nphilipp@redhat.com>
  103. - make revert work again (#202467)
  104. - don't show all runlevels when starting
  105. * Mon Jun 05 2006 Jesse Keating <jkeating@redhat.com> - 0.9.0-2
  106. - Added BuildRequires perl-XML-Parser (#194179)
  107. - Added Requires(post) and (postun) gtk2
  108. * Fri May 19 2006 Nils Philippsen <nphilipp@redhat.com>
  109. - rip out autofoo
  110. - use bzip2'ed tarballs
  111. * Fri Mar 03 2006 Nils Philippsen <nphilipp@redhat.com> - 0.9.0
  112. - require hicolor-icon-theme (#182878, #182879)
  113. * Wed Feb 28 2006 Florian Festi <ffesti@redhat.com>
  114. - rewrote large parts of servicemethods (OO design, better handling of old/new
  115. settings, read headers of init scripts completely)
  116. - first implementation of widgets to control services (intended for tools
  117. configuring single services like nfs, samba, bind, ...), still missing: i18n,
  118. dependencies on other services (like portmap)
  119. * Fri Jan 27 2006 Nils Philippsen <nphilipp@redhat.com> - 0.8.99.2
  120. - fix saving xinetd services
  121. * Fri Jan 27 2006 Nils Philippsen <nphilipp@redhat.com> - 0.8.99.1
  122. - implement daemons and xinetd services on separate tabs
  123. * Mon Jan 09 2006 Nils Philippsen <nphilipp@redhat.com>
  124. - separate daemons and xinetd based services
  125. - enable Serbian translation files
  126. * Fri Oct 14 2005 Nils Philippsen <nphilipp@redhat.com>
  127. - don't use pam_stack (#170645)
  128. * Tue Aug 16 2005 Nils Philippsen <nphilipp@redhat.com> - 0.8.26
  129. - revamp getting output from external commands (#162884)
  130. - package %%{_bindir}/serviceconf symlink (#165099)
  131. * Mon May 09 2005 Nils Philippsen <nphilipp@redhat.com> - 0.8.25
  132. - pick up updated translations
  133. * Fri May 06 2005 Nils Philippsen <nphilipp@redhat.com> - 0.8.24
  134. - make "make update-po" pick up translatable strings in desktop file (#156801)
  135. * Fri May 06 2005 Nils Philippsen <nphilipp@redhat.com> - 0.8.23
  136. - pick up new translations
  137. * Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> - 0.8.22-2
  138. - silence %%post
  139. * Fri Apr 01 2005 Nils Philippsen <nphilipp@redhat.com> 0.8.22-1
  140. - fix deprecation warnings (#153052) with patch by Colin Charles
  141. - update the GTK+ theme icon cache on (un)install (Christopher Aillon)
  142. * Thu Mar 24 2005 Nils Philippsen <nphilipp@redhat.com> 0.8.21-1
  143. - connect toggled signals of service/runlevel checkboxes to enable saving again
  144. (#151982)
  145. - consolidate on_optRL*_toggled
  146. - connect delete_event of mainWindow to ask whether things should be saved
  147. before quitting
  148. - tab -> space indentation to avoid ambiguity
  149. - change some typos
  150. * Fri Mar 18 2005 Nils Philippsen <nphilipp@redhat.com> 0.8.20-1
  151. - don't read from /dev/null when restarting xinetd/services to prevent hangs
  152. - build toolbar in glade to avoid DeprecationWarnings (#134978)
  153. - dynamic, translated column titles for runlevel columns
  154. * Thu Feb 17 2005 Daniel J Walsh <dwalsh@redhat.com> 0.8.19-1
  155. - Added patch from Charlie Brej
  156. * Fri Jan 28 2005 Nils Philippsen <nphilipp@redhat.com> 0.8.18-1
  157. - fix off-by-one which prevented saving changes to the last service in the list
  158. (#139456)
  159. * Tue Jan 04 2005 Nils Philippsen <nphilipp@redhat.com> 0.8.17-1
  160. - throw away stderr to not be confused by error messages (#142983)
  161. * Wed Dec 08 2004 Nils Philippsen <nphilipp@redhat.com> 0.8.16-1
  162. - don't hardcode python 2.3 (#142246)
  163. - remove some cruft from configure.in
  164. * Wed Oct 20 2004 Nils Philippsen <nphilipp@redhat.com> 0.8.15-1
  165. - include all languages (#136460)
  166. * Tue Oct 12 2004 Nils Philippsen <nphilipp@redhat.com> 0.8.14-1
  167. - actually install nonblockingreader module (#135445)
  168. * Mon Oct 11 2004 Nils Philippsen <nphilipp@redhat.com> 0.8.12-1
  169. - really update UI when reading from pipes (#120579, #135215)
  170. * Fri Oct 08 2004 Nils Philippsen <nphilipp@redhat.com> 0.8.11-1
  171. - fix gtk.main*() related DeprecationWarnings (#134978)
  172. * Fri Oct 01 2004 Daniel J Walsh <dwalsh@redhat.com> 0.8.10-1
  173. - Update translations
  174. * Mon Sep 27 2004 Nils Philippsen <nphilipp@redhat.com> - 0.8.9-1
  175. - enable Arabic translation (#133722)
  176. * Thu Sep 23 2004 Nils Philippsen <nphilipp@redhat.com> - 0.8.8.1-1
  177. - get in updated translations (#133137)
  178. - appease make distcheck
  179. - pick up updated autofoo scripts
  180. * Wed Jun 16 2004 Brent Fox <bfox@redhat.com> - 0.8.8-9
  181. - use watch cursor when starting and stopping services (bug #122425)
  182. * Mon Apr 12 2004 Brent Fox <bfox@redhat.com> 0.8.8-8
  183. - fix icon path (bug #120184)
  184. * Tue Apr 6 2004 Brent Fox <bfox@redhat.com> 0.8.8-7
  185. - remove extra strip (bug #119624)
  186. * Mon Apr 5 2004 Brent Fox <bfox@redhat.com> 0.8.8-6
  187. - code around new verbosity in libglade (bug #119622)
  188. * Wed Mar 31 2004 Brent Fox <bfox@redhat.com> 0.8.8-5
  189. - fix typo (bug #119559)
  190. * Wed Mar 24 2004 Brent Fox <bfox@redhat.com> 0.8.8-4
  191. - increase default size of the main window
  192. * Fri Mar 19 2004 Brent Fox <bfox@redhat.com> 0.8.8-3
  193. - make app exit properly on window close (bug #118762)
  194. * Wed Mar 17 2004 Brent Fox <bfox@redhat.com> 0.8.8-2
  195. - bump release
  196. * Tue Mar 16 2004 Brent Fox <bfox@redhat.com> 0.8.8-1
  197. - work around problem with libglade
  198. * Wed Mar 3 2004 Brent Fox <bfox@redhat.com> 0.8.7-2
  199. - add a BuildRequires on automake17
  200. * Tue Mar 2 2004 Brent Fox <bfox@redhat.com> 0.8.7-1
  201. - remove dependency on gnome-python2 and gnome-python2-canvas
  202. - try to load glade file in the cwd, if not, pull from /usr/share/
  203. - apply patch from bug #117277
  204. * Tue Jan 6 2004 Daniel J Walsh <dwalsh@redhat.com> 0.8.6-3
  205. - Fix console app so it launches properly
  206. * Tue Jan 6 2004 Daniel J Walsh <dwalsh@redhat.com> 0.8.6-2
  207. - remove requirement for 2.2
  208. * Thu Nov 11 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.6-1
  209. - Rename system-config-services
  210. * Wed Oct 17 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-23
  211. - Add all translated languages
  212. * Fri Oct 17 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-22
  213. - Remove /dev/null from status
  214. * Mon Oct 6 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-21
  215. - Fix crash on about
  216. * Wed Oct 1 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-20
  217. - bump
  218. * Wed Oct 1 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-19
  219. - Fix pathing problem on Hammer
  220. * Fri Sep 5 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-18
  221. - bump
  222. * Fri Sep 5 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-17
  223. - bump
  224. * Fri Sep 5 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-16
  225. - Eliminate debugging message
  226. * Mon Aug 25 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-15
  227. - For some reason this did not make it to RHN Trying again. By Bumping version.
  228. * Tue Aug 5 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-14
  229. - Bumped version for rhl
  230. * Tue Aug 5 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-13
  231. - Remove depracated call
  232. * Wed Jul 30 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-12
  233. - Bumped version for rhl
  234. * Wed Jul 30 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-11
  235. - Changed handling of xinetd services to show xinetd service status
  236. * Wed Jul 30 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-10
  237. - Bumped version for rhl
  238. * Tue Jul 29 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-9
  239. - Allow services to have ':'s in them.
  240. * Wed Jul 9 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-8
  241. - Bumped version for rhl
  242. * Wed Jul 9 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-7
  243. - Add ability to add and delete services
  244. * Tue Jun 17 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-6
  245. - Bumped version for rhel
  246. * Thu Jun 5 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-5
  247. - Minor fixes to match GUI users guide and fix icon
  248. * Tue May 27 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-4
  249. - Bumped version for rhel
  250. * Tue May 27 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-3
  251. - Moved system-config-service.png to /usr/share/system-config-services
  252. * Fri Mar 7 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-2
  253. - Bumped version for rhel
  254. * Tue Mar 4 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.5-1
  255. - Fix swiching runlevels on modified screens.
  256. * Tue Feb 25 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.4-2
  257. - Fix dissapearing text on selecting toggle.
  258. * Tue Jan 28 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.4-1
  259. - Release Candidate
  260. - Fix Icon
  261. * Tue Jan 28 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.3-12
  262. - Fix Language Problems
  263. * Tue Jan 28 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.3-11
  264. - Fix handling of errors in /etc/init.d directory
  265. * Tue Jan 14 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.3-10
  266. - Update documentation
  267. * Thu Jan 9 2003 Daniel J Walsh <dwalsh@redhat.com> 0.8.3-9
  268. - Added StartupNotify=true
  269. - Added accellerators
  270. * Thu Dec 12 2002 Daniel J Walsh <dwalsh@redhat.com> 0.8.3-8
  271. - Update help docs
  272. * Fri Dec 6 2002 Daniel J Walsh <dwalsh@redhat.com> 0.8.3-7
  273. - Fix error catching on invalid display
  274. * Tue Dec 3 2002 Daniel J Walsh <dwalsh@redhat.com> 0.8.3-6
  275. - Fix DISPLAY error handling
  276. - Stretch Screen size
  277. - Update status box after Start/Stop/Restart
  278. - Fix Icon error
  279. * Thu Nov 14 2002 Dan Walsh <dwalsh@redhat.com> 0.8.3-5
  280. - Fix reading of descriptions from startup scripts to ignore blank lines
  281. * Thu Nov 14 2002 Dan Walsh <dwalsh@redhat.com> 0.8.3-4
  282. - Add scrollbar to description and status
  283. * Thu Oct 24 2002 Dan Walsh <dwalsh@redhat.com> 0.8.3-3
  284. - Fix internal handling of version number.
  285. * Thu Oct 10 2002 Dan Walsh <dwalsh@redhat.com> 0.8.3-2
  286. - Remove buttons from screen to match GNOME standards
  287. * Tue Oct 1 2002 Dan Walsh <dwalsh@redhat.com> 0.8.3-1
  288. - Change GUI Presentation and add service status
  289. * Wed Sep 4 2002 Bill Nottingham <notting@redhat.com> 0.8.2-1
  290. - fix startup in some locales
  291. * Tue Sep 3 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-13
  292. - Update translations
  293. * Tue Aug 27 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-12
  294. - Update translations
  295. - Fix multi-processor problem with popen
  296. * Tue Aug 20 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-11
  297. - Use gnome url_show for help
  298. - fix legal notice
  299. * Mon Aug 19 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-10
  300. - Fix word wrap
  301. - Fix initial startup to select first row
  302. - Update languages
  303. * Sat Aug 10 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-9
  304. - eliminate extra python files not intended for release
  305. * Wed Aug 7 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-8
  306. - Update dependencies
  307. * Mon Aug 5 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-7
  308. - Updated internationalization stuff
  309. * Wed Jul 31 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-6
  310. - Updated internationalization stuff
  311. * Fri Jul 26 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-5
  312. - Updated to use intltool and new build environment.
  313. - Added with pam changes for timestamp
  314. - New internationalization stuff
  315. * Tue Jul 23 2002 Dan Walsh <dwalsh@redhat.com>
  316. - Fix the desktop file, using new naming standards.
  317. - Fix the error outpur
  318. * Mon Jul 22 2002 Dan Walsh <dwalsh@redhat.com>
  319. - Fix clock cursor, set app insensitive until services loaded"
  320. * Mon Jul 22 2002 Tammy Fox <tfox@redhat.com>
  321. - Updated docs
  322. * Wed Jul 17 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-1
  323. - Fix internationalization problems. Clean up glade port.
  324. * Thu Jul 11 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-1
  325. - complete rename to system-config-services
  326. * Tue Jul 9 2002 Dan Walsh <dwalsh@redhat.com> 0.8.1-1
  327. - complete gtk2 port, Fix Help, About, fix minor bugs
  328. * Wed May 29 2002 Bill Nottingham <notting@redhat.com> 0.8.0-1
  329. - initial hack gtk2 port
  330. * Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.7.0-3
  331. - Update translations
  332. * Wed Apr 10 2002 Bill Nottingham <notting@redhat.com> 0.7.0-2
  333. - fix docs (#63179)
  334. * Tue Apr 9 2002 Bill Nottingham <notting@redhat.com>
  335. - add some more cases to #60384 fix
  336. * Sun Apr 7 2002 Jeremy Katz <katzj@redhat.com>
  337. - don't show rpmsave, rpmnew, rpmorig, or .swp files (#60384)
  338. * Tue Apr 2 2002 Nalin Dahyabhai <nalin@redhat.com>
  339. - set up userhelper for system-config-services
  340. * Fri Jan 25 2002 Bill Nottingham <notting@redhat.com>
  341. - add patch to fix startup when there are services with 'hide' set
  342. * Fri Aug 24 2001 Tim Powers <timp@redhat.com>
  343. - fixed typo in Requires /;sbin/chkconfig
  344. * Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
  345. - build with new translations
  346. - move system-config-services link to /usr/bin
  347. * Fri Aug 17 2001 Bill Nottingham <notting@redhat.com>
  348. - translation typos (#51774, #51776)
  349. - add system-config-services link
  350. - if we're using find_lang, don't specify the .mo files explicitly
  351. * Mon Aug 13 2001 Tim Powers <timp@redhat.com>
  352. - updated serviceconf.gladestrings
  353. * Fri Aug 10 2001 Tim Powers <timp@redhat.com>
  354. - languified specfile for additional translations
  355. * Thu Aug 9 2001 Alexander Larsson <alexl@redhat.com> 0.6.1-1
  356. - Add an icon
  357. * Thu Aug 9 2001 Alexander Larsson <alexl@redhat.com>
  358. - Install in sysconfig.
  359. * Tue Aug 7 2001 Tim Powers <timp@redhat.com>
  360. - gnomified
  361. - work around parsing languified chkconfig output so that we can get accurate information displayed
  362. * Tue Jul 31 2001 Tim Powers <timp@redhat.com>
  363. - languified since we now serve multiple languages
  364. * Mon Jul 30 2001 Yukihiro Nakai <ynakai@redhat.com>
  365. - User %%fine_lang
  366. - Add Japanese translation.
  367. * Mon Jul 30 2001 Preston Brown <pbrown@redhat.com>
  368. - clean up title display
  369. - make sure initial highlighted entry also displays description info
  370. * Wed Jul 18 2001 Tammy Fox <tfox@redhat.com>
  371. - added help doc
  372. - moved man page into man directory
  373. - added Makefile for man page
  374. - added man page to spec file
  375. * Mon Jul 9 2001 Tim Powers <timp@redhat.com>
  376. - languify to shutup rpmlint
  377. * Thu Jul 5 2001 Tim Powers <timp@redhat.com>
  378. - removed TODO and README, added COPYING file to docs
  379. * Tue May 15 2001 Tim Powers <timp@redhat.com>
  380. - Initial build.