freebsd-ports/japanese/py-zinnia/Makefile
Martin Wilke 3eee3adbc0 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.

This is the python interface to the library.

WWW: http://zinnia.sourceforge.net/

PR:		ports/149686
Submitted by:	Timothy Beyer <beyert at cs.ucr.edu>
Feature safe:	yes
2011-02-05 09:41:52 +00:00

37 lines
813 B
Makefile

# New ports collection makefile for: py-zinnia
# Date created: 15 Aug 2010
# Whom: Timothy Beyer <beyert@cs.ucr.edu>
#
# $FreeBSD$
#
PORTNAME= zinnia
PORTVERSION= 0.06
CATEGORIES= japanese python
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= beyert@cs.ucr.edu
COMMENT= Zinnna Python Interface
LIB_DEPENDS= zinnia.0:${PORTSDIR}/japanese/zinnia
RUN_DEPENDS= zinnia:${PORTSDIR}/japanese/zinnia
LICENSE= BSD
LICENSE_FILE= ${WRKSRC}/COPYING
USE_PYTHON= yes
USE_PYDISTUTILS=yes
PYDISTUTILS_PKGNAME= ${PORTNAME}_python
PYDISTUTILS_PKGVERSION= 0.0.0
.include <bsd.port.pre.mk>
CONFIGURE_ENV= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
MAKE_ENV:= ${CONFIGURE_ENV}
post-extract:
${CP} -pR ${WRKSRC}/python/* ${WRKSRC}/
.include <bsd.port.post.mk>