39504fde78
ok brad@ naddy@
48 lines
1.0 KiB
Makefile
48 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.41 2003/12/27 23:24:26 jose Exp $
|
|
|
|
COMMENT= "sophisticated scripter based on Tcl/Tk"
|
|
|
|
DISTNAME= expect-5.39.0
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://expect.nist.gov/old/
|
|
|
|
HOMEPAGE= http://expect.nist.gov/
|
|
|
|
MAINTAINER= Jolan Luff <jolan@openbsd.org>
|
|
|
|
# PD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
LIB_DEPENDS+= tcl84::lang/tcl/8.4
|
|
|
|
FLAVORS= no_tk
|
|
FLAVOR?=
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS+=${CONFIGURE_SHARED}
|
|
CONFIGURE_ARGS+=--with-tclconfig="${LOCALBASE}/lib/tcl8.4"\
|
|
--with-tclinclude="${LOCALBASE}/include/tcl8.4"
|
|
|
|
.if !${FLAVOR:L:Mno_tk}
|
|
LIB_DEPENDS+= tk84::x11/tk/8.4
|
|
CONFIGURE_ARGS+=--with-tkconfig="${LOCALBASE}/lib/tk8.4" \
|
|
--with-tkinclude="${LOCALBASE}/include/tk8.4"
|
|
.endif
|
|
|
|
REGRESS_TARGET= test
|
|
|
|
DESTDIRNAME= INSTALL_ROOT
|
|
|
|
WRKDIST=${WRKDIR}/expect-5.39
|
|
|
|
# make sure configure is newer than Makefile.in, since we patch Makefile.in
|
|
# as well.
|
|
post-patch:
|
|
@touch ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|