View | Details | Raw Unified | Return to bug 39954
Collapse All | Expand All

(-)local/expect/Makefile (-7 / +15 lines)
Lines 5-14 Link Here
5
# $FreeBSD: ports/lang/expect/Makefile,v 1.55 2001/11/24 20:04:18 dwcjr Exp $
5
# $FreeBSD: ports/lang/expect/Makefile,v 1.55 2001/11/24 20:04:18 dwcjr Exp $
6
6
7
PORTNAME=	expect
7
PORTNAME=	expect
8
PORTVERSION=	5.32.1
8
PORTVERSION=	5.37.2
9
CATEGORIES=	lang tcl83 tk83
9
CATEGORIES=	lang tcl83 tk83
10
MASTER_SITES=	http://expect.nist.gov/src/
10
MASTER_SITES=	http://expect.nist.gov/src/
11
11
12
EXPECT_VER=	5.37
13
LIBEXPECT_VER=	537
14
12
MAINTAINER=	john@coastalgeology.org
15
MAINTAINER=	john@coastalgeology.org
13
16
14
.if !defined(WITHOUT_X11)
17
.if !defined(WITHOUT_X11)
Lines 17-28 Link Here
17
LIB_DEPENDS?=	tcl83.1:${PORTSDIR}/lang/tcl83
20
LIB_DEPENDS?=	tcl83.1:${PORTSDIR}/lang/tcl83
18
.endif
21
.endif
19
22
20
WRKSRC=		${WRKDIR}/expect-5.32
23
WRKSRC=		${WRKDIR}/expect-${EXPECT_VER}
21
INSTALLS_SHLIB=	yes
24
INSTALLS_SHLIB= yes
22
GNU_CONFIGURE=	yes
25
GNU_CONFIGURE=	yes
23
26
27
PLIST_SUB+=	EXPECT_VER="${EXPECT_VER}"
28
PLIST_SUB+=	LIBEXPECT_VER="${LIBEXPECT_VER}"
29
24
.if defined(WITHOUT_X11)
30
.if defined(WITHOUT_X11)
25
TK_CONFIG_ARGS = 
31
TK_CONFIG_ARGS =
26
PLIST_SUB += XFILES="@comment "
32
PLIST_SUB += XFILES="@comment "
27
.else
33
.else
28
TK_CONFIG_ARGS = --with-tkconfig=${PREFIX}/lib/tk8.3 \
34
TK_CONFIG_ARGS = --with-tkconfig=${PREFIX}/lib/tk8.3 \
Lines 34-50 Link Here
34
		--with-tclconfig=${PREFIX}/lib/tcl8.3 \
40
		--with-tclconfig=${PREFIX}/lib/tcl8.3 \
35
		--with-tclinclude=${PREFIX}/include/tcl8.3 \
41
		--with-tclinclude=${PREFIX}/include/tcl8.3 \
36
		${TK_CONFIG_ARGS}
42
		${TK_CONFIG_ARGS}
43
37
.if !defined(NO_MAN_INSTALL)
44
.if !defined(NO_MAN_INSTALL)
38
MAN1=		autoexpect.1 cryptdir.1 decryptdir.1 dislocate.1 \
45
MAN1=		autoexpect.1 cryptdir.1 decryptdir.1 dislocate.1 \
39
		expect.1 kibitz.1 mkpasswd.1 passmass.1 \
46
		expect.1 kibitz.1 mkpasswd.1 multixterm.1 passmass.1 \
40
		tknewsbiff.1 unbuffer.1 xkibitz.1
47
		tknewsbiff.1 unbuffer.1 xkibitz.1
41
.if !defined(WITHOUT_X11)
48
.if !defined(WITHOUT_X11)
42
MAN1 += expectk.1 
49
MAN1 += expectk.1
43
.endif
50
.endif
44
MAN3=		libexpect.3
51
MAN3=		libexpect.3
45
.endif
52
.endif
46
53
47
post-install:
54
post-install:
48
	${LN} -sf libexpect532.so.1 ${PREFIX}/lib/libexpect532.so
55
	${LN} -sf libexpect${LIBEXPECT_VER}.so.1 \
56
		${PREFIX}/lib/libexpect${LIBEXPECT_VER}.so
49
57
50
.include <bsd.port.mk>
58
.include <bsd.port.mk>
(-)local/expect/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (expect-5.32.1.tar.gz) = af232cc2f8537565efa31e2f7ef7cde5
1
MD5 (expect-5.37.2.tar.gz) = 70202a9f02e73e0e72332ba46f14c46a
(-)local/expect/pkg-plist (-6 / +7 lines)
Lines 9-14 Link Here
9
bin/kibitz
9
bin/kibitz
10
bin/lpunlock
10
bin/lpunlock
11
bin/mkpasswd
11
bin/mkpasswd
12
bin/multixterm
12
bin/passmass
13
bin/passmass
13
bin/rftp
14
bin/rftp
14
bin/rlogin-cwd
15
bin/rlogin-cwd
Lines 24-32 Link Here
24
include/expect_comm.h
25
include/expect_comm.h
25
include/expect_tcl.h
26
include/expect_tcl.h
26
include/tcldbg.h
27
include/tcldbg.h
27
lib/expect5.32/pkgIndex.tcl
28
lib/expect%%EXPECT_VER%%/pkgIndex.tcl
28
lib/expect5.32/libexpect532.a
29
lib/expect%%EXPECT_VER%%/libexpect%%LIBEXPECT_VER%%.a
29
lib/libexpect532.a
30
lib/libexpect%%LIBEXPECT_VER%%.a
30
lib/libexpect532.so
31
lib/libexpect%%LIBEXPECT_VER%%.so
31
lib/libexpect532.so.1
32
lib/libexpect%%LIBEXPECT_VER%%.so.1
32
@dirrm lib/expect5.32
33
@dirrm lib/expect%%EXPECT_VER%%

Return to bug 39954