ncursesw-morphos/package/ncurses.spec

162 lines
4.0 KiB
RPMSpec
Raw Normal View History

Summary: shared libraries for terminal handling
Name: ncurses6
Version: 6.1
Release: 20181110
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}
ncurses 5.9 - patch 20150502 + modify the configure script to allow different default values for ABI 5 versus ABI 6. + add wgetch-events to test-packages. + add a note on how to build ncurses-examples to test/README. + fix a memory leak in delscreen (report by Daniel Kahn Gillmor, Debian #783486) -TD + remove unnecessary ';' from E3 capabilities -TD + add tmux entry, derived from screen (patch by Nicholas Marriott). + split-out recent change to nsterm-bce as nsterm-build326, and add nsterm-build342 to reflect changes with successive releases of OSX (discussion with Leonardo B Schenkel) + add xon, ich1, il1 to ibm3161 (patch by Stephen Powell, Debian #783806) + add sample "magic" file, to document ext-putwin. + modify gen-pkgconfig.in to add explicit -ltinfo, etc., to the generated ".pc" file when ld option "--as-needed" is used, or when ncurses and tinfo are installed without using rpath (prompted by discussion with Sylvain Bertrand). + modify test-package for ncurses6 to omit rpath feature when installed in /usr. + add OSX's "*.dSYM" to clean-rules in makefiles. + make extra-suffix work for OSX configuration, e.g., for shared libraries. + modify Ada95/configure script to work with pkg-config + move test-package for ncurses6 to /usr, since filename-conflicts have been eliminated. + corrected build rules for Ada95/gen/generate; it does not depend on the ncurses library aside from headers. + reviewed man pages, fixed a few other spelling errors. + fix a typo in curs_util.3x (Sven Joachim). + use extra-suffix in some overlooked shared library dependencies found by 20150425 changes for test-packages. + update config.guess, config.sub from http://git.savannah.gnu.org/cgit/config.git
2015-05-03 09:06:46 +08:00
# 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
%global is_mandriva %(test -f /etc/mandriva-release && echo 1 || echo 0)
%global is_redhat %(test -f /etc/redhat-release && echo 1 || echo 0)
%global is_suse %(test -f /etc/SuSE-release && echo 1 || echo 0)
# nor are debug-symbols
%define debug_package %{nil}
%if %{is_mandriva}
%define _disable_ld_as_needed 1
%define _disable_ld_no_undefined 1
# libtool is not used here...
%define _disable_libtoolize 1
%define _disable_ld_build_id 1
%endif
%if %{is_redhat}
# workaround for toolset breakage in Fedora 28
%define _test_relink --enable-relink
%else
%define _test_relink --disable-relink
%endif
%setup -q -n ncurses-%{version}-%{release}
%build
%define CFG_OPTS \\\
--target %{_target_platform} \\\
--prefix=%{_prefix} \\\
--bindir=%{_bindir} \\\
--includedir=%{_includedir} \\\
--libdir=%{_libdir} \\\
--includedir='${prefix}/include' \\\
--disable-echo \\\
--disable-getcap \\\
--disable-leaks \\\
--disable-macros \\\
--disable-overwrite \\\
%{_test_relink} \\\
--disable-termcap \\\
--enable-hard-tabs \\\
--enable-opaque-curses \\\
--enable-opaque-form \\\
--enable-opaque-menu \\\
--enable-opaque-panel \\\
--enable-pc-files \\\
--enable-rpath \\\
--enable-warnings \\\
--enable-wgetch-events \\\
--enable-widec \\\
--enable-xmc-glitch \\\
--program-suffix=%{MY_ABI} \\\
--verbose \\\
--with-abi-version=%{MY_ABI} \\\
--with-config-suffix=dev \\\
--with-cxx-shared \\\
--with-default-terminfo-dir=%{MYDATA} \\\
--with-develop \\\
--with-extra-suffix=%{MY_ABI} \\\
--with-install-prefix=$RPM_BUILD_ROOT \\\
--with-pkg-config-libdir=%{MY_PKG} \\\
--with-shared \\\
--with-terminfo-dirs=%{MYDATA}:/usr/share/terminfo \\\
--with-termlib \\\
--with-ticlib \\\
--with-trace \\\
--with-versioned-syms \\\
--with-xterm-kbs=DEL \\\
--without-ada \\\
--without-debug \\\
--without-normal
CFLAGS="%{CC_NORMAL}" \
RPATH_LIST=../lib:%{_libdir} \
%configure %{CFG_OPTS}
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
* Sat Aug 25 2018 Thomas E. Dickey
- split spec-file into ncurses6 and ncursest6 to work around toolset breakage
in Fedora 28
* Sat Jun 02 2018 Thomas E. Dickey
- build-fix for Mageia
* Sat May 26 2018 Thomas E. Dickey
- use predefined configure-macro
- separate ncurses6/ncursest6 packages
* Sat Feb 10 2018 Thomas E. Dickey
- add ncursest6 package
- add several development features
* 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
ncurses 5.9 - patch 20150502 + modify the configure script to allow different default values for ABI 5 versus ABI 6. + add wgetch-events to test-packages. + add a note on how to build ncurses-examples to test/README. + fix a memory leak in delscreen (report by Daniel Kahn Gillmor, Debian #783486) -TD + remove unnecessary ';' from E3 capabilities -TD + add tmux entry, derived from screen (patch by Nicholas Marriott). + split-out recent change to nsterm-bce as nsterm-build326, and add nsterm-build342 to reflect changes with successive releases of OSX (discussion with Leonardo B Schenkel) + add xon, ich1, il1 to ibm3161 (patch by Stephen Powell, Debian #783806) + add sample "magic" file, to document ext-putwin. + modify gen-pkgconfig.in to add explicit -ltinfo, etc., to the generated ".pc" file when ld option "--as-needed" is used, or when ncurses and tinfo are installed without using rpath (prompted by discussion with Sylvain Bertrand). + modify test-package for ncurses6 to omit rpath feature when installed in /usr. + add OSX's "*.dSYM" to clean-rules in makefiles. + make extra-suffix work for OSX configuration, e.g., for shared libraries. + modify Ada95/configure script to work with pkg-config + move test-package for ncurses6 to /usr, since filename-conflicts have been eliminated. + corrected build rules for Ada95/gen/generate; it does not depend on the ncurses library aside from headers. + reviewed man pages, fixed a few other spelling errors. + fix a typo in curs_util.3x (Sven Joachim). + use extra-suffix in some overlooked shared library dependencies found by 20150425 changes for test-packages. + update config.guess, config.sub from http://git.savannah.gnu.org/cgit/config.git
2015-05-03 09:06:46 +08:00
* 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.