blob: 214ddd3269d285ab32f4080fd837de06d463e013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile,v 1.14 1998/07/15 11:46:32 agc Exp $
# FreeBSD Id: Makefile,v 1.29 1998/01/27 01:11:47 fenner Exp
#
DISTNAME= expect
PKGNAME= expect-5.25
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_BACKUP}
MAINTAINER= packages@netbsd.org
DEPENDS+= tk-8.0p2:../../x11/tk80
WRKSRC= ${WRKDIR}/expect-5.25
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared \
--with-tclconfig=${PREFIX}/lib/tcl8.0 \
--with-tclinclude=${PREFIX}/include/tcl8.0 \
--with-tkconfig=${PREFIX}/lib/tk8.0 \
--with-tkinclude=${PREFIX}/include/tk8.0
post-extract:
${MV} ${WRKSRC}/example/rftp ${WRKSRC}/example/expect-rftp
test:
@(cd ${WRKSRC}; make test)
.include "../../mk/bsd.pkg.mk"
|