View | Details | Raw Unified | Return to bug 51377
Collapse All | Expand All

(-)math/tvmet/Makefile (-2 / +3 lines)
Lines 7-13 Link Here
7
#
7
#
8
8
9
PORTNAME=	tvmet
9
PORTNAME=	tvmet
10
PORTVERSION=	0.7.0
10
PORTVERSION=	1.0.1
11
CATEGORIES=	math
11
CATEGORIES=	math
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 15-20 Link Here
15
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	ports@FreeBSD.org
16
COMMENT=	Tiny Vector and Matrix template library
16
COMMENT=	Tiny Vector and Matrix template library
17
17
18
USE_BZIP2=	yes
18
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
19
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
20
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
20
21
Lines 23-29 Link Here
23
post-install:
24
post-install:
24
.if !defined(NOPORTDOCS)
25
.if !defined(NOPORTDOCS)
25
	@${MKDIR} ${DOCSDIR}
26
	@${MKDIR} ${DOCSDIR}
26
.for ext in h cc css doc png
27
.for ext in dox cc css h png
27
	${INSTALL_DATA} ${WRKSRC}/doc/*.${ext} ${DOCSDIR}
28
	${INSTALL_DATA} ${WRKSRC}/doc/*.${ext} ${DOCSDIR}
28
.endfor
29
.endfor
29
	@${MKDIR} ${EXAMPLESDIR}
30
	@${MKDIR} ${EXAMPLESDIR}
(-)math/tvmet/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (tvmet-0.7.0.tar.gz) = 63660c8ab9fa854ed55d779c1bf19e71
1
MD5 (tvmet-1.0.1.tar.bz2) = 0b2ffd974210344a1fc772bbe2c0b633
(-)math/tvmet/files/patch-Makefile.in (+11 lines)
Line 0 Link Here
1
--- Makefile.in.orig	Tue Feb 11 00:36:50 2003
2
+++ Makefile.in	Tue Feb 11 04:12:23 2003
3
@@ -88,7 +88,7 @@
4
 
5
 ACLOCAL_AMFLAGS = -I config
6
 
7
-SUBDIRS = include doc regression tests benchmark examples
8
+SUBDIRS = include regression tests benchmark
9
 DIST_SUBDIRS = include doc regression tests benchmark examples config
10
 
11
 m4sources = \
(-)math/tvmet/pkg-plist (-42 / +66 lines)
Lines 11-77 Link Here
11
include/tvmet/MatrixOperators.h
11
include/tvmet/MatrixOperators.h
12
include/tvmet/NumericTraits.h
12
include/tvmet/NumericTraits.h
13
include/tvmet/RunTimeError.h
13
include/tvmet/RunTimeError.h
14
include/tvmet/TypePromotion.h
15
include/tvmet/TvmetBase.h
14
include/tvmet/TvmetBase.h
15
include/tvmet/TypePromotion.h
16
include/tvmet/UnaryFunctionals.h
16
include/tvmet/UnaryFunctionals.h
17
include/tvmet/Vector.h
17
include/tvmet/Vector.h
18
include/tvmet/VectorEval.h
18
include/tvmet/VectorEval.h
19
include/tvmet/VectorFunctions.h
19
include/tvmet/VectorFunctions.h
20
include/tvmet/VectorImpl.h
20
include/tvmet/VectorImpl.h
21
include/tvmet/VectorOperators.h
21
include/tvmet/VectorOperators.h
22
include/tvmet/Xpr.h
23
include/tvmet/XprFunctions.h
24
include/tvmet/XprOperators.h
25
include/tvmet/config.h
26
include/tvmet/config/config-gcc.h
22
include/tvmet/config/config-gcc.h
27
include/tvmet/config/config-icc.h
23
include/tvmet/config/config-icc.h
28
include/tvmet/config/config-kcc.h
24
include/tvmet/config/config-kcc.h
29
include/tvmet/config/config-pgi.h
25
include/tvmet/config/config-pgi.h
26
include/tvmet/config.h
27
include/tvmet/meta/Gemm.h
28
include/tvmet/meta/Gemv.h
29
include/tvmet/meta/Matrix.h
30
include/tvmet/meta/Vector.h
30
include/tvmet/tvmet.h
31
include/tvmet/tvmet.h
32
include/tvmet/util/General.h
33
include/tvmet/util/Timer.h
34
include/tvmet/xpr/BinOperator.h
35
include/tvmet/xpr/ConstRef.h
36
include/tvmet/xpr/Eval.h
37
include/tvmet/xpr/Functions.h
38
include/tvmet/xpr/Literal.h
39
include/tvmet/xpr/MMProduct.h
40
include/tvmet/xpr/MVProduct.h
41
include/tvmet/xpr/Matrix.h
42
include/tvmet/xpr/MatrixFunctions.h
43
include/tvmet/xpr/MatrixOperators.h
44
include/tvmet/xpr/MatrixTranspose.h
45
include/tvmet/xpr/Null.h
46
include/tvmet/xpr/UnOperator.h
47
include/tvmet/xpr/Vector.h
48
include/tvmet/xpr/VectorOperators.h
49
include/tvmet/xpr/Xpr.h
31
share/aclocal/tvmet.m4
50
share/aclocal/tvmet.m4
32
%%PORTDOCS%%share/doc/tvmet/Util.h
51
%%PORTDOCS%%share/doc/tvmet/Util.h
52
%%PORTDOCS%%share/doc/tvmet/bench_daxpy.png
33
%%PORTDOCS%%share/doc/tvmet/bench_matrix_matrix_product.png
53
%%PORTDOCS%%share/doc/tvmet/bench_matrix_matrix_product.png
34
%%PORTDOCS%%share/doc/tvmet/bench_matrix_vector_product.png
54
%%PORTDOCS%%share/doc/tvmet/bench_matrix_vector_product.png
35
%%PORTDOCS%%share/doc/tvmet/bench_vector_add.png
55
%%PORTDOCS%%share/doc/tvmet/bench_vector_add.png
36
%%PORTDOCS%%share/doc/tvmet/bench_vector_inner_product.png
56
%%PORTDOCS%%share/doc/tvmet/bench_vector_inner_product.png
37
%%PORTDOCS%%share/doc/tvmet/benchmark.doc
57
%%PORTDOCS%%share/doc/tvmet/benchmark.dox
38
%%PORTDOCS%%share/doc/tvmet/build.doc
58
%%PORTDOCS%%share/doc/tvmet/build.dox
39
%%PORTDOCS%%share/doc/tvmet/changelog.doc
59
%%PORTDOCS%%share/doc/tvmet/changelog.dox
40
%%PORTDOCS%%share/doc/tvmet/compiler.doc
60
%%PORTDOCS%%share/doc/tvmet/compiler.dox
41
%%PORTDOCS%%share/doc/tvmet/credits.doc
61
%%PORTDOCS%%share/doc/tvmet/credits.dox
42
%%PORTDOCS%%share/doc/tvmet/faq.doc
62
%%PORTDOCS%%share/doc/tvmet/dox_functions.cc
43
%%PORTDOCS%%share/doc/tvmet/functions.doc
63
%%PORTDOCS%%share/doc/tvmet/dox_operators.cc
44
%%PORTDOCS%%share/doc/tvmet/functions_doc.cc
64
%%PORTDOCS%%share/doc/tvmet/faq.dox
45
%%PORTDOCS%%share/doc/tvmet/install.doc
65
%%PORTDOCS%%share/doc/tvmet/functions.dox
46
%%PORTDOCS%%share/doc/tvmet/intro.doc
66
%%PORTDOCS%%share/doc/tvmet/install.dox
47
%%PORTDOCS%%share/doc/tvmet/license.doc
67
%%PORTDOCS%%share/doc/tvmet/intro.dox
48
%%PORTDOCS%%share/doc/tvmet/links.doc
68
%%PORTDOCS%%share/doc/tvmet/license.dox
49
%%PORTDOCS%%share/doc/tvmet/misc.doc
69
%%PORTDOCS%%share/doc/tvmet/links.dox
50
%%PORTDOCS%%share/doc/tvmet/notes.doc
70
%%PORTDOCS%%share/doc/tvmet/misc.dox
51
%%PORTDOCS%%share/doc/tvmet/operators.doc
71
%%PORTDOCS%%share/doc/tvmet/notes.dox
52
%%PORTDOCS%%share/doc/tvmet/operators_doc.cc
72
%%PORTDOCS%%share/doc/tvmet/operators.dox
53
%%PORTDOCS%%share/doc/tvmet/projects.doc
73
%%PORTDOCS%%share/doc/tvmet/projects.dox
54
%%PORTDOCS%%share/doc/tvmet/sflogo.png
74
%%PORTDOCS%%share/doc/tvmet/sflogo.png
55
%%PORTDOCS%%share/doc/tvmet/tvmet.css
75
%%PORTDOCS%%share/doc/tvmet/tvmet.css
56
%%PORTDOCS%%share/doc/tvmet/usage.doc
76
%%PORTDOCS%%share/doc/tvmet/usage.dox
57
%%PORTDOCS%%share/doc/tvmet/works.doc
77
%%PORTDOCS%%share/doc/tvmet/works.dox
58
share/examples/tvmet/cmm.cc
78
%%PORTDOCS%%share/examples/tvmet/cmm.cc
59
share/examples/tvmet/cmv.cc
79
%%PORTDOCS%%share/examples/tvmet/cmv.cc
60
share/examples/tvmet/matrix_col.cc
80
%%PORTDOCS%%share/examples/tvmet/diag.cc
61
share/examples/tvmet/mm.cc
81
%%PORTDOCS%%share/examples/tvmet/matrix_col.cc
62
share/examples/tvmet/mv.cc
82
%%PORTDOCS%%share/examples/tvmet/mm.cc
63
share/examples/tvmet/ray.cc
83
%%PORTDOCS%%share/examples/tvmet/mv.cc
64
share/examples/tvmet/xpr_print_m1.cc
84
%%PORTDOCS%%share/examples/tvmet/ray.cc
65
share/examples/tvmet/xpr_print_m2.cc
85
%%PORTDOCS%%share/examples/tvmet/xpr_print_m1.cc
66
share/examples/tvmet/xpr_print_m3.cc
86
%%PORTDOCS%%share/examples/tvmet/xpr_print_m2.cc
67
share/examples/tvmet/xpr_print_m4.cc
87
%%PORTDOCS%%share/examples/tvmet/xpr_print_m3.cc
68
share/examples/tvmet/xpr_print_mv1.cc
88
%%PORTDOCS%%share/examples/tvmet/xpr_print_m4.cc
69
share/examples/tvmet/xpr_print_mv2.cc
89
%%PORTDOCS%%share/examples/tvmet/xpr_print_mv1.cc
70
share/examples/tvmet/xpr_print_v1.cc
90
%%PORTDOCS%%share/examples/tvmet/xpr_print_mv2.cc
71
share/examples/tvmet/xpr_print_v2.cc
91
%%PORTDOCS%%share/examples/tvmet/xpr_print_v1.cc
72
share/examples/tvmet/xpr_print_v3.cc
92
%%PORTDOCS%%share/examples/tvmet/xpr_print_v2.cc
73
share/examples/tvmet/xpr_print_v4.cc
93
%%PORTDOCS%%share/examples/tvmet/xpr_print_v3.cc
94
%%PORTDOCS%%share/examples/tvmet/xpr_print_v4.cc
95
%%PORTDOCS%%@dirrm share/examples/tvmet
96
%%PORTDOCS%%@dirrm share/doc/tvmet
97
@dirrm include/tvmet/xpr
98
@dirrm include/tvmet/util
99
@dirrm include/tvmet/meta
74
@dirrm include/tvmet/config
100
@dirrm include/tvmet/config
75
@dirrm include/tvmet
101
@dirrm include/tvmet
76
@dirrm share/examples/tvmet
77
%%PORTDOCS%%@dirrm share/doc/tvmet

Return to bug 51377