ncurses-vl.spec 19 KB

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