blob: e33e3dc6e42e1614e10ecaed509f58589550b630 (
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
43
44
45
46
47
48
49
50
51
52
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= tvmet
PORTVERSION= 1.7.2
PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= SF/${PORTNAME}/Tar.Gz_Bz2%20Archive/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Tiny Vector and Matrix template library
LICENSE= LGPL21 # (or later)
LICENSE_FILE= ${WRKSRC}/COPYING
OPTIONS_DEFINE= CPPUNIT DEBUG DOCS EXAMPLES
USES= gmake tar:bzip2 libtool
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-cxx=${CXX}
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MCPPUNIT}
LIB_DEPENDS+= libcppunit-1.12.so:${PORTSDIR}/devel/cppunit
CONFIGURE_ARGS+= --with-cppunit-prefix=${LOCALBASE}
.else
CONFIGURE_ENV+= ac_cv_path_CPPUNIT_CONFIG=no
.endif
.if ${PORT_OPTIONS:MDEBUG}
CXXFLAGS+= -DTVMET_DEBUG
.else
CXXFLAGS+= -DTVMET_OPTIMIZE
.endif
post-patch:
@${REINPLACE_CMD} -e 's|= -O |= |g' ${WRKSRC}/doc/Makefile.in
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for ext in dox cc css h png
(cd ${WRKSRC}/doc && ${INSTALL_DATA} *.${ext} \
${STAGEDIR}${DOCSDIR})
.endfor
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for ext in cc
(cd ${WRKSRC}/examples && ${INSTALL_DATA} *.${ext} \
${STAGEDIR}${EXAMPLESDIR})
.endfor
.include <bsd.port.mk>
|