diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-08-20 10:33:43 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-08-20 10:33:43 +0000 |
commit | aebdd3e05c75ed76473099787b6f4a1d2b4bf4ee (patch) | |
tree | 37e84988babc42ff79275f5c3024faccd6eb6f03 /lang/tcl80/Makefile | |
parent | Add -lz to .so building (diff) |
Import TCL 8.0 as a port for the 2.x users and others who want it here
as an option.
Reviewed by: asami
Notes
Notes:
svn path=/head/; revision=7628
Diffstat (limited to 'lang/tcl80/Makefile')
-rw-r--r-- | lang/tcl80/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lang/tcl80/Makefile b/lang/tcl80/Makefile new file mode 100644 index 000000000000..7bd3c81b5fb5 --- /dev/null +++ b/lang/tcl80/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: tcl8.0 +# Version required: 8.0 +# Date created: 19 August 1997 +# Whom: jkh +# +# $Id$ +# + +DISTNAME= tcl8.0 +PKGNAME= tcl-8.0 +CATEGORIES= lang +MASTER_SITES= ftp://ftp.sunlabs.com/pub/tcl/ + +MAINTAINER= jkh@freebsd.org + +WRKSRC= ${WRKDIR}/${DISTNAME}/unix +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-shared +CONFIGURE_ENV= PORTSDIR=${PORTSDIR} + +post-install: + ${LDCONFIG} -m ${PREFIX}/lib + +test: + cd ${WRKSRC} && ${MAKE} test + +.include <bsd.port.mk> |