blob: 22a22a6487a05f08f6ee3c4f4227736b7e702032 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.12 2003/01/28 03:41:02 markd Exp $
#
.include "Makefile.common"
PKGNAME= tcl-expect-${EXPECT_VERSION}
CATEGORIES= lang
MAINTAINER= jwise@netbsd.org
COMMENT= extensions to Tcl to support scripting of interactive programs
DEPENDS+= tcl>=8.3.2:../../lang/tcl
CONFLICTS+= expect-[0-9]*
CONFIGURE_ARGS= --enable-shared \
--with-tclconfig=${PREFIX}/lib \
--with-tclinclude=${PREFIX}/include/tcl \
--without-x
.include "../../mk/bsd.pkg.mk"
|