7cbb817b01
* Removed beta designation. * Daniel A. Steffen <steffen@ics.mq.edu.au> provided patch for MacOS to avoid panic-redefinition. Changes 5.41.0: * Simon Taylor <simon@unisolve.com.xau> provided fix for interact -o which was completely broken by 5.40.1. Changes 5.40.1: * Added scroll support to official tkterm. Copied all fixes from/to term_expect to/from tkterm. * Kiran Madabhushi <maskiran@hotmail.xcom> encountered interact diagnostics incorrectly pointing to expect_background. Also, found multiple -o flags behaving unexpectedly. Added diag. * Kristoffer Eriksson <ske@pkmab.xse> noted typo in SIMPLE code in exp_inter.c. However, this is extremely unlikely to affect any machines. * Reinhard Max <max@suse.xcom> noted that "make test" failed when run in the background. The log testcase was testing the send_tty command. Added code in both Expect and in the test to handle this.
25 lines
761 B
Makefile
25 lines
761 B
Makefile
# $NetBSD: Makefile,v 1.17 2004/11/18 16:47:59 adam Exp $
|
|
|
|
.include "../../lang/tcl-expect/Makefile.common"
|
|
|
|
PKGNAME= tk-expect-${EXPECT_VERSION}
|
|
CATEGORIES= lang
|
|
|
|
MAINTAINER= jwise@NetBSD.org
|
|
COMMENT= Tcl interpreter with both the expect and tk extensions built in
|
|
|
|
DEPENDS+= tcl-expect>=${EXPECT_VERSION}:../../lang/tcl-expect
|
|
|
|
CONFIGURE_ARGS= --enable-shared \
|
|
--with-tclconfig=${PREFIX}/lib \
|
|
--with-tkconfig=${PREFIX}/lib \
|
|
--with-tclinclude=${PREFIX}/include/tcl \
|
|
--with-tkinclude=${PREFIX}/include/tk \
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/expectk ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/expectk.man ${PREFIX}/man/man1/expectk.1
|
|
|
|
.include "../../lang/tcl/buildlink3.mk"
|
|
.include "../../x11/tk/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|