mirror of
https://github.com/Aigor44/ncursesw-morphos.git
synced 2024-12-27 07:49:06 +08:00
ee1bcda2cb
+ expanded description of tgetstr's area pointer in manual page (report by Todd M Lewis). + in-progress changes to modify test-packages to use ncursesw6 rather than ncursesw, with updated configure scripts. + modify CF_NCURSES_CONFIG in Ada95- and test-configure scripts to check for ".pc" files via pkg-config, but add a linkage check since frequently pkg-config configurations are broken. + modify misc/gen-pkgconfig.in to include EXTRA_LDFLAGS, e.g., for the rpath option. + add 'dim' capability to screen entry (report by Leonardo B Schenkel) + add several key definitions to nsterm-bce to match preconfigured keys, e.g., with OSX 10.9 and 10.10 (report by Leonardo B Schenkel) + fix repeated "extra-suffix" in ncurses-config.in (cf: 20150418). + improve term_variables manual page, adding section on the terminfo long-name symbols which are defined in the term.h header. + fix bug in lib_tracebits.c introduced in const-fixes (cf: 20150404).
110 lines
2.5 KiB
RPMSpec
110 lines
2.5 KiB
RPMSpec
Summary: shared libraries for terminal handling
|
|
Name: ncurses6
|
|
Version: 5.9
|
|
Release: 20150425
|
|
License: X11
|
|
Group: Development/Libraries
|
|
Source: ncurses-%{version}-%{release}.tgz
|
|
# URL: http://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}
|
|
|
|
# redefine...
|
|
%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 \
|
|
--disable-echo \
|
|
--disable-getcap \
|
|
--disable-leaks \
|
|
--disable-macros \
|
|
--disable-overwrite \
|
|
--disable-termcap \
|
|
--enable-const \
|
|
--enable-ext-colors \
|
|
--enable-ext-mouse \
|
|
--enable-hard-tabs \
|
|
--enable-interop \
|
|
--enable-pc-files \
|
|
--enable-rpath \
|
|
--enable-sp-funcs \
|
|
--enable-warnings \
|
|
--enable-widec \
|
|
--verbose \
|
|
--with-chtype=uint32_t \
|
|
--with-mmask_t=uint32_t \
|
|
--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}/*
|
|
%{MY_PKG}/*.pc
|
|
|
|
%changelog
|
|
|
|
* 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.
|