blob: 9309c54a16ec6d573e8fdd5b7d147d371f9ee372 (
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
42
|
# ex:ts=8
# Ports collection makefile for: blitz++
# Date created: Jul 25, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= blitz++
PORTVERSION= 0.9
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= blitz
DISTNAME= blitz-${PORTVERSION}
MAINTAINER= olivier.saut@gmail.com
COMMENT= A C++ class library for scientific computing
.ifndef NOPORTDOCS
BUILD_DEPENDS= dvips:${PORTSDIR}/print/dvipsk-tetex
INFO= blitz
.else
MAKE_ARGS= NOPORTDOCS=yes
.endif
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:15
USE_GNOME= gnometarget gnomehack
CONFIGURE_ARGS= --with-cxx=gcc --disable-doxygen
MAKE_ARGS+= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
AUTOHEADER="${TRUE}"
DOCSDIR= ${PREFIX}/share/doc/blitz
INSTALLS_SHLIB= yes
post-patch:
@${REINPLACE_CMD} -e 's|g++|\$${CXX}|g ; \
s|"-ftemplate-depth-30|"\$${CXXFLAGS} -ftemplate-depth-30|g ; \
s|-O2||g' ${WRKSRC}/configure
.include <bsd.port.mk>
|