ncurses-vl.spec 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. %global revision 20240615
  2. %define includedirw %{_includedir}/ncursesw
  3. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  4. Summary: A screen handling and optimization package.
  5. Summary(ja): スクリーンの操作と最適化を行うパッケージ
  6. Name: ncurses
  7. Version: 6.5
  8. Release: 2%{?_dist_release}
  9. Group: system
  10. Vendor: Project Vine
  11. Distribution: Vine Linux
  12. Packager: daisuke
  13. License: distributable
  14. URL: https://invisible-island.net/ncurses/ncurses.html
  15. Source0: https://invisible-mirror.net/archives/ncurses/current/ncurses-%{version}-%{revision}.tgz
  16. Patch8: ncurses-config.patch
  17. Patch9: ncurses-libs.patch
  18. Patch11: ncurses-urxvt.patch
  19. Patch12: ncurses-kbs.patch
  20. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  21. BuildRequires: pkgconfig
  22. %description
  23. The curses library routines are a terminal-independent method of
  24. updating character screens with reasonable optimization. The ncurses
  25. (new curses) library is a freely distributable replacement for the
  26. discontinued 4.4 BSD classic curses library.
  27. %package devel
  28. Summary: The development files for applications which use ncurses.
  29. Summary(ja): ncurses を用いるアプリケーション開発用のファイル
  30. Group: programming
  31. Requires: %{name} = %{version}-%{release}
  32. Obsoletes: libtermcap-devel <= 2.0.8-46vl1
  33. Provides: libtermcap-devel = 2.0.8-47
  34. %description devel
  35. The header files and libraries for developing applications that use
  36. the ncurses CRT screen handling and optimization package.
  37. Install the ncurses-devel package if you want to develop applications
  38. which will use ncurses.
  39. Use the following compiler flags to build against the ncurses library:
  40. -lncurses
  41. (compile and link against the regular ncurses library)
  42. -I %{includedirw} -lncursesw
  43. (compile and link against the wide-character, UTF-8, library)
  44. %package c++-devel
  45. Summary: C++ bindings to ncurses
  46. Group: programming
  47. Requires: %{name} = %{version}-%{release}
  48. Requires: %{name}-devel = %{version}-%{release}
  49. %description c++-devel
  50. C++ bindings to ncurses
  51. %package -n compat32-%{name}
  52. Summary: A screen handling and optimization package.
  53. Summary(ja): スクリーンの操作と最適化を行うパッケージ
  54. Group: system,legacy
  55. Requires: %{name} = %{version}-%{release}
  56. %description -n compat32-%{name}
  57. The curses library routines are a terminal-independent method of
  58. updating character screens with reasonable optimization. The ncurses
  59. (new curses) library is a freely distributable replacement for the
  60. discontinued 4.4 BSD classic curses library.
  61. %package -n compat32-%{name}-devel
  62. Summary: The development files for applications which use ncurses.
  63. Summary(ja): ncurses を用いるアプリケーション開発用のファイル
  64. Group: programming,legacy
  65. Requires: compat32-%{name} = %{version}-%{release}
  66. Requires: %{name}-devel = %{version}-%{release}
  67. Obsoletes: compat32-libtermcap-devel <= 2.0.8-46vl1
  68. Provides: compat32-libtermcap-devel = 2.0.8-47
  69. %description -n compat32-%{name}-devel
  70. The header files and libraries for developing applications that use
  71. the ncurses CRT screen handling and optimization package.
  72. Install the ncurses-devel package if you want to develop applications
  73. which will use ncurses.
  74. Use the following compiler flags to build against the ncurses library:
  75. -lncurses
  76. (compile and link against the regular ncurses library)
  77. -I %{includedirw} -lncursesw
  78. (compile and link against the wide-character, UTF-8, library)
  79. %package -n compat32-%{name}-c++-devel
  80. Summary: C++ bindings to ncurses
  81. Group: programming,legacy
  82. Requires: compat32-%{name} = %{version}-%{release}
  83. Requires: compat32-%{name}-devel = %{version}-%{release}
  84. Requires: %{name}-c++-devel = %{version}-%{release}
  85. %description -n compat32-%{name}-c++-devel
  86. C++ bindings to ncurses
  87. %debug_package
  88. %prep
  89. %setup -q -n %{name}-%{version}-%{revision}
  90. #%patch8 -p1 -b .config
  91. %patch9 -p1 -b .libs
  92. %patch11 -p1 -b .urxvt
  93. %patch12 -p1 -b .kbs
  94. for f in ANNOUNCE; do
  95. iconv -f iso8859-1 -t utf8 -o ${f}{_,} &&
  96. touch -r ${f}{,_} && mv -f ${f}{_,}
  97. done
  98. %build
  99. %define rootdatadir %{_prefix}/lib
  100. common_options=" \
  101. --enable-colorfgbg \
  102. --enable-hard-tabs \
  103. --enable-overwrite \
  104. --enable-pc-files \
  105. --enable-xmc-glitch \
  106. --disable-stripping \
  107. --disable-wattr-macros \
  108. --with-ospeed=unsigned \
  109. --with-pkg-config-libdir=%{_libdir}/pkgconfig \
  110. --with-shared \
  111. --with-terminfo-dirs=%{_sysconfdir}/terminfo:%{_datadir}/terminfo:%{rootdatadir}/terminfo \
  112. --with-termlib=tinfo \
  113. --with-ticlib=tic \
  114. --with-xterm-kbs=DEL \
  115. --without-ada"
  116. abi5_options="--with-chtype=long"
  117. for abi in 5 6; do
  118. for char in narrowc widec; do
  119. mkdir $char$abi
  120. pushd $char$abi
  121. ln -s ../configure .
  122. [ $abi = 6 -a $char = widec ] && progs=yes || progs=no
  123. %configure $(
  124. echo $common_options --with-abi-version=$abi
  125. [ $abi = 5 ] && echo $abi5_options
  126. [ $char = widec ] && echo --enable-widec || echo --disable-widec
  127. [ $progs = yes ] || echo --without-progs
  128. )
  129. make %{?_smp_mflags} libs
  130. [ $progs = yes ] && make %{?_smp_mflags} -C progs
  131. popd
  132. done
  133. done
  134. %install
  135. rm -rf %{buildroot}
  136. make -C narrowc5 DESTDIR=%{buildroot} install.libs
  137. rm %{buildroot}%{_libdir}/lib{tic,tinfo}.so.5*
  138. make -C widec5 DESTDIR=%{buildroot} install.libs
  139. make -C narrowc6 DESTDIR=%{buildroot} install.libs
  140. rm %{buildroot}%{_libdir}/lib{tic,tinfo}.so.6*
  141. make -C widec6 DESTDIR=%{buildroot} install.{libs,progs,data,includes,man}
  142. chmod 755 %{buildroot}%{_libdir}/lib*.so.*.*
  143. chmod 644 %{buildroot}%{_libdir}/lib*.a
  144. # move lib{ncurses{,w},tinfo}.so.* to /lib*
  145. mkdir %{buildroot}/%{_lib}
  146. for l in %{buildroot}%{_libdir}/lib{ncurses{,w},tinfo}.so.*; do
  147. bn=$(basename $l)
  148. ln -sf ..%{_libdir}/$bn %{buildroot}/%{_lib}/$bn
  149. done
  150. mkdir -p %{buildroot}%{_sysconfdir}/terminfo
  151. baseterms=
  152. # prepare -base and -term file lists
  153. for termname in \
  154. ansi dumb linux vt100 vt100-nav vt102 vt220 vt52 \
  155. Eterm\* aterm bterm cons25 cygwin eterm\* gnome gnome-256color hurd jfbterm \
  156. konsole konsole-256color mach\* mlterm mrxvt nsterm putty{,-256color} pcansi \
  157. rxvt{,-\*} screen{,-\*color,.[^mlp]\*,.linux,.mlterm\*,.putty{,-256color},.mrxvt} \
  158. st{,-\*color} sun teraterm teraterm2.3 tmux{,-\*} vte vte-256color vwmterm \
  159. wsvt25\* xfce xterm xterm-\*
  160. do
  161. for i in %{buildroot}%{_datadir}/terminfo/?/$termname; do
  162. for t in $(find %{buildroot}%{_datadir}/terminfo -samefile $i); do
  163. baseterms="$baseterms $(basename $t)"
  164. done
  165. done
  166. done 2> /dev/null
  167. for t in $baseterms; do
  168. echo "%dir %{_datadir}/terminfo/${t::1}"
  169. echo %{_datadir}/terminfo/${t::1}/$t
  170. done 2> /dev/null | sort -u > terms.base
  171. find %{buildroot}%{_datadir}/terminfo \! -type d | \
  172. sed "s|^%{buildroot}||" | while read t
  173. do
  174. echo "%dir $(dirname $t)"
  175. echo $t
  176. done 2> /dev/null | sort -u | comm -2 -3 - terms.base > terms.term
  177. cat terms.base terms.term |sort -u > terms.all
  178. # can't replace directory with symlink (rpm bug), symlink all headers
  179. mkdir %{buildroot}%{_includedir}/ncurses{,w}
  180. for l in %{buildroot}%{_includedir}/*.h; do
  181. ln -s ../$(basename $l) %{buildroot}%{_includedir}/ncurses
  182. ln -s ../$(basename $l) %{buildroot}%{_includedir}/ncursesw
  183. done
  184. # don't require -ltinfo when linking with --no-add-needed
  185. for l in %{buildroot}%{_libdir}/libncurses{,w}.so; do
  186. soname=$(basename $(readlink $l))
  187. rm -f $l
  188. echo "INPUT($soname -ltinfo)" > $l
  189. done
  190. rm -f %{buildroot}%{_libdir}/libcurses{,w}.so
  191. echo "INPUT(-lncurses)" > %{buildroot}%{_libdir}/libcurses.so
  192. echo "INPUT(-lncursesw)" > %{buildroot}%{_libdir}/libcursesw.so
  193. echo "INPUT(-ltinfo)" > %{buildroot}%{_libdir}/libtermcap.so
  194. rm -f %{buildroot}%{_bindir}/ncurses*5-config
  195. rm -f %{buildroot}%{_libdir}/terminfo
  196. #rm -f %{buildroot}%{_libdir}/pkgconfig/{*_g,ncurses++*}.pc
  197. %pre
  198. r=$(realpath -e /%{_lib}/libncurses.so.5 2>/dev/null)
  199. if [ -d /bin ] && [[ "${r}" == "%{_libdir}/"* ]]; then
  200. for lib in ncurses ncursesw tinfo; do
  201. for v in 5 6; do
  202. for c in /%{_lib}/lib${lib}.so.${v}*; do
  203. bn=$(basename ${c})
  204. rm -f /%{_lib}/$bn
  205. ln -sf ..%{_libdir}/$bn /%{_lib}/$bn
  206. done
  207. done
  208. done
  209. fi
  210. %files -f terms.all
  211. %defattr(-,root,root)
  212. %license COPYING
  213. %doc ANNOUNCE AUTHORS README TO-DO
  214. %{_bindir}/[cirt]*
  215. %{_mandir}/man1/*
  216. %{_mandir}/man5/*
  217. %{_mandir}/man7/*
  218. /%{_lib}/lib*.so.*
  219. %{_libdir}/lib*.so.*
  220. %dir %{_sysconfdir}/terminfo
  221. %{_datadir}/tabset
  222. %dir %{_datadir}/terminfo
  223. %files devel
  224. %defattr(-,root,root)
  225. %doc test
  226. %doc doc/html/hackguide.html
  227. %doc doc/html/ncurses-intro.html
  228. %doc c++/README*
  229. %{_bindir}/ncurses*-config
  230. %{_libdir}/lib*.so
  231. %{_libdir}/lib*.a
  232. %dir %{_includedir}/ncurses
  233. %dir %{_includedir}/ncursesw
  234. %{_includedir}/ncurses/*.h
  235. %{_includedir}/ncursesw/*.h
  236. %{_includedir}/*.h
  237. %{_mandir}/man3/*
  238. %{_libdir}/pkgconfig/*.pc
  239. %exclude %{_libdir}/pkgconfig/ncurses++*.pc
  240. %files c++-devel
  241. %defattr(-,root,root)
  242. %doc c++/NEWS c++/PROBLEMS c++/README*
  243. %{_includedir}/ncurses/cursesapp.h
  244. %{_includedir}/ncurses/curses?.h
  245. %{_includedir}/ncurses/etip.h
  246. %{_libdir}/libncurses++.a
  247. %{_libdir}/libncurses++w.a
  248. %{_libdir}/pkgconfig/ncurses++*.pc
  249. %if %{build_compat32}
  250. %files -n compat32-%{name}
  251. %defattr(-,root,root)
  252. /%{_lib}/lib*.so.*
  253. %{_libdir}/lib*.so.*
  254. %files -n compat32-%{name}-devel
  255. %defattr(-,root,root)
  256. %{_libdir}/lib*.so
  257. %{_libdir}/lib*.a
  258. %{_libdir}/pkgconfig/*.pc
  259. %exclude %{_libdir}/pkgconfig/ncurses++*.pc
  260. %files -n compat32-%{name}-c++-devel
  261. %defattr(-,root,root)
  262. %{_libdir}/libncurses++.a
  263. %{_libdir}/libncurses++w.a
  264. %{_libdir}/pkgconfig/ncurses++*.pc
  265. %endif
  266. %changelog
  267. * Mon Jun 17 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.5-2
  268. - updated to 6.5 + 20240615.
  269. * Thu May 09 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.5-1
  270. - updated to 6.5 + 20240504.
  271. - prepared for usrmerge.
  272. * Wed Apr 26 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.4-1
  273. - updated to 6.4 + 20230424.
  274. * Sun Nov 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.3-3
  275. - updated to 6.3 + 20221029.
  276. * Fri May 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.3-2
  277. - updated to 6.3 + 20220507.
  278. * Tue Nov 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.3-1
  279. - updated to 6.3 + 20211030.
  280. * Thu Aug 05 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.2-2
  281. - updated to 6.2 + 20210731.
  282. - dropped ldconfig scriptlets.
  283. - updated Patch9, 11 and 12.
  284. * Mon Feb 15 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.2-1
  285. - updated to 6.2 + 20210213.
  286. - updated Patch9 and 12.
  287. * Sun Oct 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1-3
  288. - dropped Patch8.
  289. * Fri Oct 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1-2
  290. - updated to 6.1 + 20191015.
  291. - updated Patch8.
  292. * Fri Aug 30 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1-1
  293. - updated to 6.1 + 20190824.
  294. * Mon Jan 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.9-3
  295. - rebuild with VineSeed environment
  296. * Wed Dec 14 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.9-2
  297. - don't require -ltinfo when linking with --no-add-needed
  298. * Fri Sep 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.9-1
  299. - update to 5.9 + 20110716
  300. - update all patches
  301. - add pkgconfig file
  302. * Sun Mar 27 2011 IWAI, Masaharu <iwai@alib.jp> 5.6-5
  303. - build with new toolchain
  304. * Fri Mar 5 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.6-4
  305. - rebuilt with new toolchain
  306. - add Requires(post,pre): /sbin/ldconfig
  307. * Sat Jun 27 2009 NAKAMURA Kenta <kenta@vinelinux.org> 5.6-3
  308. - updated %%files section on compat32-* packages
  309. * Sun Mar 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.6-2
  310. - changed c++-devel Group to Development/Libraries
  311. - changelog of 5.6-1 is missing... seemed to be updated on Aug 10 2008
  312. * Fri Oct 28 2005 NAKAMURA Kenta <kenta@c.csce.kyushu-u.ac.jp> 5.4-0vl3
  313. - added compat32- packages for x86_64 architecture support
  314. * Mon May 17 2004 Tomoya TAKA <taka@vinelinux.org> 5.4-0vl2
  315. - add patch10 taken from fedora's 5.4-4
  316. * Sun May 9 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 5.4-0vl1
  317. - new upstream release
  318. - remove obsolete patches
  319. * Mon Mar 22 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.3-9vl1
  320. - synced up with Fedora 5.3-9
  321. - Thu Sep 11 2003 Adrian Havill <havill@redhat.com> 5.3-9
  322. - remove not-so safe-sprintf configure option because the code does
  323. not appear to be stable enough for some apps. (#103790)
  324. - Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 5.3-8.1
  325. - RHEL bump
  326. - Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 5.3-8
  327. - multilib patch (#91211)
  328. - Mon Aug 11 2003 Adrian Havill <havill@redhat.com> 5.3-7
  329. - fixed the safe sprintf code that was enabled in the previous release
  330. by the configure parameter. (#101486)
  331. - Mon Jun 16 2003 Elliot Lee <sopwith@redhat.com> 5.3-6.1
  332. - Fix ac25 patch, make it easy to turn off GPM support
  333. - Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  334. - rebuilt
  335. - Thu May 22 2003 Adrian Havill <havill@redhat.com> 5.3-5
  336. - added latest rollup patch with widec/UTF8 centric weekly (20030517)
  337. - added --enable-widec to configure (#86311)
  338. original work done by Mr. Sam <sam@email-scan.com>
  339. - require sharutils (#86605)
  340. - add gpm, xmc support
  341. - add debug syms back into package
  342. - updated autoconf/configure patch
  343. * Thu Mar 27 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 5.3-4vl1
  344. - synced Rawhide 5.3-4
  345. * Fri Feb 08 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 5.2-16vl2
  346. - revert to patch13 from 14 for XF86-4
  347. * Wed Feb 06 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 5.2-16vl1
  348. - synced Rawhide 5.2-16
  349. * Tue Aug 28 2001 Shoji Matsumoto <shom@vinelinux.org> 5.2-12vl2
  350. - patch 3 (xterm) disabled. this patch is for XF86-4???
  351. * Wed Aug 22 2001 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 5.2-12vl1
  352. - added kon patch for Vine
  353. * Fri Jul 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-12
  354. - Sync terminfo with termcap 11.0.1-10
  355. * Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-11
  356. - Update to patchlevel 20010623, fixes some lynx issues
  357. * Mon Jun 18 2001 Helge Deller <hdeller@redhat.de>
  358. - fixed tput -S segfaulting bug (#44669)
  359. - use _tmppath for BuildRoot:
  360. - Copyright -> License
  361. * Sun Apr 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  362. - Update to patchlevel 20010407
  363. * Tue Mar 6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  364. - Fix up some terminfo entries containing includes to
  365. "/var/tmp/ncurses-root/something" (#30771)
  366. * Thu Feb 22 2001 Harald Hoyer <harald@redhat.de>
  367. - fixed rxvt backspace setting
  368. * Fri Feb 9 2001 Yukihiro Nakai <ynakai@redhat.com>
  369. - Update Japanese kterm patch
  370. * Mon Jan 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  371. - Update
  372. - Add japanese patch from termcap
  373. - Fix ospeed handling
  374. * Mon Jan 1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  375. - Add libcurses.a -> libncurses.a symlink (RFE #23023)
  376. * Tue Dec 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  377. - Use --with-ospeed='unsigned int'
  378. * Fri Nov 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  379. - Fix alpha and ia64
  380. - Rebuild with gcc 2.96-64
  381. * Thu Nov 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  382. - 5.2
  383. - Fix typo in man page (Bug #20205)
  384. - update the "screen" terminfo entries to the version supplied with
  385. screen 3.9.8
  386. * Mon Oct 9 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  387. - Update (fixes the "make menuconfig" bug introduced by the security fix)
  388. * Tue Oct 3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  389. - Fix security problem (possible buffer overrun)
  390. * Fri Aug 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  391. - Add the bugfix patches from the ncurses maintainer
  392. * Thu Jul 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  393. - 5.1
  394. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  395. - automatic rebuild
  396. * Mon Jun 5 2000 Matt Wilson <msw@redhat.com>
  397. - *don't ship symlinks from lib*.so.5 to lib*.so.4!
  398. - use FHS macros
  399. * Fri Jun 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  400. - rebuild for 7.0
  401. - /usr/share/man
  402. - update URL for patches
  403. - misc. fixes to spec file
  404. * Mon Mar 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  405. - use the real library version number
  406. - update to 20000319
  407. * Tue Mar 7 2000 Jeff Johnson <jbj@redhat.com>
  408. - rebuild for sparc baud rates > 38400.
  409. * Fri Feb 18 2000 Preston Brown <pbrown@redhat.com>
  410. - xterm terminfo entries from XFree86 3.3.6
  411. - final round of xterm fixes, follow debian policy.
  412. * Sat Feb 5 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  413. - strip libraries
  414. * Thu Feb 3 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  415. - More xterm fixes (Bug #9087)
  416. * Thu Jan 27 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  417. - More xterm fixes from Hans de Goede (Bug #8633)
  418. * Sat Jan 15 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  419. - remove some broken symlinks (leftovers from libncurses.so.5)
  420. - Use %configure (Bug #8484)
  421. * Tue Jan 11 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  422. - Add xterm patch from Hans de Goede <hans@highrise.nl>
  423. - Patch 20000108, this fixes a problem with a header file.
  424. * Wed Jan 5 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  425. - Add 20000101 patch, hopefully finally fixing the xterm description
  426. * Wed Dec 22 1999 Cristian Gafton <gafton@redhat.com>
  427. - revert to the old major number - because the ABI is not changed (and we
  428. should be handling the changes via symbol versioning anyway)
  429. * Fri Nov 12 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  430. - Fix a typo in spec
  431. - Add the 19991006 patch, fixing some C++ STL compatibility problems.
  432. - get rid of profiling and debugging versions - we need to save space...
  433. * Thu Nov 4 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  434. - 5.0
  435. - some spec cleanups to make updating easier
  436. - add links *.so.5 to *.so.4 - they are fully binary compatible.
  437. (Why did they change the invocation number???)
  438. * Wed Sep 22 1999 Cristian Gafton <gafton@redhat.com>
  439. - make clean in the test dir - don't ship any binaries at all.
  440. * Mon Sep 13 1999 Preston Brown <pbrown@redhat.com>
  441. - fixed stripping of test programs.
  442. * Sun Aug 29 1999 Preston Brown <pbrown@redhat.com>
  443. - removed 'flash' capability for xterm; see bug #2820 for details.
  444. * Fri Aug 27 1999 Cristian Gafton <gafton@redhat.com>
  445. - add the resetall script from Marc Merlin <marc@merlins.org>
  446. * Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
  447. - added iris-ansi-net as alias for iris-ansi (bug #2561)
  448. * Fri Jul 30 1999 Michael K. Johnson <johnsonm@redhat.com>
  449. - added ncurses-intro.hmtl and hackguide.html to -devel package [bug #3929]
  450. * Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
  451. - make sure ALL binaries are stripped (incl. test binaries)
  452. * Thu Mar 25 1999 Preston Brown <pbrown@redhat.com>
  453. - made xterm terminfo stuff MUCH better.
  454. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  455. - auto rebuild in the new build environment (release 16)
  456. * Sat Mar 13 1999 Cristian Gafton <gafton@redhat.com>
  457. - fixed header for C++ compiles
  458. * Fri Mar 12 1999 Jeff Johnson <jbj@redhat.com>
  459. - add terminfo entries for linux/linux-m on sparc (obsolete termfile_sparc).
  460. * Thu Feb 18 1999 Cristian Gafton <gafton@redhat.com>
  461. - updated patchset from original site
  462. * Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
  463. - don't build the C++ demo code
  464. - update patch set to the current as of today (redid all the individual
  465. patches in a single one)
  466. * Wed Oct 14 1998 Cristian Gafton <gafton@redhat.com>
  467. - make sure to strip the binaries
  468. * Wed Sep 23 1998 Cristian Gafton <gafton@redhat.com>
  469. - added another zillion of patches. The spec file *is* ugly
  470. - defattr
  471. * Mon Jul 20 1998 Cristian Gafton <gafton@redhat.com>
  472. - added lots of patches. This spec file is starting to look ugly
  473. * Wed Jul 01 1998 Alan Cox <alan@redhat.com>
  474. - Fix setuid trusting. Open termcap/info files as the real user.
  475. * Wed May 06 1998 Cristian Gafton <gafton@redhat.com>
  476. - added terminfo entry for the poor guys using lat1 and/or lat-2 on their
  477. consoles... Enjoy linux-lat ! Thanks, Erik !
  478. * Tue Apr 21 1998 Cristian Gafton <gafton@redhat.com>
  479. - new patch to get xterm-color and nxterm terminfo entries
  480. - aliased them to rxvt, as that seems to satisfy everybody
  481. * Sun Apr 12 1998 Cristian Gafton <gafton@redhat.com>
  482. - added %clean section
  483. * Tue Apr 07 1998 Cristian Gafton <gafton@redhat.com>
  484. - removed /usr/lib/terminfo symlink - we shouldn't need that
  485. * Mon Apr 06 1998 Cristian Gafton <gafton@redhat.com>
  486. - updated to 4.2 + patches
  487. - added BuildRoot
  488. * Sat Apr 04 1998 Cristian Gafton <gafton@redhat.com>
  489. - rebuilt with egcs on alpha
  490. * Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
  491. - version 7 didn't rebuild properly on the Alpha somehow -- no real changes
  492. are in this version
  493. * Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
  494. - TIOCGWINSZ wasn't used properly
  495. * Tue Jul 08 1997 Erik Troan <ewt@redhat.com>
  496. - built against glibc, linked shared libs against -lc