summaryrefslogtreecommitdiff
path: root/devel/tclreadline/Makefile
blob: 71f75023f632fda22e1102bbe1e988817c821e61 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# New ports collection makefile for:	tclreadline
# Date created:		21 September 1999
# Whom:			darius@dons.net.au
#
# $FreeBSD$
#

PORTNAME=	tclreadline
PORTVERSION=	2.1.0
PORTREVISION=	1
CATEGORIES=	devel tcl80 tcl82 tcl83 tcl84
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=	tclreadline

MAINTAINER=	ports@FreeBSD.org
COMMENT=	GNU readline for TCL

USE_AUTOTOOLS=	libtool:15
GNU_CONFIGURE=	yes
INSTALLS_SHLIB=	yes
MANN=		tclreadline.n

PLIST_SUB+=	VERSION="${PORTVERSION}"

.include <bsd.port.pre.mk>

# Try and guess what version of Tcl to build against
.if (!defined(WITH_TCL80) && !defined(WITH_TCL82) && !defined(WITH_TCL83) && !defined(WITH_TCL84))
.if exists(${LOCALBASE}/bin/tclsh8.4)
WITH_TCL84=	yes
.else
.if exists(${LOCALBASE}/bin/tclsh8.3)
WITH_TCL83=	yes
.else
.if exists(${LOCALBASE}/bin/tclsh8.2)
WITH_TCL82=	yes
.else
.if exists(${LOCALBASE}/bin/tclsh8.0)
WITH_TCL80=	yes
.else
WITH_TCL84=	yes
.endif
.endif
.endif
.endif
.endif

.if defined(WITH_TCL80)
LIB_DEPENDS=  tcl80.1:${PORTSDIR}/lang/tcl80
CONFIGURE_ARGS=       --with-tcl=${LOCALBASE}/lib/tcl8.0 --with-tcl-includes=${LOCALBASE}/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=${LOCALBASE}/lib/tcl8.2 --with-tcl-includes=${LOCALBASE}/include/tcl8.2
TCLVERMSG=    "Building for Tcl 8.2"
.endif

.if defined(WITH_TCL83)
LIB_DEPENDS=  tcl83.1:${PORTSDIR}/lang/tcl83
CONFIGURE_ARGS=       --with-tcl=${LOCALBASE}/lib/tcl8.3 --with-tcl-includes=${LOCALBASE}/include/tcl8.3
TCLVERMSG=    "Building for Tcl 8.3"
.endif

.if defined(WITH_TCL84)
LIB_DEPENDS=  tcl84.1:${PORTSDIR}/lang/tcl84
CONFIGURE_ARGS=       --with-tcl=${LOCALBASE}/lib/tcl8.4 --with-tcl-includes=${LOCALBASE}/include/tcl8.4
TCLVERMSG=    "Building for Tcl 8.4"
.endif

pre-fetch:
	@${ECHO} ${TCLVERMSG}
	@${ECHO} "Define WITH_TCL80, WITH_TCL82, WITH_TCL83, or WITH_TCL84"
	@${ECHO} "To compile against a different version of TCL"

.include <bsd.port.post.mk>