mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
33 lines
736 B
Makefile
33 lines
736 B
Makefile
# Created by: Pedro F. Giffuni <giffunip@asme.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tnt
|
|
PORTVERSION= 1.2.6
|
|
CATEGORIES= devel math
|
|
MASTER_SITES= http://math.nist.gov/tnt/
|
|
DISTNAME= ${PORTNAME}_126
|
|
.ifndef NOPORTDOCS
|
|
DISTFILES=${DISTNAME}${EXTRACT_SUFX} tnt120doc.zip
|
|
.endif
|
|
DIST_SUBDIR= tnt
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= erik@bz.bzflag.bz
|
|
COMMENT= Template Numerical Toolkit
|
|
|
|
BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip
|
|
|
|
USE_ZIP= yes
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= *
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/include/tnt
|
|
${INSTALL_DATA} ${WRKDIR}/*.h ${STAGEDIR}${PREFIX}/include/tnt
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${EXTRACT_CMD} ${DISTDIR}/${DIST_SUBDIR}/tnt120doc \
|
|
-d ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|