fcabbb1f35
Bug fixes Fixed an s3270 issue where error messages from the Wait() action implicitly run after connecting to a host specified on the command line or in a session file, are displayed on standard output. (Standard output should contain only results from actions received on standard input.) Fixed a crash in the HTTP server. Fixed automatic dependency generation. Fixed an issue where x3270 would draw certain characters in NVT mode, such as - and \, incorrectly unless the 14-point 3270 font was used. Fixed an issue where the bottom of the screen buffer might become corrupted when using oversize or resizing the screen. 4.1ga13: Known issues The emulators may crash or hang when the oia option is used with the PrintText() action. Bug fixes When input from the String() action overflows a field, the cursor now lands in the correct location. When a host has multiple addresses, the emulators (except pr3287) will now reliably try up to four of them. Errors from the OpenSSL library are now displayed correctly. When a connection fails to a TLS-tunnel host (one specified with the L: prefix), the correct error message is now displayed. Fixed a c3270 crash when a connection is opened from a remote source (HTTP server or script port) while at the c3270> prompt. Fixed a c3270 crash when the -secure and -trace command-line options are used together. A key typed into a full field in insert mode no longer overwrites the character under the cursor.
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.48 2022/04/03 16:14:03 rhialto Exp $
|
|
|
|
DISTNAME= suite3270-4.1ga13-src
|
|
PKGNAME= x3270-4.1ga13
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=x3270/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= rhialto@NetBSD.org
|
|
HOMEPAGE= http://x3270.bgp.nu/
|
|
COMMENT= 3270 Terminal emulators (X11 and/or curses)
|
|
LICENSE= modified-bsd
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/suite3270-4.1
|
|
USE_TOOLS+= bdftopcf gmake
|
|
|
|
FONTS_DIRS.x11+= ${PREFIX}/share/fonts/X11/misc
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR}
|
|
CONFIGURE_ARGS+= --enable-b3270
|
|
CONFIGURE_ARGS+= --enable-pr3287
|
|
CONFIGURE_ARGS+= --enable-s3270
|
|
|
|
INSTALL_TARGET= install install.man
|
|
|
|
PKG_SYSCONFSUBDIR= x3270
|
|
|
|
EGDIR= ${PREFIX}/share/examples/x3270
|
|
CONF_FILES= ${EGDIR}/ibm_hosts ${PKG_SYSCONFDIR}/ibm_hosts
|
|
INSTALLATION_DIRS+= ${EGDIR}
|
|
|
|
SUBST_CLASSES+= share
|
|
SUBST_STAGE.share= pre-configure
|
|
SUBST_MESSAGE.share= Fixing /usr/share
|
|
SUBST_FILES.share= x3270/Makefile.obj.in
|
|
SUBST_SED.share+= -e 's;/usr/share;${PREFIX}/share;'
|
|
|
|
post-install:
|
|
${MV} ${DESTDIR}${PKG_SYSCONFDIR}/ibm_hosts ${DESTDIR}/${EGDIR}
|
|
if [ "${PLIST.tcl}" = "yes" ]; then \
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tcl3270/Examples/* ${DESTDIR}${EGDIR}; \
|
|
fi
|
|
|
|
.include "options.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../textproc/expat/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|