aboutsummaryrefslogtreecommitdiffstats
path: root/lang/tcl80/Makefile
blob: e35b697e3fa5948b14f847291a3badbeec5d9c13 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# New ports collection makefile for:    tcl8.0
# Date created:     19 August 1997
# Whom:         jkh
#
# $FreeBSD$
#

PORTNAME=   tcl
PORTVERSION=    8.0.5
CATEGORIES= lang tcl80
MASTER_SITES=   ftp://ftp.scriptics.com/pub/tcl/tcl8_0/
DISTNAME=   tcl8.0.5

MAINTAINER= cwt@freebsd.org

NO_LATEST_LINK= yes
WRKSRC=     ${WRKDIR}/tcl8.0.5/unix
INSTALLS_SHLIB= yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --enable-shared
CONFIGURE_ENV=  PORTSDIR=${PORTSDIR}
PKGINSTALL= ${PKGDIR}/pkg-install.tclsh
PKGDEINSTALL=   ${PKGDIR}/pkg-deinstall.tclsh

SHLIB_MAJOR=    1
SHLIB_MINOR=    5
MAKEFILE=   makefile
TCL_LIB=    libtcl80.so

.include <bsd.port.pre.mk>

.include "${FILESDIR}/manpages"

MANCOMPRESSED=  yes

.if ${PORTOBJFORMAT} == "elf"
TCL_LIB_FILE=   ${TCL_LIB}.${SHLIB_MAJOR}
.else
TCL_LIB_FILE=   ${TCL_LIB}.${SHLIB_MAJOR}.${SHLIB_MINOR}
.endif

post-configure:
    @${CP} ${FILESDIR}/Makefile.lib ${WRKSRC}
    @${CP} ${FILESDIR}/makefile     ${WRKSRC}

pre-build:
    @cd ${WRKSRC} && ${MAKE} -f Makefile.lib PREFIX=${PREFIX} \
       SHLIB_MAJOR=${SHLIB_MAJOR} SHLIB_MINOR=${SHLIB_MINOR}

post-install:
    ${LN} -sf ${TCL_LIB_FILE} ${PREFIX}/lib/${TCL_LIB}
.if exists(${PKGINSTALL})
    ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL}
.endif

test:
    cd ${WRKSRC} && ${MAKE} test

.include <bsd.port.post.mk>