-if [ "$UTF8" == "y" ]
-then
+if [[ $UTF8 == y ]]; then
OPTS="$OPTS --enable-widec"
fi &&
OPTS="$OPTS --with-shared --libdir=${TRACK_ROOT}/lib" &&
@@ -14,5 +13,3 @@ make_single &&
--infodir=${TRACK_ROOT}/usr/share/info \
$OPTS &&
make DESTDIR=$INSTALL_ROOT
-
-
diff --git a/libs/ncurses/CONFLICTS b/libs/ncurses/CONFLICTS
index ad93e22..dbbc914 100755
--- a/libs/ncurses/CONFLICTS
+++ b/libs/ncurses/CONFLICTS
@@ -1,2 +1 @@
conflicts termcap y
-
diff --git a/libs/ncurses/DETAILS b/libs/ncurses/DETAILS
index 009b88e..b50b106 100755
--- a/libs/ncurses/DETAILS
+++ b/libs/ncurses/DETAILS
@@ -1,28 +1,27 @@
SPELL=ncurses
- VERSION=5.6
- PATCHLEVEL=1
+ VERSION=5.7
SOURCE=$SPELL-$VERSION.tar.gz
- SOURCE2=${SOURCE}.sig
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE2=$SOURCE.sig
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=$GNU_URL/$SPELL/$SOURCE
SOURCE_URL[1]=ftp://invisible-island.net/ncurses/$SOURCE
- SOURCE2_URL[0]=${SOURCE_URL[0]}.sig
+ SOURCE2_URL[0]=$SOURCE_URL.sig
+ SOURCE2_URL[1]=${SOURCE_URL[1]}.sig
SOURCE2_IGNORE=signature
- SOURCE_GPG="dickey.gpg:${SOURCE}.sig"
- WEB_SITE=http://www.gnu.org/software/ncurses/ncurses.html
+ SOURCE_GPG=dickey.gpg:$SOURCE.sig
+ WEB_SITE=http://www.gnu.org/software/ncurses/
ENTERED=20010922
LICENSE[0]=MIT
STAGED_INSTALL=off
KEYWORDS="libs"
- SHORT="Displays and updates text on text-only terminals"
+ SHORT="free software emulation of curses in System V Release 4.0"
cat << EOF
-ncurses - Displays and updates text on text-only terminals.
-The ncurses (new curses) library is a free software emulation of curses
-in System V Release 4.0 and more. It uses terminfo format, supports pads
-and color and multiple highlights and forms chracters and function-key
-mapping, and has all the other SYSV-curses enhancements over BSD curses.
-It should port easily to any ANSI/POSIX-conforming UNIX-like system.
-The distribution includes the library and support utilities, including a
-terminfo compiler tic, a decompiler infocmp, clear, tput, tset, and a
-termcap conversion tool captoinfo.
+ncurses - Displays and updates text on text-only terminals. The ncurses (new
+curses) library is a free software emulation of curses in System V Release
4.0
+and more. It uses terminfo format, supports pads and color and multiple
+highlights and forms chracters and function-key mapping, and has all the
other
+SYSV-curses enhancements over BSD curses. It should port easily to any
+ANSI/POSIX-conforming UNIX-like system. The distribution includes the library
+and support utilities, including a terminfo compiler tic, a decompiler
infocmp,
+clear, tput, tset, and a termcap conversion tool captoinfo.
EOF
diff --git a/libs/ncurses/HISTORY b/libs/ncurses/HISTORY
index 590a038..7fa9bbc 100644
--- a/libs/ncurses/HISTORY
+++ b/libs/ncurses/HISTORY
@@ -1,3 +1,10 @@
+2008-11-04 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 5.7; quoting paths; added 2nd url for sig;
+ fixed descs; cleaned up
+ * PRE_BUILD: removed patch-applying
+ * BUILD, INSTALL: added some more bashism
+ * ncurses-5.6-20080{621,628,705,712,713}.patch.gz: removed
+
2008-07-28 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* ncurses-5.6-20080621.patch.gz: replaces the sh script
* PRE_BUILD: removed the sh script use the patch directly
@@ -157,4 +164,3 @@
2002-04-04 Chris Brien <christopher_brien AT hotmail.com>
* BUILD: Added two lines to sedit out a typecast which causes
a compile error.
-
diff --git a/libs/ncurses/INSTALL b/libs/ncurses/INSTALL
index 993cb16..db90f0d 100755
--- a/libs/ncurses/INSTALL
+++ b/libs/ncurses/INSTALL
@@ -63,9 +63,7 @@ sedit 's/cd ncurses /# cd ncurses /' Makefile &&
# really install it -- all the libs should be in place
make install DESTDIR="$INSTALL_ROOT" &&