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

(-)fann/Makefile (-5 / +12 lines)
Lines 6-22 Link Here
6
#
6
#
7
7
8
PORTNAME=	fann
8
PORTNAME=	fann
9
PORTVERSION=	2.1.0b
9
PORTVERSION=	2.2.0
10
CATEGORIES=	math science
10
CATEGORIES=	math science
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}eta
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}
12
DISTNAME=	fann-2.1.0beta
12
DISTNAME=	FANN-2.2.0-Source
13
13
14
MAINTAINER=	tzhuan@csie.org
14
MAINTAINER=	tzhuan@csie.org
15
COMMENT=	A free open source neural network library
15
COMMENT=	A free open source neural network library
16
16
17
WRKSRC=		${WRKDIR}/fann-2.1.0
17
WRKSRC=		${WRKDIR}/FANN-2.2.0-Source
18
19
USE_CMAKE=	yes
18
USE_ZIP=	yes
20
USE_ZIP=	yes
19
GNU_CONFIGURE=	yes
20
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
21
22
23
post-patch:
24
	${REINPLACE_CMD} -e 's|/lib/pkgconfig|/libdata/pkgconfig|g' ${WRKSRC}/CMakeLists.txt
25
26
post-configure:
27
	${ENV} CPP=${CPP} CC=${CC} CXX=${CXX} ${CMAKE_BIN} ${WRKSRC} -DCMAKE_INSTALL_PREFIX=${PREFIX}
28
22
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)fann/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (fann-2.1.0beta.zip) = c24171b5b9c87946bd2f50045cc8dbd0121629fe426615501db14e6043e4a141
1
SHA256 (FANN-2.2.0-Source.zip) = 434b85fce60701c4e0066c442d60110d8e649f278e4edb814f0c0e7a1e0929fd
2
SIZE (fann-2.1.0beta.zip) = 4033198
2
SIZE (FANN-2.2.0-Source.zip) = 2285087
(-)fann/files/patch-Makefile.in (-11 lines)
Lines 1-11 Link Here
1
--- Makefile.in.orig	Sun Mar  4 21:27:52 2007
2
+++ Makefile.in	Thu Sep 14 13:40:25 2006
3
@@ -179,7 +179,7 @@
4
 sysconfdir = @sysconfdir@
5
 target_alias = @target_alias@
6
 SUBDIRS = src
7
-pkgconfigdir = $(libdir)/pkgconfig
8
+pkgconfigdir = $(prefix)/libdata/pkgconfig
9
 pkgconfig_DATA = fann.pc
10
 EXTRA_DIST = benchmarks examples MicrosoftVisualC++6.0 MicrosoftVisualC++.Net \
11
 	MicrosoftWindowsDll BorlandC++Builder6.0 src/include/config.h \
(-)fann/pkg-descr (-8 / +8 lines)
Lines 1-11 Link Here
1
Fast Artificial Neural Network Library is a free open source neural network
1
Fast Artificial Neural Network Library is a free open source neural network
2
library, which implements multilayer artificial neural networks in C with
2
library, which implements multilayer artificial neural networks in C with
3
support for both fully connected and sparsely connected networks.
3
support for both fully connected and sparsely connected networks. Cross-platform
4
Cross-platform execution in both fixed and floating point are supported. It
4
execution in both fixed and floating point are supported. It includes a
5
includes a framework for easy handling of training data sets. It is easy to
5
framework for easy handling of training data sets. It is easy to use, versatile,
6
use, versatile, well documented, and fast. PHP, C++, .NET, Ada, Python, Delphi,
6
well documented, and fast. Bindings to more than 15 programming languages are
7
Octave, Ruby, Pure Data and Mathematica bindings are available. A reference
7
available. An easy to read introduction article and a reference manual
8
manual accompanies the library with examples and recommendations on how to use
8
accompanies the library with examples and recommendations on how to use the
9
the library. A graphical user interface is also available for the library.
9
library. Several graphical user interfaces are also available for the library.
10
10
11
WWW:	http://leenissen.dk/fann/
11
WWW:	http://leenissen.dk/
(-)fann/pkg-plist (-8 / +5 lines)
Lines 3-8 Link Here
3
include/fann.h
3
include/fann.h
4
include/fann_activation.h
4
include/fann_activation.h
5
include/fann_cascade.h
5
include/fann_cascade.h
6
include/fann_cpp.h
6
include/fann_data.h
7
include/fann_data.h
7
include/fann_error.h
8
include/fann_error.h
8
include/fann_internal.h
9
include/fann_internal.h
Lines 10-29 Link Here
10
include/fann_train.h
11
include/fann_train.h
11
include/fixedfann.h
12
include/fixedfann.h
12
include/floatfann.h
13
include/floatfann.h
13
lib/libdoublefann.a
14
lib/libdoublefann.la
15
lib/libdoublefann.so
14
lib/libdoublefann.so
16
lib/libdoublefann.so.2
15
lib/libdoublefann.so.2
17
lib/libfann.a
16
lib/libdoublefann.so.2.2.0
18
lib/libfann.la
19
lib/libfann.so
17
lib/libfann.so
20
lib/libfann.so.2
18
lib/libfann.so.2
21
lib/libfixedfann.a
19
lib/libfann.so.2.2.0
22
lib/libfixedfann.la
23
lib/libfixedfann.so
20
lib/libfixedfann.so
24
lib/libfixedfann.so.2
21
lib/libfixedfann.so.2
25
lib/libfloatfann.a
22
lib/libfixedfann.so.2.2.0
26
lib/libfloatfann.la
27
lib/libfloatfann.so
23
lib/libfloatfann.so
28
lib/libfloatfann.so.2
24
lib/libfloatfann.so.2
25
lib/libfloatfann.so.2.2.0
29
libdata/pkgconfig/fann.pc
26
libdata/pkgconfig/fann.pc

Return to bug 166533