freebsd-ports/math/ltl/Makefile
Alejandro Pulver ffdf4a418b LTL is a C++ class template library for scientific computing which provides
high performance via SSE3 floating point support for vector operations.

Useful for array processing, image processing, FITS and ASCII I/O, and linear
algebra (astronomical and scientific computing, in short). LTL provides
dynamic arrays of up to 5-dimensions, subarrays and slicing, support for fixed
size vectors and matrices including basic linear algebra operations, expression
templates based evaluation, and I/O facilities for ascii and FITS format files.

Users of the boost and blitz++ library may find the cross-pollination of these
unique features to be fruitful.

WWW: http://www.mpe.mpg.de/~drory/ltl/

PR:		ports/103310
Submitted by:	rossiya
2006-10-07 20:43:52 +00:00

38 lines
1.1 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: ltl
# Date created: Sep 11, 2006
# Whom: rossiya
#
# $FreeBSD$
#
PORTNAME= ltl
PORTVERSION= 1.7.10
CATEGORIES= math
MASTER_SITES= http://www.mpe.mpg.de/~drory/ltl/
MAINTAINER= rossiya@gmail.com
COMMENT= A C++ class SSE library for scientific computing
USE_GCC= 3.2+
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_AUTOTOOLS= libtool:15
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --with-cxx=gcc --disable-doxygen --prefix=${PREFIX} --includedir=${PREFIX}/include/LTL
MAKE_ENV= prefix=${TARGETDIR} exec_prefix=${TARGETDIR}
MAKE_ARGS+= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
AUTOHEADER="${TRUE}"
INSTALL_TARGET= install install-data check distdir
PORTDOCS= doc/html/*[h.][tp][mn][lg]
PLIST_FILES= `ls ${WRKSRC}/doc/html/*[h.][tp][mn][lg] | ${SED} -e 's!${WRKSRC}/doc/html/!%%PORTDOCS%%%%DOCSDIR%%/!g'`
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && pwd && ${INSTALL_DATA} -v ${PORTDOCS} ${DOCSDIR}
.endif
@${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}
.include <bsd.port.mk>