freebsd-ports/devel/tclreadline/Makefile
Ade Lovett 3f651573ad Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

	USE_LIBTOOL=YES		->	USE_LIBTOOL_VER=13
	USE_AUTOCONF=YES	->	USE_AUTOCONF_VER=213
	USE_AUTOMAKE=YES	->	USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
2004-03-14 06:17:56 +00:00

50 lines
1.1 KiB
Makefile

# New ports collection makefile for: tclreadline
# Date created: 21 September 1999
# Whom: darius@dons.net.au
#
# $FreeBSD$
#
PORTNAME= tclreadline
PORTVERSION= 2.1.0
CATEGORIES= devel tcl80 tcl82
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= tclreadline
MAINTAINER= darius@dons.net.au
COMMENT= GNU readline for TCL
USE_LIBTOOL_VER= 13
INSTALLS_SHLIB= yes
MANN= tclreadline.n
PLIST_SUB+= VERSION="${PORTVERSION}"
.include <bsd.port.pre.mk>
.if (!defined(WITH_TCL80) && !defined(WITH_TCL82))
.if exists(${PREFIX}/bin/tclsh8.0)
WITH_TCL80= yes
.else
WITH_TCL82= yes
.endif
.endif
.if defined(WITH_TCL80)
LIB_DEPENDS= tcl80.1:${PORTSDIR}/lang/tcl80
CONFIGURE_ARGS= --with-tcl=${PREFIX}/lib/tcl8.0 --with-tcl-includes=${PREFIX}/include/tcl8.0
TCLVERMSG= "Building for Tcl 8.0"
.endif
.if defined(WITH_TCL82)
LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82
CONFIGURE_ARGS= --with-tcl=${PREFIX}/lib/tcl8.2 --with-tcl-includes=${PREFIX}/include/tcl8.2
TCLVERMSG= "Building for Tcl 8.2"
.endif
pre-fetch:
@${ECHO} ${TCLVERMSG}
@${ECHO} "Define WITH_TCL80, or WITH_TCL82"
@${ECHO} "To compile against a different version of TCL"
.include <bsd.port.post.mk>