2007-06-28 22:14:25 +00:00
|
|
|
{stdenv, fetchurl, unicode ? true}:
|
2004-03-05 10:13:23 +00:00
|
|
|
|
2011-01-17 09:16:30 +00:00
|
|
|
let
|
|
|
|
/* C++ bindings fail to build on `i386-pc-solaris2.11' with GCC 3.4.3:
|
|
|
|
<http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6395191>.
|
|
|
|
It seems that it could be worked around by #including <wchar.h> in the
|
|
|
|
right place, according to
|
|
|
|
<http://mail.python.org/pipermail/python-bugs-list/2006-September/035362.html>,
|
|
|
|
but this is left as an exercise to the reader.
|
|
|
|
So disable them for now. */
|
2011-11-21 14:11:04 +00:00
|
|
|
cxx = stdenv.system != "i686-solaris";
|
2011-01-17 09:16:30 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation (rec {
|
2011-10-02 20:35:44 +00:00
|
|
|
name = "ncurses-5.9";
|
2011-01-17 09:16:30 +00:00
|
|
|
|
2004-03-05 10:13:23 +00:00
|
|
|
src = fetchurl {
|
2008-11-04 09:03:05 +00:00
|
|
|
url = "mirror://gnu/ncurses/${name}.tar.gz";
|
2011-10-02 20:35:44 +00:00
|
|
|
sha256 = "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh";
|
2004-03-05 10:13:23 +00:00
|
|
|
};
|
2010-10-12 19:39:30 +00:00
|
|
|
|
2009-01-19 11:01:20 +00:00
|
|
|
configureFlags = ''
|
|
|
|
--with-shared --includedir=''${out}/include --without-debug
|
2011-01-17 09:16:30 +00:00
|
|
|
${if unicode then "--enable-widec" else ""}${if cxx then "" else "--without-cxx-binding"}
|
2009-01-19 11:01:20 +00:00
|
|
|
'';
|
2009-11-20 16:38:01 +00:00
|
|
|
|
2009-11-22 22:48:43 +00:00
|
|
|
selfBuildNativeInput = true;
|
2010-07-20 13:14:03 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-04-23 15:47:37 +00:00
|
|
|
preBuild =
|
|
|
|
# On Darwin, we end up using the native `sed' during bootstrap, and it
|
|
|
|
# fails to run this command, which isn't needed anyway.
|
|
|
|
stdenv.lib.optionalString (!stdenv.isDarwin)
|
|
|
|
''sed -e "s@\([[:space:]]\)sh @\1''${SHELL} @" -i */Makefile Makefile'';
|
2008-08-25 15:29:04 +00:00
|
|
|
|
|
|
|
# When building a wide-character (Unicode) build, create backward
|
|
|
|
# compatibility links from the the "normal" libraries to the
|
|
|
|
# wide-character libraries (e.g. libncurses.so to libncursesw.so).
|
2009-01-19 11:01:20 +00:00
|
|
|
postInstall = if unicode then ''
|
2011-01-20 23:32:09 +00:00
|
|
|
${if cxx then "chmod 644 $out/lib/libncurses++w.a" else ""}
|
2007-06-26 11:34:05 +00:00
|
|
|
for lib in curses ncurses form panel menu; do
|
2009-01-19 11:01:20 +00:00
|
|
|
if test -e $out/lib/lib''${lib}w.a; then
|
2010-01-17 22:08:22 +00:00
|
|
|
rm -f $out/lib/lib$lib.so
|
2009-01-19 11:01:20 +00:00
|
|
|
echo "INPUT(-l''${lib}w)" > $out/lib/lib$lib.so
|
|
|
|
ln -svf lib''${lib}w.a $out/lib/lib$lib.a
|
|
|
|
ln -svf lib''${lib}w.so.5 $out/lib/lib$lib.so.5
|
2008-08-25 15:29:04 +00:00
|
|
|
fi
|
2007-06-26 11:34:05 +00:00
|
|
|
done;
|
2009-01-19 11:01:20 +00:00
|
|
|
'' else "";
|
2008-11-04 09:03:05 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU Ncurses, a free software emulation of curses in SVR4 and more";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
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 characters and function-key mapping, and has all the other
|
|
|
|
SYSV-curses enhancements over BSD Curses.
|
|
|
|
|
|
|
|
The ncurses code was developed under GNU/Linux. It has been in
|
|
|
|
use for some time with OpenBSD as the system curses library, and
|
|
|
|
on FreeBSD and NetBSD as an external package. It should port
|
|
|
|
easily to any ANSI/POSIX-conforming UNIX. It has even been
|
|
|
|
ported to OS/2 Warp!
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/ncurses/;
|
|
|
|
|
|
|
|
license = "X11";
|
2011-01-17 09:16:30 +00:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-11-04 09:03:05 +00:00
|
|
|
};
|
2010-03-16 10:52:12 +00:00
|
|
|
} // ( if stdenv.isDarwin then { postFixup = "rm $out/lib/*.so"; } else { } ) )
|