blob: cfa46b6caafa0a0f8169c4c8ee34fbb225b730f1 (
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
|
# $NetBSD: Makefile,v 1.23 1999/04/08 17:32:27 tron Exp $
# FreeBSD Id: Makefile,v 1.1.1.1 1997/08/20 10:33:35 jkh Exp
#
DISTNAME= tcl8.0.5
PKGNAME= tcl-8.0.5
CATEGORIES= lang
MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl8_0/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.scriptics.com/
WRKSRC= ${WRKDIR}/${DISTNAME}/unix
GNU_CONFIGURE= yes
# Use disable-shared, so that libtool works with the generated Makefile
USE_LIBTOOL= yes
CONFIGURE_ARGS+= --disable-shared
post-patch:
cd ${WRKSRC}/../doc; \
${MV} Object.3 Tcl_Obj.3
test:
cd ${WRKSRC} && ${SETENV} LIBTOOL=${LIBTOOL} PREFIX=${PREFIX} ${MAKE} test
.include "../../mk/bsd.pkg.mk"
|