openbsd-ports/lang/expect/Makefile
brad a4f5caf4d8 - add a no_tk FLAVOR.
- remove separate config.guess.
--
The FLAVOR from: Chad Loder <cloder@acm.org>
2002-06-30 17:50:28 +00:00

47 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.36 2002/06/30 17:50:28 brad Exp $
COMMENT= "sophisticated scripter based on Tcl/Tk"
DISTNAME= expect-5.32.1
CATEGORIES= lang
MASTER_SITES= http://expect.nist.gov/old/
HOMEPAGE= http://expect.nist.gov/
LIB_DEPENDS+= tcl83.1::lang/tcl/8.3
MAINTAINER= Niklas Hallqvist <niklas@openbsd.org>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
FAKE_FLAGS= INSTALL_ROOT="${WRKINST}"
FLAVORS= no_tk
FLAVOR?=
SEPARATE_BUILD= concurrent
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
CONFIGURE_ARGS+=--with-tclconfig="${LOCALBASE}/lib/tcl8.3" \
--with-tclinclude="${LOCALBASE}/include/tcl8.3"
.if !${FLAVOR:L:Mno_tk}
LIB_DEPENDS+= tk83.1.3::x11/tk/8.3
CONFIGURE_ARGS+=--with-tkconfig="${LOCALBASE}/lib/tk8.3" \
--with-tkinclude="${LOCALBASE}/include/tk8.3"
.endif
WRKDIST= ${WRKDIR}/expect-5.32
# make sure configure is newer than Makefile.in, since we patch Makefile.in
# as well.
post-patch:
@touch ${WRKSRC}/configure
REGRESS_TARGET=test
.include <bsd.port.mk>