2015-11-08 07:31:46 +00:00
|
|
|
# Build script for ncurses
|
|
|
|
|
|
|
|
do_ncurses_get() { :; }
|
|
|
|
do_ncurses_extract() { :; }
|
|
|
|
do_ncurses_for_build() { :; }
|
|
|
|
do_ncurses_for_host() { :; }
|
|
|
|
do_ncurses_for_target() { :; }
|
|
|
|
|
|
|
|
if [ "${CT_NCURSES_TARGET}" = "y" -o "${CT_NCURSES}" = "y" ]; then
|
|
|
|
|
|
|
|
do_ncurses_get() {
|
|
|
|
CT_GetFile "ncurses-${CT_NCURSES_VERSION}" .tar.gz \
|
|
|
|
{http,ftp,https}://ftp.gnu.org/pub/gnu/ncurses \
|
|
|
|
ftp://invisible-island.net/ncurses
|
|
|
|
}
|
|
|
|
|
|
|
|
do_ncurses_extract() {
|
|
|
|
CT_Extract "ncurses-${CT_NCURSES_VERSION}"
|
|
|
|
CT_DoExecLog ALL chmod -R u+w "${CT_SRC_DIR}/ncurses-${CT_NCURSES_VERSION}"
|
|
|
|
CT_Patch "ncurses" "${CT_NCURSES_VERSION}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# We need tic that runs on the build when building ncurses for host/target
|
|
|
|
do_ncurses_for_build() {
|
|
|
|
local -a opts
|
2015-11-10 00:08:28 +00:00
|
|
|
|
2015-11-08 07:31:46 +00:00
|
|
|
CT_DoStep INFO "Installing ncurses for build"
|
|
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-ncurses-build-${CT_BUILD}"
|
|
|
|
opts=("--enable-symlinks" \
|
|
|
|
"--without-manpages" \
|
|
|
|
"--without-tests" \
|
|
|
|
"--without-cxx" \
|
|
|
|
"--without-cxx-binding" \
|
|
|
|
"--without-ada")
|
|
|
|
do_ncurses_backend host="${CT_BUILD}" \
|
|
|
|
destdir="${CT_BUILDTOOLS_PREFIX_DIR}" \
|
2015-11-10 02:36:52 +00:00
|
|
|
cflags="${CT_CFLAGS_FOR_BUILD}" \
|
|
|
|
ldflags="${CT_LDFLAGS_FOR_BUILD}" \
|
2015-11-08 07:31:46 +00:00
|
|
|
"${opts[@]}"
|
|
|
|
CT_Popd
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
|
2015-11-10 00:08:28 +00:00
|
|
|
if [ "${CT_NCURSES}" = "y" ]; then
|
|
|
|
do_ncurses_for_host() {
|
|
|
|
local -a opts
|
|
|
|
|
|
|
|
# Unlike other companion libs, we skip host build if build==host
|
|
|
|
# (i.e. in simple cross or native): ncurses may not be needed for
|
|
|
|
# host, but we still need them on build to produce 'tic'.
|
|
|
|
case "${CT_TOOLCHAIN_TYPE}" in
|
|
|
|
native|cross) return 0;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
CT_DoStep INFO "Installing ncurses for host"
|
|
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-ncurses-host-${CT_HOST}"
|
|
|
|
opts=("--enable-symlinks" \
|
|
|
|
"--without-manpages" \
|
|
|
|
"--without-tests" \
|
|
|
|
"--without-cxx" \
|
|
|
|
"--without-cxx-binding" \
|
|
|
|
"--without-ada")
|
|
|
|
do_ncurses_backend host="${CT_HOST}" \
|
|
|
|
prefix="${CT_HOST_COMPLIBS_DIR}" \
|
2015-11-10 02:36:52 +00:00
|
|
|
cflags="${CT_CFLAGS_FOR_HOST}" \
|
|
|
|
ldflags="${CT_LDFLAGS_FOR_HOST}" \
|
2015-11-10 00:08:28 +00:00
|
|
|
"${opts[@]}"
|
|
|
|
CT_Popd
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
2015-11-08 07:31:46 +00:00
|
|
|
if [ "${CT_NCURSES_TARGET}" = "y" ]; then
|
|
|
|
do_ncurses_for_target() {
|
2016-09-10 00:35:53 +00:00
|
|
|
local prefix
|
|
|
|
|
2015-11-08 07:31:46 +00:00
|
|
|
CT_DoStep INFO "Installing ncurses for target"
|
|
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-ncurses-target-${CT_TARGET}"
|
|
|
|
opts=("--without-sysmouse")
|
|
|
|
[ "${CT_CC_LANG_CXX}" = "y" ] || opts+=("--without-cxx" "--without-cxx-binding")
|
|
|
|
[ "${CT_CC_LANG_ADA}" = "y" ] || opts+=("--without-ada")
|
2016-09-10 00:35:53 +00:00
|
|
|
case "${CT_TARGET}" in
|
|
|
|
*-*-mingw*)
|
|
|
|
prefix="/mingw"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
prefix="/usr"
|
|
|
|
;;
|
|
|
|
esac
|
2015-11-08 07:31:46 +00:00
|
|
|
do_ncurses_backend host="${CT_TARGET}" \
|
2016-09-10 00:35:53 +00:00
|
|
|
prefix="${prefix}" \
|
2015-11-08 07:31:46 +00:00
|
|
|
destdir="${CT_SYSROOT_DIR}" \
|
2016-12-09 21:51:44 +00:00
|
|
|
shared="${CT_SHARED_LIBS}" \
|
2015-11-08 07:31:46 +00:00
|
|
|
"${opts[@]}"
|
|
|
|
CT_Popd
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Build libncurses
|
|
|
|
# Parameter : description : type : default
|
|
|
|
# host : machine to run on : tuple : (none)
|
|
|
|
# prefix : prefix to install into : dir : (none)
|
|
|
|
# cflags : cflags to use : string : (empty)
|
|
|
|
# ldflags : ldflags to use : string : (empty)
|
2016-12-09 21:51:44 +00:00
|
|
|
# shared : build shared lib : bool : n
|
2015-11-08 07:31:46 +00:00
|
|
|
# --* : passed to configure : n/a : n/a
|
|
|
|
do_ncurses_backend() {
|
|
|
|
local -a ncurses_opts
|
|
|
|
local host
|
|
|
|
local prefix
|
|
|
|
local cflags
|
|
|
|
local ldflags
|
2016-12-09 21:51:44 +00:00
|
|
|
local shared
|
2015-11-08 07:31:46 +00:00
|
|
|
local arg
|
|
|
|
local for_target
|
|
|
|
|
|
|
|
for arg in "$@"; do
|
|
|
|
case "$arg" in
|
|
|
|
--*)
|
|
|
|
ncurses_opts+=("$arg")
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
eval "${arg// /\\ }"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2015-11-15 04:15:56 +00:00
|
|
|
if [ "${CT_NCURSES_NEW_ABI}" != "y" ]; then
|
|
|
|
ncurses_opts+=("--with-abi-version=5")
|
|
|
|
fi
|
|
|
|
|
2016-12-09 21:51:44 +00:00
|
|
|
case "${host}" in
|
2015-11-10 00:08:28 +00:00
|
|
|
*-*-mingw*)
|
|
|
|
# Needed to build for mingw, see
|
|
|
|
# http://lists.gnu.org/archive/html/info-gnu/2011-02/msg00020.html
|
|
|
|
ncurses_opts+=("--enable-term-driver")
|
|
|
|
ncurses_opts+=("--enable-sp-funcs")
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2016-12-09 21:51:44 +00:00
|
|
|
if [ "${shared}" = "y" ]; then
|
|
|
|
ncurses_opts+=("--with-shared")
|
|
|
|
fi
|
|
|
|
|
2015-11-08 07:31:46 +00:00
|
|
|
CT_DoLog EXTRA "Configuring ncurses"
|
|
|
|
CT_DoExecLog CFG \
|
2015-11-10 02:36:52 +00:00
|
|
|
CFLAGS="${cflags}" \
|
|
|
|
LDFLAGS="${ldflags}" \
|
2015-11-08 07:31:46 +00:00
|
|
|
"${CT_SRC_DIR}/ncurses-${CT_NCURSES_VERSION}/configure" \
|
|
|
|
--build=${CT_BUILD} \
|
|
|
|
--host=${host} \
|
|
|
|
--prefix="${prefix}" \
|
|
|
|
--with-install-prefix="${destdir}" \
|
2016-12-09 21:51:44 +00:00
|
|
|
--without-debug \
|
2015-11-08 07:31:46 +00:00
|
|
|
--enable-termcap \
|
|
|
|
"${ncurses_opts[@]}"
|
|
|
|
|
|
|
|
# FIXME: old ncurses build code was removing -static from progs/Makefile,
|
|
|
|
# claiming static linking does not work on MacOS. A knowledge base article
|
|
|
|
# (https://developer.apple.com/library/mac/qa/qa1118/_index.html) says that
|
|
|
|
# static linking works just fine, just do not use it for libc (or other
|
|
|
|
# libraries that make system calls). ncurses use -static only for linking
|
|
|
|
# the curses library, then switches back to -dynamic - so they should be fine.
|
|
|
|
# FIXME: for target, we only need tic (terminfo compiler). However, building
|
|
|
|
# it also builds ncurses anyway, and dedicated targets (install.includes and
|
|
|
|
# install.progs) do not do well with parallel make (-jX).
|
|
|
|
CT_DoLog EXTRA "Building ncurses"
|
2016-11-21 07:50:17 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS}
|
2015-11-08 07:31:46 +00:00
|
|
|
CT_DoLog EXTRA "Installing ncurses"
|
2016-11-21 07:50:17 +00:00
|
|
|
CT_DoExecLog ALL make install
|
2015-11-08 07:31:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fi
|