1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
freebsd-ports/japanese/zinnia/Makefile
Martin Wilke cfc7c9dd9a 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
2011-02-05 09:40:44 +00:00

42 lines
998 B
Makefile

# 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>