mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
38 lines
952 B
Makefile
38 lines
952 B
Makefile
# Created by: Pedro F. Giffuni <giffunip@asme.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jama
|
|
PORTVERSION= 1.2.5
|
|
CATEGORIES= math devel
|
|
MASTER_SITES= http://math.nist.gov/tnt/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g}
|
|
.ifndef NOPORTDOCS
|
|
DISTFILES=${DISTNAME}${EXTRACT_SUFX} jama102doc.zip
|
|
.endif
|
|
DIST_SUBDIR= tnt
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= erik@bz.bzflag.bz
|
|
COMMENT= Java-like Matrix C++ Templates
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/tnt/tnt.h:${PORTSDIR}/devel/tnt \
|
|
unzip:${PORTSDIR}/archivers/unzip
|
|
RUN_DEPENDS= ${LOCALBASE}/include/tnt/tnt.h:${PORTSDIR}/devel/tnt
|
|
|
|
USE_ZIP= yes
|
|
NO_BUILD= yes
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/include/tnt
|
|
${EXTRACT_CMD} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME} \
|
|
-d ${PREFIX}/include/tnt
|
|
.ifndef NOPORTDOCS
|
|
${MKDIR} ${WRKDIR}/doc ${DOCSDIR}
|
|
${EXTRACT_CMD} -o ${DISTDIR}/${DIST_SUBDIR}/jama102doc \
|
|
-d ${WRKDIR}/doc
|
|
(cd ${WRKDIR}/doc/doxygen && ${COPYTREE_SHARE} \* ${DOCSDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|