aboutsummaryrefslogtreecommitdiffstats
path: root/lang/tcl-manual/Makefile
blob: 71c393a23f25af61527f7db2d58a01ab2bf4b051 (plain) (blame)
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
# Created by: Edwin Groothuis (edwin@mavetju.org)
# $FreeBSD$

PORTNAME=   tcl-manual
PORTVERSION=    20131001
CATEGORIES= lang
MASTER_SITES=   SF/tcl/Tcl/
DISTFILES=

MAINTAINER= edwin@mavetju.org
COMMENT=    Documentation for TCL (Tool Command Language)

NO_WRKSUBDIR=   yes
NO_BUILD=   yes

VERSIONS=   8.4.20 \
        8.5.15 \
        8.6.1

.for v in ${VERSIONS}
DISTFILES+= $v/tcl$v-html.tar.gz
.endfor

post-patch:
.for v in ${VERSIONS}
    @${REINPLACE_CMD} -e 's|<b>tclsh</b>|<b>tclsh${v:R}</b>|g; \
        s|/usr/local/bin/tclsh|${PREFIX}/bin/tclsh${v:R}|g' \
        ${WRKSRC}/tcl${v}/html/UserCmd/tclsh.htm
    @${REINPLACE_CMD} -e 's|<b>wish</b>|<b>wish${v:R}</b>|g; \
        s|/usr/local/bin/wish|${PREFIX}/bin/wish${v:R}|g' \
        ${WRKSRC}/tcl${v}/html/UserCmd/wish.htm
    @${REINPLACE_CMD} -e 's|tcl\.h|tcl${v:R}/tcl.h|g' \
        ${WRKDIR}/tcl${v}/html/TclLib/*
    @${REINPLACE_CMD} -e 's|tk\.h|tk${v:R}/tk.h|g' \
        ${WRKDIR}/tcl${v}/html/TkLib/*
    @${FIND} ${WRKSRC} -name "*.bak" -delete
.endfor

do-install:
.for v in ${VERSIONS}
    ${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/tcl${v:R:S/.//}
    ${CP} -R ${WRKDIR}/tcl${v}/html/* ${STAGEDIR}${PREFIX}/share/doc/tcl${v:R:S/.//}
.endfor

.include <bsd.port.mk>