Prune devel/py-EnthoughtBase
[dports.git] / devel / tcl-mmap / Makefile
1 # Created by: Mikhail Teterin <mi@aldan.algebra.com>
2 # $FreeBSD$
3
4 PORTNAME=       tcl-mmap
5 PORTVERSION=    1.1
6 CATEGORIES=     devel
7 MASTER_SITES=   SF
8
9 MAINTAINER=     tcltk@FreeBSD.org
10 COMMENT=        New TCL channel type using mmap-ed files
11
12 LICENSE=        GPLv3
13
14 USES+=          tcl
15 GNU_CONFIGURE=  yes
16 CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} \
17                 --prefix=${PREFIX} \
18                 --exec-prefix=${PREFIX}
19
20 PLIST_FILES=    lib/mmap${PORTVERSION}/pkgIndex.tcl \
21                 lib/mmap${PORTVERSION}/libmmap${PORTVERSION}.so \
22                 man/mann/tcl-mmap.n.gz
23
24 regression-test: build
25         cd ${WRKSRC}/tests; \
26         for t in *.tcl; \
27         do \
28             echo "load ../libmmap${PORTVERSION}.so; source $$t" | ${TCLSH}; \
29         done;
30
31 .include <bsd.port.mk>