ncurses-vl.spec 20 KB

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