blob: cd8b3f30202f9d48ec53120fda5c0bcb5e107cef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# ex:ts=8
# Ports collection makefile for: ltl
# Date created: Sep 11, 2006
# Whom: rossiya
#
# $FreeBSD$
#
PORTNAME= ltl
PORTVERSION= 1.9.1
PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= http://www.mpe.mpg.de/~drory/ltl/
MAINTAINER= rossiya@gmail.com
COMMENT= A C++ class SSE library for scientific computing
LIB_DEPENDS= lapack.4:${PORTSDIR}/math/lapack \
blas.2:${PORTSDIR}/math/blas
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_AUTOTOOLS= libtool
CONFIGURE_ARGS= --with-cxx=gcc --disable-doxygen --prefix=${PREFIX} --includedir=${PREFIX}/include/LTL
MAKE_ENV= prefix=${PREFIX} exec_prefix=${PREFIX}
MAKE_ARGS+= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
AUTOHEADER="${TRUE}"
INSTALL_TARGET= install install-data distdir
PORTDOCS= *.html
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for docs in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/doc/html/${docs} ${DOCSDIR}
.endfor
.endif
@${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}
.include <bsd.port.mk>
|