ncursesw-morphos/package/ncurses.spec
Thomas E. Dickey 1501ae2a13 ncurses 6.0 - patch 20180121
> terminfo changes:
+ add xterm+noalt, xterm+titlestack, xterm+alt1049, xterm+alt+title
  blocks from xterm #331 -TD
+ add xterm+direct, xterm+indirect, xterm-direct entries from xterm
  #331 -TD
+ modify xterm+256color and xterm+256setaf to use correct number of
  color pairs, for ncurses 6.1 -TD
+ add rs1 capability to xterm-256color -TD
+ modify xterm-r5, xterm-r6 and xterm-xf86-v32 to use xterm+kbs to
  match xterm #272, reflecting packager's changes -TD
+ remove "boolean" Se, Ss from st-0.7 -TD
+ add konsole-direct and st-direct -TD
+ remove unsupported "Tc" capability from st-0.7; use st-direct if
  direct-colors are wanted -TD
+ add vte-direct -TD
+ add XT, hpa, indn, and vpa to screen, and invis, E3 to tmux (patch by
  Pierre Carru)
+ use xterm+sm+1006 in xterm-new, vte-2014 -TD
+ use xterm+x11mouse in iterm, iterm2, mlterm3 because xterm's 1006
  mode does not work with those programs.  konsole is debatable -TD
+ add "termite" entry (report by Markus Pfeiffer) -TD
> merge branch begun April 2, 2017 which provides these features:
+ support read/write new binary-format for terminfo which stores
  numeric capabilities as a signed 32-bit integer.  The test programs
  such as picsmap, ncurses were created or updated during 2017 to use
  this feature.
+ the new format is written by the wide-character configuration of
  tic when it finds a numeric capability larger than 32767.
+ other applications such as infocmp built with the wide-character
  ncurses library work as expected.
+ applications built with the "narrow" (8-bit) configuration will
  read the new format, but will limit those extended values to 32767.
+ in either wide/narrow configuration, the structure defined in
  term.h still uses signed 16-bit values.
+ because it is incompatible with the legacy (mid-1980s) binary format,
  a new magic value is provided for the "file" program.
+ the term.5 manual page is updated to describe this new format.
+ the limit on file-size for compiled terminfo is increased in the
  wide-character configuration to 32768.
2018-01-22 01:39:40 +00:00

115 lines
2.7 KiB
RPMSpec

Summary: shared libraries for terminal handling
Name: ncurses6
Version: 6.0
Release: 20180121
License: X11
Group: Development/Libraries
Source: ncurses-%{version}-%{release}.tgz
# URL: https://invisible-island.net/ncurses/
%define CC_NORMAL -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wconversion
%define CC_STRICT %{CC_NORMAL} -W -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wnested-externs -Wpointer-arith -Wwrite-strings -ansi -pedantic
%global MY_ABI 6
# save value before redefining
%global sys_libdir %{_libdir}
# was redefined...
#global _prefix /usr/local/ncurses#{MY_ABI}
%global MY_PKG %{sys_libdir}/pkgconfig
%define MYDATA /usr/local/ncurses/share/terminfo
%description
The ncurses library routines are a terminal-independent method of
updating character screens with reasonable optimization.
This package is used for testing ABI %{MY_ABI}.
%prep
%define debug_package %{nil}
%setup -q -n ncurses-%{version}-%{release}
%build
CFLAGS="%{CC_NORMAL}" \
RPATH_LIST=../lib:%{_prefix}/lib \
%configure \
--target %{_target_platform} \
--prefix=%{_prefix} \
--includedir='${prefix}/include' \
--with-default-terminfo-dir=%{MYDATA} \
--with-install-prefix=$RPM_BUILD_ROOT \
--with-terminfo-dirs=%{MYDATA}:/usr/share/terminfo \
--with-config-suffix=dev \
--disable-echo \
--disable-getcap \
--disable-leaks \
--disable-macros \
--disable-overwrite \
--disable-termcap \
--enable-hard-tabs \
--enable-pc-files \
--enable-rpath \
--enable-warnings \
--enable-wgetch-events \
--enable-widec \
--verbose \
--program-suffix=%{MY_ABI} \
--with-abi-version=%{MY_ABI} \
--with-develop \
--with-shared \
--with-termlib \
--with-ticlib \
--with-trace \
--with-cxx-shared \
--with-extra-suffix=%{MY_ABI} \
--with-pkg-config-libdir=%{MY_PKG} \
--with-versioned-syms \
--with-xterm-kbs=DEL \
--without-ada \
--without-debug \
--without-normal
make
%install
rm -rf $RPM_BUILD_ROOT
make install.libs install.progs
rm -f test/ncurses
( cd test && make ncurses LOCAL_LIBDIR=%{_libdir} && mv ncurses $RPM_BUILD_ROOT/%{_bindir}/ncurses%{MY_ABI} )
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_bindir}/*
%{_includedir}/*
%{_libdir}/*
%changelog
* Mon Jan 01 2018 Thomas E. Dickey
- drop redundant files pattern for "*.pc"
* Tue Dec 26 2017 Thomas E. Dickey
- add --with-config-suffix option
* Sun Apr 26 2015 Thomas E. Dickey
- move package to /usr
* Sun Apr 12 2015 Thomas E. Dickey
- factor-out MY_ABI
* Sat Mar 09 2013 Thomas E. Dickey
- add --with-cxx-shared option to demonstrate c++ binding as shared library
* Sat Oct 27 2012 Thomas E. Dickey
- add ncurses program as "ncurses6" to provide demonstration.
* Fri Jun 08 2012 Thomas E. Dickey
- initial version.