a2ps-vl.spec 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. Summary: Converts text and other types of files to PostScript(TM).
  2. Summary(ja): テキストなどのPostscriptへのフィルタ
  3. Name: a2ps
  4. Version: 4.13b
  5. Release: 56%{?_dist_release}
  6. License: GPL
  7. Group: Applications/Publishing
  8. URL: http://www.inf.enst.fr/~demaille/a2ps/
  9. Source: ftp://ftp.enst.fr/pub/unix/a2ps/%{name}-%{version}.tar.gz
  10. Source1: ftp://ftp.enst.fr/pub/unix/a2ps/i18n-fonts-0.1.tar.gz
  11. Source2: a2ps.sh
  12. Patch0: a2ps-4.13-conf.patch
  13. Patch1: a2ps-4.13-etc.patch
  14. Patch2: a2ps-4.13-flex.patch
  15. Patch3: a2ps-4.13-security.patch
  16. Patch4: a2ps-4.13-glibcpaper.patch
  17. Patch5: a2ps-4.13-varargs.patch
  18. Patch6: a2ps-tmpdir.patch
  19. Patch7: a2ps-sort.patch
  20. # EUC-JP support
  21. Patch10: a2ps-4.13-eucjp.patch.bz2
  22. Patch11: a2ps-4.13-autoenc.patch
  23. Patch12: a2ps-4.13b-attr.patch
  24. Patch13: a2ps-4.13b-numeric.patch
  25. Patch14: a2ps-4.13b-encoding.patch
  26. Patch15: a2ps-4.13b-tilde.patch
  27. Patch16: a2ps-4.13b-rm.patch
  28. Patch17: a2ps-4.13-euckr.patch
  29. Patch18: a2ps-4.13-gnusource.patch
  30. Patch19: a2ps-4.13-bison.patch
  31. Patch20: a2ps-4.13-hebrew.patch
  32. Patch21: a2ps-4.13-malloc.patch
  33. Patch22: a2ps-shell.patch
  34. Patch23: a2ps-includes.patch
  35. Patch24: a2ps-underquoted.patch
  36. Patch25: a2ps-autoconf.patch
  37. Patch26: a2ps-make-fonts-map.patch
  38. Patch27: a2ps-netscape.patch
  39. Patch28: a2ps-wdiff.patch
  40. Patch29: a2ps-U.patch
  41. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  42. BuildRequires: emacsen, gperf, flex, automake, autoconf, texinfo
  43. Requires: fileutils, sh-utils, info, mktemp
  44. Requires: psutils, ghostscript
  45. Obsoletes: a2ps-i18n
  46. Provides: a2ps-i18n
  47. Vendor: Project Vine
  48. Distribution: Vine Linux
  49. # Vine Patches
  50. Patch100: a2ps-4.13b-ptex.patch
  51. Patch101: a2ps-4.13-po.patch
  52. Patch102: a2ps-4.13-printers.patch
  53. Patch103: a2ps-4.13-pdf.patch
  54. Patch104: a2ps-4.13-x86_64.patch
  55. %description
  56. The a2ps filter converts text and other types of files to PostScript(TM).
  57. A2ps has pretty-printing capabilities and includes support for a wide
  58. number of programming languages, encodings (ISO Latins, Cyrillic, etc.),
  59. and medias.
  60. %description -l ja
  61. a2psは優れた印刷能力をもった, テキストを PostScriptへ変換するフィルタ
  62. です。
  63. これは、プログラム言語や文字コード(ISO Latins, Cyrillic, EUC-JP等)、
  64. 用紙、(インタフェースに対して)NLSなどを広範囲にサポートしています。
  65. いくつかのファイルを別のアプリケーションでフィルタリングさせる機能も持っ
  66. ており、DVIや PostScript等を全く同じインタフェースで区別することなく印
  67. 刷することができます。
  68. %prep
  69. %setup -q -n %{name}-4.13 -a 1
  70. %patch0 -p1
  71. %patch1 -p1
  72. %patch2 -p1
  73. %patch3 -p1 -b .security
  74. %patch4 -p1 -b .glibcpaper
  75. %patch5 -p1
  76. %patch6 -p1 -b .tmpdir
  77. %patch7 -p1 -b .sort
  78. %patch10 -p1 -b .euc
  79. %patch11 -p1 -b .ae
  80. %patch12 -p1 -b .attr
  81. # Use C locale's decimal point style (bug #53715).
  82. %patch13 -p1 -b .numeric
  83. # Use locale to determine a sensible default encoding (bug #64584).
  84. %patch14 -p1 -b .encoding
  85. # Fix koi8 tilde (bug #66393).
  86. %patch15 -p1 -b .tilde
  87. # Prevent configure from going interactive (bug #70333).
  88. %patch16 -p1 -b .rm
  89. # Add Korean resource file (bug #81421).
  90. %patch17 -p1 -b .euckr
  91. # Prevent strsignal segfaulting (bug #104970).
  92. %patch18 -p1 -b .gnusource
  93. # Fix problems in .y file spotted by stricter bison.
  94. %patch19 -p1 -b .bison
  95. # Hebrew support (bug #113191).
  96. %patch20 -p1 -b .hebrew
  97. # Prevent "error: conflicting types for 'malloc'".
  98. %patch21 -p1 -b .malloc
  99. # Use environment variable to pass filenames to shell (bug #128647).
  100. %patch22 -p1 -b .shell
  101. # Apply patch from bug #122699 to fix "too many includes" error.
  102. %patch23 -p1 -b .includes
  103. # Fixed m4 files.
  104. %patch24 -p1 -b .underquoted
  105. # Fixed configure.in.
  106. %patch25 -p1 -b .autoconf
  107. # Fix problems in make_fonts_map script (bug #142299). Patch from
  108. # Michal Jaegermann.
  109. %patch26 -p1 -b .make-fonts-map
  110. # Don't try to run netscape. Run mozilla instead (bug #121393).
  111. %patch27 -p1 -b .netscape
  112. # Make pdiff default to not requiring wdiff (bug #68537).
  113. %patch28 -p1 -b .wdiff
  114. # Make pdiff use diff(1) properly (bug #156916).
  115. %patch29 -p1 -b .U
  116. #
  117. # Vine patches
  118. #
  119. # use ptex, platex, jbibtex instead of tex, latex, bibtex
  120. %patch100 -p1 -b .ptex
  121. # year-month-day fix
  122. #%patch101 -p0 -b .po
  123. # default output to stdout
  124. %patch102 -p0 -b .print
  125. # for ps2pdf
  126. %patch103 -p1 -b .pdf
  127. # for x86_64
  128. %patch104 -p0 -b .x86_64
  129. # Fix reference to a2ps binary (bug #112930).
  130. perl -pi -e "s,/usr/local/bin,%{_bindir}," contrib/emacs/a2ps.el
  131. %__libtoolize --copy --force
  132. %__cp %{_datadir}/aclocal/libtool.m4 m4/
  133. %__aclocal -I m4
  134. %__autoconf
  135. %build
  136. chmod 644 {po/ja.po,encoding/euc-jp.edf,README.eucJP}.euc
  137. chmod 644 encoding/euc-kr.edf.euckr
  138. touch `find $PWD`
  139. EMACS=emacs ./configure \
  140. --prefix=%{_prefix} \
  141. --libdir=%{_libdir} \
  142. --sysconfdir=%{_sysconfdir} \
  143. --infodir=%{_infodir} \
  144. --mandir=%{_mandir} \
  145. --datadir=%{_datadir} \
  146. --with-medium=_glibc \
  147. --enable-kanji
  148. # Remove prebuilt info files to force regeneration at build time
  149. find . -name "*.info*" -exec rm -f {} \;
  150. # force rebuilding scanners by flex - patched or not
  151. find src lib -name '*.l' -exec touch {} \;
  152. # these scanners use 'lineno' - incompatible with -CFe flex flags
  153. (
  154. cd src
  155. /bin/sh ../auxdir/ylwrap "flex" sheets-map.l lex.yy.c sheets-map.c --
  156. /bin/sh ../auxdir/ylwrap "flex" lexssh.l lex.yy.c lexssh.c --
  157. cd ../lib
  158. /bin/sh ../auxdir/ylwrap "flex" lexppd.l lex.yy.c lexppd.c --
  159. )
  160. make CFLAGS="$RPM_OPT_FLAGS"
  161. %install
  162. rm -rf $RPM_BUILD_ROOT
  163. make DESTDIR=$RPM_BUILD_ROOT install
  164. mkdir -p %{buildroot}%{_datadir}/a2ps/{afm,fonts}
  165. pushd i18n-fonts-0.1/afm
  166. install -m 0644 *.afm %{buildroot}%{_datadir}/a2ps/afm
  167. pushd ../fonts
  168. install -m 0644 *.pfb %{buildroot}%{_datadir}/a2ps/fonts
  169. popd
  170. popd
  171. # for ja_JP.UTF-8
  172. mv %{buildroot}%{_bindir}/a2ps %{buildroot}%{_bindir}/a2ps.bin
  173. install -c -m 0755 %{SOURCE2} %{buildroot}%{_bindir}/a2ps
  174. ln -sf %{_bindir}/a2ps %{buildroot}%{_bindir}/a2pdf
  175. ### FIXME ###
  176. inst()
  177. {
  178. mkdir -p %{buildroot}%{_datadir}/emacs/site-lisp/
  179. for f in contrib/emacs/*.el; do \
  180. install -m 0644 $f %{buildroot}%{_datadir}/emacs/site-lisp/ ; done
  181. }
  182. rm -f $RPM_BUILD_ROOT%{_infodir}/dir
  183. gzip $RPM_BUILD_ROOT%{_infodir}/* || :
  184. %find_lang %name
  185. %clean
  186. rm -rf $RPM_BUILD_ROOT
  187. %post
  188. /sbin/install-info %{_infodir}/a2ps.info.gz %{_infodir}/dir
  189. /sbin/install-info %{_infodir}/ogonkify.info.gz %{_infodir}/dir
  190. /sbin/install-info %{_infodir}/regex.info.gz %{_infodir}/dir
  191. (cd %{_datadir}/a2ps/afm;
  192. ./make_fonts_map.sh > /dev/null 2>&1 || /bin/true
  193. if [ -f fonts.map.new ]; then
  194. mv fonts.map.new fonts.map
  195. fi
  196. )
  197. %preun
  198. if [ $1 = 0 ]; then
  199. /sbin/install-info --delete %{_infodir}/a2ps.info.gz %{_infodir}/dir
  200. /sbin/install-info --delete %{_infodir}/ogonkify.info.gz %{_infodir}/dir
  201. /sbin/install-info --delete %{_infodir}/regex.info.gz %{_infodir}/dir
  202. fi
  203. %files -f %{name}.lang
  204. %defattr(-,root,root)
  205. %config (noreplace) %{_sysconfdir}/a2ps.cfg
  206. %config(noreplace) %{_sysconfdir}/a2ps-site.cfg
  207. %doc AUTHORS ChangeLog COPYING NEWS README TODO THANKS
  208. %{_bindir}/*
  209. %{_libdir}/*.a
  210. %{_libdir}/*.la
  211. %{_includedir}/*
  212. %{_infodir}/a2ps.info*
  213. %{_infodir}/ogonkify.info*
  214. %{_infodir}/regex.info*
  215. %{_mandir}/*/*
  216. %config %{_datadir}/a2ps/afm/fonts.map
  217. %{_datadir}/a2ps/afm/*.afm
  218. %{_datadir}/a2ps/afm/make_fonts_map.sh
  219. %{_datadir}/a2ps/README
  220. %{_datadir}/a2ps/encoding
  221. %{_datadir}/a2ps/fonts
  222. %{_datadir}/a2ps/ppd
  223. %{_datadir}/a2ps/ps
  224. %{_datadir}/a2ps/sheets
  225. %{_datadir}/ogonkify/
  226. %{_datadir}/emacs/site-lisp/*
  227. %dir %{_datadir}/a2ps/afm
  228. %dir %{_datadir}/a2ps
  229. %changelog
  230. * Sat Jun 13 2009 KOBAYASHI Taizo <tkoba@vinelinux.org> 4.13b-54
  231. - add x86_64 patch (patch104)
  232. * Thu Apr 30 2009 KOBAYASHI Taizo <tkoba@vinelinux.org> 4.13b-55
  233. - modified a2ps/pf wrapper script for handling utf-8
  234. * Sun Sep 14 2008 Shu KONNO <owa@bg.wakwak.com> 4.13b-54vl5
  235. - applied new versioning policy, spec in utf-8
  236. - fixed typo of release number at Sun Aug 20 2006
  237. #* Sun Aug 20 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 4.13b-30vl5
  238. * Sun Aug 20 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 4.13b-53vl1
  239. - add BuildRequires: emacsen instead of emacs
  240. - add BuildRequires: flex, automake, autoconf
  241. - add Requires: mktemp
  242. - update conf.patch (patch0)
  243. - move {po,printers,pdf}.patch to patch101-103
  244. - not apply po.patch (patch101)
  245. - sync with fedora core's 4.13b-53
  246. * Fri Jul 14 2006 Tim Waugh <twaugh@redhat.com> 4.13b-53
  247. - Fixed Hebrew font names (bug #174304).
  248. * Tue May 30 2006 Tim Waugh <twaugh@redhat.com> 4.13b-51
  249. - Build requires gettext (bug #193346).
  250. * Tue Apr 4 2006 Tim Waugh <twaugh@redhat.com> 4.13b-50
  251. - Use sort correctly in make_font_map.sh (bug #187884).
  252. * Wed Feb 15 2006 Tim Waugh <twaugh@redhat.com> 4.13b-49
  253. - Use mktemp in scripts.
  254. * Thu May 5 2005 Tim Waugh <twaugh@redhat.com> 4.13b-47
  255. - Make pdiff use diff(1) properly (bug #156916).
  256. * Wed Mar 23 2005 Tim Waugh <twaugh@redhat.com> 4.13b-46
  257. - Make pdiff default to not requiring wdiff (bug #68537).
  258. * Wed Feb 2 2005 Tim Waugh <twaugh@redhat.com> 4.13b-44
  259. - Don't try to run netscape. Run mozilla instead (bug #121393).
  260. * Thu Dec 9 2004 Tim Waugh <twaugh@redhat.com> 4.13b-43
  261. - Fixed font path (bug #142294).
  262. - Fixed problems in make_fonts_map script (bug #142299). Patch from
  263. Michal Jaegermann.
  264. * Tue Dec 7 2004 Tim Waugh <twaugh@redhat.com> 4.13b-42
  265. - Fixed configure.in.
  266. - Fixed m4 files.
  267. - Apply patch from bug #122699 to fix "too many includes" error.
  268. * Tue Oct 5 2004 Tim Waugh <twaugh@redhat.com> 4.13b-41
  269. - Build requires texinfo (bug #134663).
  270. * Thu Jul 29 2004 Tim Waugh <twaugh@redhat.com> 4.13b-40
  271. - Use environment variable to pass filenames to shell (bug #128647).
  272. * Thu Jun 24 2004 Tim Waugh <twaugh@redhat.com> 4.13b-39
  273. - Build requires libtool (bug #125823).
  274. * Mon Mar 22 2004 Tim Waugh <twaugh@redhat.com> 4.13b-37
  275. - Build requires flex (bug #118892).
  276. * Tue Mar 2 2004 Tim Waugh <twaugh@redhat.com> 4.13b-35
  277. - Prevent "error: conflicting types for 'malloc'".
  278. * Fri Jan 16 2004 Tim Waugh <twaugh@redhat.com> 4.13b-33
  279. - Post scriptlet requires sed, coreutils (bug #107322).
  280. * Mon Jan 12 2004 Tim Waugh <twaugh@redhat.com> 4.13b-32
  281. - Hebrew support (bug #113191).
  282. * Tue Jan 6 2004 Tim Waugh <twaugh@redhat.com> 4.13b-31
  283. - Build requires gperf.
  284. - Fix problems in .y file spotted by stricter bison.
  285. - Fix reference to a2ps binary (bug #112930).
  286. * Mon Dec 06 2004 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 4.13b-30vl4
  287. - added {pdf,po,printers}.patch
  288. changed default output dev from printer to stdout.
  289. - added a2pdf and requires ghostscript
  290. - build requires gperf
  291. * Thu Apr 24 2004 Satoshi MACHINO <machino@vinelinux.org> 4.13b-30vl2
  292. - fixed char set in spec
  293. -- SJIS to EUC-JP
  294. * Mon Dec 22 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 4.13b-30vl1
  295. - modified for Vine
  296. - added patch100 for using ptex and platex instead of tex and latex
  297. * Fri Oct 17 2003 Tim Waugh <twaugh@redhat.com> 4.13b-30
  298. - Prevent strsignal segfaulting (bug #104970).
  299. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  300. - rebuilt
  301. * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
  302. - rebuilt
  303. * Thu Jan 9 2003 Tim Waugh <twaugh@redhat.com> 4.13b-27
  304. - Add Korean resource file (bug #81421).
  305. * Tue Jan 7 2003 Jeff Johnson <jbj@redhat.com> 4.13b-26
  306. - don't include -debuginfo files in package.
  307. * Wed Nov 20 2002 Tim Powers <timp@redhat.com>
  308. - rebuild on all arches
  309. - remove lingering files from the buildroot that we aren't shipping
  310. - pass %%{_libdir} and %%{_datadir} to configure so that we are lib64'ized
  311. - fix bad perms on some files
  312. * Mon Aug 5 2002 Tim Waugh <twaugh@redhat.com> 4.13b-24
  313. - Prevent configure from going interactive (bug #70333).
  314. - Try to cope with UTF-8 a little bit (bug #70057).
  315. * Fri Jun 21 2002 Tim Powers <timp@redhat.com> 4.13b-23
  316. - automated rebuild
  317. * Fri Jun 21 2002 Tim Waugh <twaugh@redhat.com> 4.13b-22
  318. - Fix koi8 tilde (bug #66393).
  319. * Thu May 30 2002 Tim Waugh <twaugh@redhat.com> 4.13b-21
  320. - Provide a2ps-i18n (bug #65231).
  321. - Fix default encoding (bug #64584).
  322. * Thu May 23 2002 Tim Powers <timp@redhat.com> 4.13b-20
  323. - automated rebuild
  324. * Mon Feb 25 2002 Tim Waugh <twaugh@redhat.com> 4.13b-19
  325. - Rebuild in new environment.
  326. * Tue Jan 22 2002 Tim Waugh <twaugh@redhat.com> 4.13b-18
  327. - Fix a2ps-4.13-conf.patch (bug #31360).
  328. - Add documentation about the default behaviour concerning LC_PAPER
  329. (bug #43829).
  330. * Wed Jan 09 2002 Tim Powers <timp@redhat.com> 4.13b-17
  331. - automated rebuild
  332. * Wed Jan 9 2002 Tim Waugh <twaugh@redhat.com>
  333. - Fix build with newer compiler.
  334. - s/Copyright:/License:/.
  335. - Use C locale's decimal point style (bug #53715).
  336. * Fri Jun 1 2001 Oliver Paukstadt <oliver.paukstadt@millenux.com>
  337. - fixed varargs-usage in title.c
  338. * Thu Apr 26 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  339. - call libtoolize to allow easy porting to new archs
  340. * Thu Feb 28 2001 SATO Satoru <ssato@redhat.com>
  341. - bunzip2-ed all patches except eucjp
  342. * Thu Feb 22 2001 SATO Satoru <ssato@redhat.com>
  343. - support Japanese
  344. - bzip2-ed all patches
  345. - replace macros (%%makeinstall, %%configure) with traditional
  346. commands to avoid some troubles those macros caused.
  347. * Tue Feb 20 2001 Trond Eivind Glomsr <teg@redhat.com>
  348. - Using letter is as weird as oz, fl. oz, Fahrenheit, lb etc.
  349. Add a patch for using the glibc media type for giving US
  350. letter for en_US (only locale with this paper), and A4
  351. for everyone else.
  352. * Tue Feb 20 2001 Tim Powers <timp@redhat.com>
  353. - changed default medium back to letter (bug 27794)
  354. * Mon Feb 19 2001 Trond Eivind Glomsr <teg@redhat.com>
  355. - langify
  356. - use %%{_tmppath}
  357. * Mon Feb 12 2001 Tim Waugh <twaugh@redhat.com>
  358. - Fix tmpfile security patch so that it actually _works_ (bug #27155).
  359. * Sun Jan 21 2001 Tim Waugh <twaugh@redhat.com>
  360. - New-style prereq line.
  361. - %%post script requires fileutils (mv) and sh-utils (true). This
  362. should fix bug #24251).
  363. * Mon Jan 08 2001 Trond Eivind Glomsr <teg@redhat.com>
  364. - Add /usr/bin/emacs to BuildRequires
  365. - A4
  366. - specify use of GNU Emacs for building
  367. * Fri Jan 05 2001 Preston Brown <pbrown@redhat.com>
  368. - security patch for tmpfile creation from Olaf Kirch <okir@lst.de>
  369. * Mon Dec 11 2000 Preston Brown <pbrown@redhat.com>
  370. - obsoleted old a2ps-i18n package (it was tiny) and included those fonts
  371. directly here.
  372. * Thu Dec 7 2000 Tim Powers <timp@redhat.com>
  373. - built for dist-7.1
  374. * Mon Aug 07 2000 Tim Powers <timp@redhat.com>
  375. - update to 4.13b to fix some bugs, thanks to czar@acm.org for giving me a
  376. heads up on this (bug #15679)
  377. * Mon Jul 24 2000 Prospector <prospector@redhat.com>
  378. - rebuilt
  379. * Mon Jul 10 2000 Tim Powers <timp@redhat.com>
  380. - rebuilt
  381. * Fri Jun 23 2000 Tim Powers <timp@redhat.com>
  382. - info pages weren't getting gzipped.
  383. - stdout & stderror redirected to /dev/null in post section
  384. * Mon Jun 19 2000 Tim Powers <timp@redhat.com>
  385. - fixed bug 12451 which was a stupid mistake by me.
  386. - quiet the post section
  387. - added patches from michal@ellpspace.math.ualberta.ca and did some spec file
  388. magic he suggested as well.
  389. * Fri Jun 2 2000 Tim Powers <timp@redhat.com>
  390. - fixed bug 5876, was not setting the paper size to Letter again :(
  391. - man pages and info pages to /usr/share, FHS compliant.
  392. - used macros wherever possible
  393. * Wed May 31 2000 Tim Powers <timp@rehat.com>
  394. - fixed bug #11078, now requires psutils
  395. * Wed Apr 26 2000 Tim Powers <timp@redhat.com>
  396. - updated to 4.13
  397. - compress man pages
  398. * Thu Feb 10 2000 Tim Powers <timp@redhat.com>
  399. - gzip man pages
  400. - strip binaries
  401. * Mon Jan 24 2000 Tim Powers <timp@redhat.com>
  402. - had to be more specific since the i18n stuff was removed from the package.
  403. There is a new a2ps-i18n package which treats the
  404. /usr/share/a2ps/afm/fonts.map file as a config file
  405. * Wed Oct 27 1999 Tim Powers <timp@redhat.com>
  406. - added the --with-medium=Letter option to the configure process
  407. * Thu Aug 5 1999 Tim Powers <timp@redhat.com>
  408. - fixed problems with missing dirs as reported in bug 3822
  409. - built for powertools
  410. * Tue Jul 6 1999 Tim Powers <timp@redhat.com>
  411. - rebuilt for powertools 6.1
  412. * Wed May 12 1999 Bill Nottingham <notting@redhat.com>
  413. - add a2ps-site.cfg
  414. * Mon Apr 26 1999 Preston Brown <pbrown@redhat.com>
  415. - update to 4.12 for Powertools 6.0
  416. * Sat Oct 24 1998 Jeff Johnson <jbj@redhat.com>
  417. - narrower range of %files splats.
  418. - install info correctly.
  419. - new description/summary text.
  420. * Tue Oct 06 1998 Michael Maher <mike@redhat.com>
  421. - updated source
  422. * Sat Jul 04 1998 Michael Maher <mike@redhat.com>
  423. - built package