1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/math/mtl/Makefile
Adam Weinberger 0f88ed614d Repair instances, almost all courtesy of bf ;-), of spaces
and/or tabs before the =. This made doing regular expressions
on the ports tree really difficult.

Approved by:	portmgr (not really, but touches unstaged ports)
2014-07-29 20:55:27 +00:00

57 lines
1.4 KiB
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= mtl
DISTVERSION= 2.1.2-23.tentative
CATEGORIES= math devel
MASTER_SITES= http://www.osl.iu.edu/download/research/mtl/
MAINTAINER= bf@FreeBSD.org
COMMENT= The Matrix Template Library, Version 2
LICENSE= MTL
LICENSE_NAME= Matrix Template Library License
LICENSE_FILE= ${WRKSRC}/license.mtl.txt
LICENSE_PERMS= auto-accept
CONFIGURE_ENV= CXXCPP="${CXXCPP}"
CXXCPP?= ${CXX} -E
GNU_CONFIGURE= yes
NO_BUILD= yes
USES= perl5
USE_PERL5= build
WRKSRC= ${WRKDIR}/${DISTNAME:R}
OPTIONS_DEFINE= EXAMPLES
post-patch:
@${REINPLACE_CMD} -e '/gnu\*)/,/;;/{/CXX=/d; /CXX_OPTIMIZE_FLAGS=/d; \
s/CXXFLAGS="/&$$ac_cv_env_CXXFLAGS_value /; }' \
${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|\./.*\.pl[[:blank:]]|${PERL} &|' \
${WRKSRC}/test/Makefile.in
@${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH} -m
check regression-test test: build
@cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \
${MAKE_ARGS} QUICK=-qQ test summary
fulltest: build
@cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \
${MAKE_ARGS} QUICK= test summary
.include <bsd.port.pre.mk>
.if defined(USE_GCC) || !empty(CXX:M*g++4*)
CXXFLAGS+= -fpermissive
.endif
PORTEXAMPLES= *
post-install:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/doubledouble
@${INSTALL_DATA} ${WRKSRC}/contrib/examples/* ${STAGEDIR}${EXAMPLESDIR}
@${INSTALL_DATA} ${WRKSRC}/contrib/doubledouble/* ${STAGEDIR}${EXAMPLESDIR}/doubledouble
.include <bsd.port.post.mk>