From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] compat-ncurses: New package
Date: Sun, 23 Jun 2019 11:12:04 +0200 [thread overview]
Message-ID: <20190623091204.31715-1-stefan.schantl@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 3505 bytes --]
This package is used to keep compatibility for
binaries which are linked to the series 5 of
ncurses.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
compat-ncurses/compat-ncurses.nm | 106 +++++++++++++++++++++++++++++++
1 file changed, 106 insertions(+)
create mode 100644 compat-ncurses/compat-ncurses.nm
diff --git a/compat-ncurses/compat-ncurses.nm b/compat-ncurses/compat-ncurses.nm
new file mode 100644
index 000000000..677060fdf
--- /dev/null
+++ b/compat-ncurses/compat-ncurses.nm
@@ -0,0 +1,106 @@
+###############################################################################
+# IPFire.org - An Open Source Firewall Solution #
+# Copyright (C) - IPFire Development Team <info(a)ipfire.org> #
+###############################################################################
+
+name = compat-ncurses
+version = 5.9
+revision = 20150117
+release = 12.%{revision}
+thisapp = ncurses-%{version}-%{revision}
+
+groups = System/Base
+url = http://invisible-island.net/ncurses/ncurses.html
+license = MIT
+summary = Ncurses support utilities.
+
+description
+ The curses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization. The ncurses
+ (new curses) library is a freely distributable replacement for the
+ discontinued 4.4 BSD classic curses library.
+end
+
+source_dl = ftp://invisible-island.net/ncurses/current/
+sources = %{thisapp}.tgz
+
+build
+ requires
+ gcc-c++
+ end
+
+ configure_options += \
+ --with-shared \
+ --without-debug \
+ --without-ada \
+ --with-ospeed=unsigned \
+ --with-chtype=long \
+ --enable-hard-tabs \
+ --enable-xmc-glitch \
+ --enable-colorfgbg \
+ --with-terminfo-dirs=%{sysconfdir}/terminfo:%{datadir}/terminfo \
+ --enable-overwrite \
+ --enable-pc-files \
+ --with-termlib=tinfo
+
+ export PKG_CONFIG_LIBDIR=%{libdir}/pkgconfig
+
+ build
+ mkdir -pv narrowc widec
+
+ # Build narrowc version.
+ cd narrowc
+ ln -svf ../configure .
+ ./configure %{configure_options} --with-ticlib
+ make %{PARALLELISMFLAGS} libs
+ make %{PARALLELISMFLAGS} -C progs
+
+ # Build widec version.
+ cd ../widec
+ ln -svf ../configure .
+ ./configure %{configure_options} --enable-widec --without-progs
+ make %{PARALLELISMFLAGS} libs
+ cd ..
+ end
+
+ install
+ make -C narrowc DESTDIR=%{BUILDROOT} install.libs
+ rm -rvf %{BUILDROOT}%{libdir}/libtinfo.*
+ make -C widec DESTDIR=%{BUILDROOT} install.libs
+
+ chmod -v 755 %{BUILDROOT}%{libdir}/lib*.so.*.*
+
+ # don't require -ltinfo when linking with --no-add-needed
+ for l in %{BUILDROOT}%{libdir}/libncurses{,w}.so; do
+ soname=$(basename $(readlink $l))
+ rm -f $l
+ echo "INPUT($soname -ltinfo)" > $l
+ done
+
+ rm -f %{BUILDROOT}%{libdir}/libcurses{,w}.so
+ echo "INPUT(-lncurses)" > %{BUILDROOT}%{libdir}/libcurses.so
+ echo "INPUT(-lncursesw)" > %{BUILDROOT}%{libdir}/libcursesw.so
+ echo "INPUT(-ltinfo)" > %{BUILDROOT}%{libdir}/libtermcap.so
+
+ rm -vf %{BUILDROOT}%{libdir}/terminfo
+ rm -vf %{BUILDROOT}%{libdir}/pkgconfig/{*_g,ncurses++*}.pc
+ end
+end
+
+packages
+ package %{name}
+ template LIBS
+
+ provides
+ ncurses-libs = %{thisver}
+ end
+
+ obsoletes
+ ncurses-libs <= %{thisver}
+ end
+ end
+
+ package %{name}-debuginfo
+ template DEBUGINFO
+ end
+end
--
2.20.1
reply other threads:[~2019-06-23 9:12 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190623091204.31715-1-stefan.schantl@ipfire.org \
--to=stefan.schantl@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox