06df180a9e
Homepage link is permanent redirected to its HTTPS counterpart Issue reported by repology : https://repology.org/repository/freebsd/problems Approved by: portmgr (blanket) PR: 274888
26 lines
514 B
Makefile
26 lines
514 B
Makefile
PORTNAME= tcl-mmap
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= tcltk@FreeBSD.org
|
|
COMMENT= New TCL channel type using mmap-ed files
|
|
WWW= https://tcl-mmap.sourceforge.net/
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES+= tcl:tea
|
|
|
|
PLIST_FILES= lib/${TCL_PKG}/pkgIndex.tcl \
|
|
lib/${TCL_PKG}/lib${TCL_PKG}.so \
|
|
man/mann/${PORTNAME}.n.gz
|
|
TEST_TARGET= do-test
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/tests; \
|
|
for t in *.tcl; \
|
|
do \
|
|
echo "load ../libmmap${PORTVERSION}.so; source $$t" | ${TCLSH}; \
|
|
done;
|
|
|
|
.include <bsd.port.mk>
|