d475393e05
from Alexandre Anriot <aanriot at atlantilde.com>
44 lines
932 B
Makefile
44 lines
932 B
Makefile
# $OpenBSD: Makefile,v 1.45 2005/06/12 12:04:00 sturm Exp $
|
|
|
|
COMMENT= "sophisticated scripter based on Tcl/Tk"
|
|
|
|
DISTNAME= expect-5.43.0
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://expect.nist.gov/old/
|
|
|
|
HOMEPAGE= http://expect.nist.gov/
|
|
|
|
# PD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c util m
|
|
|
|
LIB_DEPENDS+= tcl84:tcl-8.4.*: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}
|
|
USE_X11= Yes
|
|
LIB_DEPENDS+= tk84:tk-8.4.*:x11/tk/8.4
|
|
CONFIGURE_ARGS+=--with-tkconfig="${LOCALBASE}/lib/tk8.4" \
|
|
--with-tkinclude="${LOCALBASE}/include/tk8.4"
|
|
WANTLIB+= X11
|
|
.endif
|
|
|
|
REGRESS_TARGET= test
|
|
|
|
DESTDIRNAME= INSTALL_ROOT
|
|
|
|
WRKDIST= ${WRKDIR}/expect-5.43
|
|
|
|
.include <bsd.port.mk>
|