X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=package%2Fncurses.spec;h=d3e992e800178949720297bd0273459f5f4cc44c;hp=a4e3060cd39e2cb9bedc599233db2094fb9dc5a4;hb=0819b56c3096ed77dd36312b0c4e8f37e7d46c88;hpb=555811d68fc57f29fcf3d803adfbf7070b6a70e7 diff --git a/package/ncurses.spec b/package/ncurses.spec index a4e3060c..d3e992e8 100644 --- a/package/ncurses.spec +++ b/package/ncurses.spec @@ -1,28 +1,36 @@ Summary: shared libraries for terminal handling Name: ncurses6 -Release: 5.9 -Version: 20130218 +Version: 5.9 +Release: 20150418 License: X11 Group: Development/Libraries -Source: ncurses-%{release}-%{version}.tgz +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 -%define _prefix /usr/local/ncurses6 +%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 6. +This package is used for testing ABI %{MY_ABI}. %prep %define debug_package %{nil} -%setup -q -n ncurses-%{release}-%{version} +%setup -q -n ncurses-%{version}-%{release} %build CFLAGS="%{CC_NORMAL}" \ @@ -45,16 +53,23 @@ RPATH_LIST=../lib:%{_prefix}/lib \ --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 \ @@ -67,7 +82,7 @@ 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 ) +( cd test && make ncurses LOCAL_LIBDIR=%{_libdir} && mv ncurses $RPM_BUILD_ROOT/%{_bindir}/ncurses%{MY_ABI} ) %clean rm -rf $RPM_BUILD_ROOT @@ -77,11 +92,17 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %{_includedir}/* %{_libdir}/* -#%{_datadir}/* +%{MY_PKG}/*.pc %changelog -* Sat Oct 26 2012 Thomas E. Dickey +* 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