View | Details | Raw Unified | Return to bug 268292 | Differences between
and this patch

Collapse All | Expand All

(-)b/math/vdt/Makefile (+19 lines)
Added Link Here
1
PORTNAME=	vdt
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	0.4.4
4
CATEGORIES=	math devel science
5
6
MAINTAINER=	erik@tenku.dk
7
COMMENT=	Fast and inline implementations of mathematical functions
8
WWW=		https://github.com/dpiparo/vdt
9
10
LICENSE=	LGPL3+
11
LICENSE_FILE=	${WRKSRC}/Licence.txt
12
13
USES=		cmake
14
USE_GITHUB=	yes
15
GH_ACCOUNT=	dpiparo
16
17
CMAKE_OFF=	SSE
18
19
.include <bsd.port.mk>
(-)b/math/vdt/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1671959994
2
SHA256 (dpiparo-vdt-v0.4.4_GH0.tar.gz) = 8b1664b45ec82042152f89d171dd962aea9bb35ac53c8eebb35df1cb9c34e498
3
SIZE (dpiparo-vdt-v0.4.4_GH0.tar.gz) = 59957
(-)b/math/vdt/pkg-descr (+23 lines)
Added Link Here
1
The ROOT system provides a set of OO frameworks with all the functionality
2
needed to handle and analyze large amounts of data in a very efficient way.
3
Having the data defined as a set of objects, specialized storage methods are
4
used to get direct access to the separate attributes of the selected objects,
5
without having to touch the bulk of the data. Included are histograming methods
6
in an arbitrary number of dimensions, curve fitting, function evaluation,
7
minimization, graphics and visualization classes to allow the easy setup of an
8
analysis system that can query and process the data interactively or in batch
9
mode, as well as a general parallel processing framework, PROOF, that can
10
considerably speed up an analysis.
11
12
Thanks to the built-in C++ interpreter cling, the command, the scripting and
13
the programming language are all C++. The interpreter allows for fast
14
prototyping of the macros since it removes the time consuming compile/link
15
cycle. It also provides a good environment to learn C++. If more performance
16
is needed the interactively developed macros can be compiled using a C++
17
compiler via a machine independent transparent compiler interface called ACliC.
18
19
The system has been designed in such a way that it can query its databases in
20
parallel on clusters of workstations or many-core machines. ROOT is an open
21
system that can be dynamically extended by linking external libraries. This
22
makes ROOT a premier platform on which to build data acquisition, simulation
23
and data analysis systems. [Text copied from ROOT project's repo 2022-11-11.]
(-)b/math/vdt/pkg-plist (+16 lines)
Added Link Here
1
include/vdt/asin.h
2
include/vdt/atan.h
3
include/vdt/tanh.h
4
include/vdt/atan2.h
5
include/vdt/cos.h
6
include/vdt/exp.h
7
include/vdt/identity.h
8
include/vdt/inv.h
9
include/vdt/log.h
10
include/vdt/sincos.h
11
include/vdt/sin.h
12
include/vdt/sqrt.h
13
include/vdt/tan.h
14
include/vdt/vdtcore_common.h
15
include/vdt/vdtMath.h
16
lib/libvdt.so

Return to bug 268292