diff options
author | will <will@FreeBSD.org> | 2000-06-29 02:08:21 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-06-29 02:08:21 +0000 |
commit | b19133c7ffa524f67f81fb64a88707c6c069d93e (patch) | |
tree | bcfbfb80f47809672331aaf4b1f33e3c57fb93d3 /math | |
parent | 5a7890ee1955103a7e1d3e531b1ca0558935f054 (diff) | |
download | FreeBSD-ports-b19133c7ffa524f67f81fb64a88707c6c069d93e.zip FreeBSD-ports-b19133c7ffa524f67f81fb64a88707c6c069d93e.tar.gz |
Add libneural in its new location, moved from devel to math category w/o
a repocopy because there's no history to preserve. Libneural is a C++
library implementation of the classic 3-layer perceptron.
Also release this port upon the people.
Move suggested by: reg
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/libneural/Makefile | 17 | ||||
-rw-r--r-- | math/libneural/distinfo | 1 | ||||
-rw-r--r-- | math/libneural/pkg-comment | 1 | ||||
-rw-r--r-- | math/libneural/pkg-descr | 10 | ||||
-rw-r--r-- | math/libneural/pkg-plist | 5 |
6 files changed, 35 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 3e0b75f..667b393 100644 --- a/math/Makefile +++ b/math/Makefile @@ -28,6 +28,7 @@ SUBDIR += gsl SUBDIR += hexcalc SUBDIR += lapack + SUBDIR += libneural SUBDIR += libranlib SUBDIR += linalg SUBDIR += linpack diff --git a/math/libneural/Makefile b/math/libneural/Makefile new file mode 100644 index 0000000..ecb1ae2 --- /dev/null +++ b/math/libneural/Makefile @@ -0,0 +1,17 @@ +# New ports collection makefile for: libneural +# Date created: 14 Jun 2000 +# Whom: will +# +# $FreeBSD$ +# + +PORTNAME= libneural +PORTVERSION= 1.0.2 +CATEGORIES= devel +MASTER_SITES= http://ieee.uow.edu.au/documents/contrib/ + +MAINTAINER= ports@FreeBSD.org + +USE_LIBTOOL= yes + +.include <bsd.port.mk> diff --git a/math/libneural/distinfo b/math/libneural/distinfo new file mode 100644 index 0000000..9c7305e --- /dev/null +++ b/math/libneural/distinfo @@ -0,0 +1 @@ +MD5 (libneural-1.0.2.tar.gz) = 4a495e2094afc7ca3d95bce14947110b diff --git a/math/libneural/pkg-comment b/math/libneural/pkg-comment new file mode 100644 index 0000000..031aaa9 --- /dev/null +++ b/math/libneural/pkg-comment @@ -0,0 +1 @@ +C++ implementation of the classic 3-layer perceptron in library form diff --git a/math/libneural/pkg-descr b/math/libneural/pkg-descr new file mode 100644 index 0000000..4c2c0f1 --- /dev/null +++ b/math/libneural/pkg-descr @@ -0,0 +1,10 @@ +libneural is an extremely tiny library for creating a software +three layer backpropagation neural network. This is useful for +a very wide variety of pattern recognition and classification +problems. It is written in C++, based on the standard algorithm +with NO fancy features like bias terms or momentum. + +WWW: http://ieee.uow.edu.au/~daniel/software/libneural/ +Author: Daniel Franklin <d.franklin@computer.org> + +- Will <andrews@technologist.com> diff --git a/math/libneural/pkg-plist b/math/libneural/pkg-plist new file mode 100644 index 0000000..cc77285 --- /dev/null +++ b/math/libneural/pkg-plist @@ -0,0 +1,5 @@ +include/neuron.h +include/nnwork.h +lib/libneural.so +lib/libneural.so.0 +lib/libneural.a |