mirror of
https://github.com/yann64/haikuports.git
synced 2026-03-19 01:46:00 +01:00
ncurses6, bump to version 6.6 (#13660)
This commit is contained in:
@@ -17,17 +17,17 @@ HOMEPAGE="https://invisible-island.net/ncurses/"
|
||||
COPYRIGHT="2018-2023,2024 Thomas E. Dickey
|
||||
1998-2017,2018 Free Software Foundation, Inc."
|
||||
LICENSE="MIT"
|
||||
REVISION="3"
|
||||
REVISION="1"
|
||||
srcVersion=${portVersion//./_}
|
||||
SOURCE_URI="https://github.com/ThomasDickey/ncurses-snapshots/archive/refs/tags/v$srcVersion.tar.gz"
|
||||
CHECKSUM_SHA256="1600526b279b0acf42432fe31f6dfa3824a4da4262168bf8b3637660ff8c07c7"
|
||||
CHECKSUM_SHA256="5109f372b0e80f59603808947f6fc63c8fd4146768ebfa13982459946113effd"
|
||||
SOURCE_DIR="ncurses-snapshots-$srcVersion"
|
||||
PATCHES="ncurses-6.5.patchset"
|
||||
PATCHES="ncurses6-$portVersion.patchset"
|
||||
|
||||
ARCHITECTURES="all"
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
|
||||
libVersion="6.5.0"
|
||||
libVersion="6.6.0"
|
||||
libVersionCompat="$libVersion compat >= 6"
|
||||
portVersionCompat="$portVersion compat >= 6"
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
From b0750a0d9d3903b33e466220a7dc57f15bb890f7 Mon Sep 17 00:00:00 2001
|
||||
From: Ingo Weinhold <ingo_weinhold@gmx.de>
|
||||
Date: Mon, 8 Jul 2013 15:51:09 +0200
|
||||
Subject: progs/Makefile.in: make sure the right programs are installed
|
||||
|
||||
The Makefile installed the libtool wrapper scripts which are only meant
|
||||
to be used for the build.
|
||||
|
||||
diff --git a/progs/Makefile.in b/progs/Makefile.in
|
||||
index d818af4..6cc123f 100644
|
||||
--- a/progs/Makefile.in
|
||||
+++ b/progs/Makefile.in
|
||||
@@ -216,19 +216,19 @@ transform.h :
|
||||
echo "#endif /* __TRANSFORM_H */" >>$@
|
||||
|
||||
install.progs: $(AUTO_SRC) $(PROGS) $(DESTDIR)$(bindir)
|
||||
-@MAKE_TERMINFO@ $(LIBTOOL_INSTALL) $(INSTALL_PROG) tic$x $(DESTDIR)$(bindir)/$(actual_tic)
|
||||
-@MAKE_TERMINFO@ $(LIBTOOL_INSTALL) $(INSTALL_PROG) toe$x $(DESTDIR)$(bindir)/$(actual_toe)
|
||||
+@MAKE_TERMINFO@ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/tic$x $(DESTDIR)$(bindir)/$(actual_tic)
|
||||
+@MAKE_TERMINFO@ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/toe$x $(DESTDIR)$(bindir)/$(actual_toe)
|
||||
@MAKE_TERMINFO@ @echo "linking $(actual_infotocap) to $(actual_tic)"
|
||||
@MAKE_TERMINFO@ -@rm -f $(DESTDIR)$(bindir)/$(actual_infotocap)
|
||||
@MAKE_TERMINFO@ ( cd $(DESTDIR)$(bindir) && $(LN_S) $(actual_tic) $(actual_infotocap) )
|
||||
@MAKE_TERMINFO@ @echo "linking $(actual_captoinfo) to $(actual_tic)"
|
||||
@MAKE_TERMINFO@ -@rm -f $(DESTDIR)$(bindir)/$(actual_captoinfo)
|
||||
@MAKE_TERMINFO@ ( cd $(DESTDIR)$(bindir) && $(LN_S) $(actual_tic) $(actual_captoinfo) )
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) infocmp$x $(DESTDIR)$(bindir)/$(actual_infocmp)
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) clear$x $(DESTDIR)$(bindir)/$(actual_clear)
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) tabs$x $(DESTDIR)$(bindir)/$(actual_tabs)
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) tput$x $(DESTDIR)$(bindir)/$(actual_tput)
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) tset$x $(DESTDIR)$(bindir)/$(actual_tset)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/infocmp$x $(DESTDIR)$(bindir)/$(actual_infocmp)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/clear$x $(DESTDIR)$(bindir)/$(actual_clear)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/tabs$x $(DESTDIR)$(bindir)/$(actual_tabs)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/tput$x $(DESTDIR)$(bindir)/$(actual_tput)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/tset$x $(DESTDIR)$(bindir)/$(actual_tset)
|
||||
@echo "linking $(actual_reset) to $(actual_tset)"
|
||||
-@rm -f $(DESTDIR)$(bindir)/$(actual_reset)
|
||||
( cd $(DESTDIR)$(bindir) && $(LN_S) $(actual_tset) $(actual_reset) )
|
||||
--
|
||||
2.30.2
|
||||
|
||||
42
sys-libs/ncurses/patches/ncurses6-6.6.patchset
Normal file
42
sys-libs/ncurses/patches/ncurses6-6.6.patchset
Normal file
@@ -0,0 +1,42 @@
|
||||
From 08a90dbd2536373c74d561febc3f3530376d0361 Mon Sep 17 00:00:00 2001
|
||||
From: Ingo Weinhold <ingo_weinhold@gmx.de>
|
||||
Date: Mon, 8 Jul 2013 15:51:09 +0200
|
||||
Subject: progs/Makefile.in: make sure the right programs are installed
|
||||
|
||||
The Makefile installed the libtool wrapper scripts which are only meant
|
||||
to be used for the build.
|
||||
|
||||
diff --git a/progs/Makefile.in b/progs/Makefile.in
|
||||
index 0e1fc01..7456792 100644
|
||||
--- a/progs/Makefile.in
|
||||
+++ b/progs/Makefile.in
|
||||
@@ -232,19 +232,19 @@ transform.h :
|
||||
echo "#endif /* __TRANSFORM_H */" >>$@
|
||||
|
||||
install.progs: $(AUTO_SRC) $(PROGS) $(BINDIR)
|
||||
-@MAKE_TERMINFO@ $(LIBTOOL_INSTALL) $(INSTALL_PROG) tic$x $(BINDIR)/$(actual_tic)
|
||||
-@MAKE_TERMINFO@ $(LIBTOOL_INSTALL) $(INSTALL_PROG) toe$x $(BINDIR)/$(actual_toe)
|
||||
+@MAKE_TERMINFO@ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/tic$x $(BINDIR)/$(actual_tic)
|
||||
+@MAKE_TERMINFO@ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/toe$x $(BINDIR)/$(actual_toe)
|
||||
@MAKE_TERMINFO@ @echo "linking $(actual_infotocap) to $(actual_tic)"
|
||||
@MAKE_TERMINFO@ -@rm -f $(BINDIR)/$(actual_infotocap)
|
||||
@MAKE_TERMINFO@ ( cd $(BINDIR) && $(LN_S) $(actual_tic) $(actual_infotocap) )
|
||||
@MAKE_TERMINFO@ @echo "linking $(actual_captoinfo) to $(actual_tic)"
|
||||
@MAKE_TERMINFO@ -@rm -f $(BINDIR)/$(actual_captoinfo)
|
||||
@MAKE_TERMINFO@ ( cd $(BINDIR) && $(LN_S) $(actual_tic) $(actual_captoinfo) )
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) infocmp$x $(BINDIR)/$(actual_infocmp)
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) clear$x $(BINDIR)/$(actual_clear)
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) tabs$x $(BINDIR)/$(actual_tabs)
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) tput$x $(BINDIR)/$(actual_tput)
|
||||
- $(LIBTOOL_INSTALL) $(INSTALL_PROG) tset$x $(BINDIR)/$(actual_tset)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/infocmp$x $(BINDIR)/$(actual_infocmp)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/clear$x $(BINDIR)/$(actual_clear)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/tabs$x $(BINDIR)/$(actual_tabs)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/tput$x $(BINDIR)/$(actual_tput)
|
||||
+ $(LIBTOOL_INSTALL) $(INSTALL_PROG) .libs/tset$x $(BINDIR)/$(actual_tset)
|
||||
@echo "linking $(actual_reset) to $(actual_tset)"
|
||||
-@rm -f $(BINDIR)/$(actual_reset)
|
||||
( cd $(BINDIR) && $(LN_S) $(actual_tset) $(actual_reset) )
|
||||
--
|
||||
2.52.0
|
||||
|
||||
Reference in New Issue
Block a user