diff options
author | miwi <miwi@FreeBSD.org> | 2011-02-05 17:40:44 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2011-02-05 17:40:44 +0800 |
commit | 78d14b9970fffc6f905ee2d1d232d19e773367a0 (patch) | |
tree | b886531c40d32b41e6f8db3e63a86f564b6488cd /japanese | |
parent | 3647b82c8c462275572bef1f0ee7a54c1819c140 (diff) | |
download | freebsd-ports-gnome-78d14b9970fffc6f905ee2d1d232d19e773367a0.tar.gz freebsd-ports-gnome-78d14b9970fffc6f905ee2d1d232d19e773367a0.tar.zst freebsd-ports-gnome-78d14b9970fffc6f905ee2d1d232d19e773367a0.zip |
Zinnia is a simple, customizable and portable online hand recognition system
based on Support Vector Machines. Zinnia simply receives user pen strokes as a
sequence of coordinate data and outputs n-best characters sorted by SVM
confidence. To keep portability, Zinnia doesn't have any rendering
functionality. In addition to recognition, Zinnia provides training module that
allows us to create any hand-written recognition systems with low-cost.
WWW: http://zinnia.sourceforge.net/
PR: ports/149685
Submitted by: Timothy Beyer <beyert at cs.ucr.edu>
Feature safe: yes
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/Makefile | 1 | ||||
-rw-r--r-- | japanese/zinnia/Makefile | 41 | ||||
-rw-r--r-- | japanese/zinnia/distinfo | 2 | ||||
-rw-r--r-- | japanese/zinnia/pkg-descr | 8 | ||||
-rw-r--r-- | japanese/zinnia/pkg-plist | 17 |
5 files changed, 69 insertions, 0 deletions
diff --git a/japanese/Makefile b/japanese/Makefile index 55a7f04a4f44..8705cc474b0a 100644 --- a/japanese/Makefile +++ b/japanese/Makefile @@ -393,6 +393,7 @@ SUBDIR += yasou-fpw SUBDIR += yc.el SUBDIR += zangband + SUBDIR += zinnia SUBDIR += zipcodes SUBDIR += zope-ejsplitter SUBDIR += zope-jamailhost diff --git a/japanese/zinnia/Makefile b/japanese/zinnia/Makefile new file mode 100644 index 000000000000..d8d54a7d775a --- /dev/null +++ b/japanese/zinnia/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: zinnia + +# Date created: 15 Aug 2010 +# Whom: Timothy Beyer <beyert@cs.ucr.edu> +# +# $FreeBSD$ +# + +PORTNAME= zinnia +PORTVERSION= 0.06 +CATEGORIES= japanese +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} + +MAINTAINER= beyert@cs.ucr.edu +COMMENT= A simple, customizable and portable online hand recognition system + +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/COPYING + +USE_GMAKE= yes +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +.include <bsd.port.pre.mk> + +post-patch: + @${REINPLACE_CMD} -e '/^pkgconfigdir/s!=.*!= ${PREFIX}/libdata/pkgconfig!' \ + ${WRKSRC}/Makefile.in + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/COPYING ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/index.html ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/index-ja.html ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/index-ja.html ${DOCSDIR} +.endif + +.include <bsd.port.post.mk> diff --git a/japanese/zinnia/distinfo b/japanese/zinnia/distinfo new file mode 100644 index 000000000000..18174a23dba3 --- /dev/null +++ b/japanese/zinnia/distinfo @@ -0,0 +1,2 @@ +SHA256 (zinnia-0.06.tar.gz) = ece3af93f937282971634fd81d3e997f848e8cfa958220e26a4564ca064ac20b +SIZE (zinnia-0.06.tar.gz) = 457415 diff --git a/japanese/zinnia/pkg-descr b/japanese/zinnia/pkg-descr new file mode 100644 index 000000000000..7580731e2bf1 --- /dev/null +++ b/japanese/zinnia/pkg-descr @@ -0,0 +1,8 @@ +Zinnia is a simple, customizable and portable online hand recognition system +based on Support Vector Machines. Zinnia simply receives user pen strokes as a +sequence of coordinate data and outputs n-best characters sorted by SVM +confidence. To keep portability, Zinnia doesn't have any rendering +functionality. In addition to recognition, Zinnia provides training module that +allows us to create any hand-written recognition systems with low-cost. + +WWW: http://zinnia.sourceforge.net/ diff --git a/japanese/zinnia/pkg-plist b/japanese/zinnia/pkg-plist new file mode 100644 index 000000000000..6f2c34b1bb45 --- /dev/null +++ b/japanese/zinnia/pkg-plist @@ -0,0 +1,17 @@ +bin/zinnia +bin/zinnia_convert +bin/zinnia_learn +include/zinnia.h +include/zinnia/zinnia.h +lib/libzinnia.a +lib/libzinnia.la +lib/libzinnia.so +lib/libzinnia.so.0 +libdata/pkgconfig/zinnia.pc +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/index-ja.html +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm include/zinnia |