mirror of
https://github.com/Aigor44/ncursesw-morphos.git
synced 2025-01-06 14:44:25 +08:00
4ad721f3e6
+ add a step to generating ".map" files, to declare any remaining symbols beginning with "_" as local, at the last version node. + improve configure checks for pkg-config, addressing a variant found with FreeBSD ports. + modify win_driver.c to provide characters for special keys, like ansi.sys, when keypad mode is off, rather than returning nothing at all (discussion with Eli Zaretskii). + add "broken_linker" and "hashed-db" configure options to combinations use for generating the ".map" and ".sym" files. + avoid using "ld" directly when creating shared library, to simplify cross-compiles. Also drop "-Bsharable" option from shared-library rules for FreeBSD and DragonFly (FreeBSD #196592). + fix a memory leak in form library Free_RegularExpression_Type() (report by Pavel Balaev).
101 lines
2.4 KiB
RPMSpec
101 lines
2.4 KiB
RPMSpec
Summary: shared libraries for terminal handling
|
|
Name: ncurses6
|
|
Version: 5.9
|
|
Release: 20150110
|
|
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 _prefix /usr/local/ncurses6
|
|
%global MY_PKG /usr/lib64/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 6.
|
|
|
|
%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-pc-suffix=6 \
|
|
--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}/ncurses6 )
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/*
|
|
%{_includedir}/*
|
|
%{_libdir}/*
|
|
%{MY_PKG}/*.pc
|
|
#%{_datadir}/*
|
|
|
|
%changelog
|
|
|
|
* 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.
|