Hello, It seems that libncurses5-dev is added as build dependency at latest version (1.5-1) of nettoe. Due to that, libncurses5-dev and libtinfo-dev were installed. On configuration, term.h and libtermcap.so were found and it is guessed that TERM environment variable is defined. That was not the case in previous version (1.4.2-1), so nettoe has been built successfully.
I have not figured out why TERM is defined on some build machines, and on others is not. However, it is possible to build nettoe without terminfo if TERM environment variable is not defined. A patch that contains these changes is attached. Could you consider applying this patch? Regards, Dejan
--- nettoe-1.5.orig/debian/rules 2013-11-29 16:26:18.000000000 +0000 +++ nettoe-1.5/debian/rules 2014-03-19 17:34:36.000000000 +0000 @@ -4,11 +4,16 @@ include /usr/share/dpkg/buildflags.mk +ifndef TERM +CONFIG_EXTRA=--without-terminfo +endif + %: dh $@ --with autoreconf override_dh_auto_configure: - ./configure --prefix=/usr \ + ./configure $(CONFIG_EXTRA) \ + --prefix=/usr \ --bindir=/usr/games \ --mandir=/usr/share/man \ --enable-desktop

