pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/yamcha Import yamcha-0.33 as textproc/yamcha.
details: https://anonhg.NetBSD.org/pkgsrc/rev/214a55612777
branches: trunk
changeset: 575652:214a55612777
user: obache <obache%pkgsrc.org@localhost>
date: Wed May 19 12:08:02 2010 +0000
description:
Import yamcha-0.33 as textproc/yamcha.
YamCha is a generic, customizable, and open source text chunker oriented toward
a lot of NLP tasks, such as POS tagging, Named Entity Recognition, base NP
chunking, and Text Chunking. YamCha is using a state-of-the-art machine learning
algorithm called Support Vector Machines (SVMs), first introduced by Vapnik in
1995.
YamCha is exactly the same system which performed the best in the CoNLL2000
Shared Task, Chunking and BaseNP Chunking task.
diffstat:
textproc/yamcha/DESCR | 8 ++++++++
textproc/yamcha/Makefile | 23 +++++++++++++++++++++++
textproc/yamcha/Makefile.common | 15 +++++++++++++++
textproc/yamcha/PLIST | 20 ++++++++++++++++++++
textproc/yamcha/buildlink3.mk | 14 ++++++++++++++
textproc/yamcha/distinfo | 5 +++++
6 files changed, 85 insertions(+), 0 deletions(-)
diffs (109 lines):
diff -r 73c9e5be371b -r 214a55612777 textproc/yamcha/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/yamcha/DESCR Wed May 19 12:08:02 2010 +0000
@@ -0,0 +1,8 @@
+YamCha is a generic, customizable, and open source text chunker oriented toward
+a lot of NLP tasks, such as POS tagging, Named Entity Recognition, base NP
+chunking, and Text Chunking. YamCha is using a state-of-the-art machine learning
+algorithm called Support Vector Machines (SVMs), first introduced by Vapnik in
+1995.
+
+YamCha is exactly the same system which performed the best in the CoNLL2000
+Shared Task, Chunking and BaseNP Chunking task.
diff -r 73c9e5be371b -r 214a55612777 textproc/yamcha/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/yamcha/Makefile Wed May 19 12:08:02 2010 +0000
@@ -0,0 +1,23 @@
+# $NetBSD: Makefile,v 1.1.1.1 2010/05/19 12:08:02 obache Exp $
+#
+
+.include "Makefile.common"
+
+CATEGORIES= devel
+
+COMMENT= Yet Another Multipurpose CHunk Annotator
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+GNU_CONFIGURE= yes
+USE_LIBTOOL= yes
+USE_LANGUAGES= c c++
+USE_TOOLS+= perl:run
+
+CONFIGURE_ARGS+= --with-perl5=${PERL5:Q}
+CONFIGURE_ARGS+= --with-svm-learn=${BUILDLINK_PREFIX.TinySVM}/bin/svm_learn
+
+TEST_TARGET= check
+
+.include "../../math/TinySVM/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 73c9e5be371b -r 214a55612777 textproc/yamcha/Makefile.common
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/yamcha/Makefile.common Wed May 19 12:08:02 2010 +0000
@@ -0,0 +1,15 @@
+# $NetBSD: Makefile.common,v 1.1.1.1 2010/05/19 12:08:02 obache Exp $
+# used by textproc/p5-yamcha/Makefile
+# used by textproc/py-yamcha/Makefile
+# used by textproc/ruby-yamcha/Makefile
+
+DISTNAME= yamcha-0.33
+CATEGORIES= textproc
+MASTER_SITES= http://www.chasen.org/~taku/software/yamcha/src/
+
+DISTINFO_FILE= ${.CURDIR}/../../textproc/yamcha/distinfo
+PATCHDIR= ${.CURDIR}/../../textproc/yamcha/patches
+
+MAINTAINER?= obache%NetBSD.org@localhost
+HOMEPAGE= http://www.chasen.org/~taku/software/yamcha/
+LICENSE= gnu-lgpl-v2.1
diff -r 73c9e5be371b -r 214a55612777 textproc/yamcha/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/yamcha/PLIST Wed May 19 12:08:02 2010 +0000
@@ -0,0 +1,20 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2010/05/19 12:08:02 obache Exp $
+bin/yamcha
+bin/yamcha-config
+bin/yamcha-mkmodel
+include/yamcha.h
+lib/libyamcha.la
+libexec/yamcha/Makefile
+libexec/yamcha/PKE.pm
+libexec/yamcha/PKI.pm
+libexec/yamcha/mkdarts
+libexec/yamcha/mkmodel
+libexec/yamcha/mkparam
+libexec/yamcha/mksvmdata
+libexec/yamcha/mktrie
+libexec/yamcha/pkemine
+libexec/yamcha/selecttag
+libexec/yamcha/showse
+libexec/yamcha/svm_learn_wrapper
+libexec/yamcha/zipmodel
+man/man1/yamcha.1
diff -r 73c9e5be371b -r 214a55612777 textproc/yamcha/buildlink3.mk
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/yamcha/buildlink3.mk Wed May 19 12:08:02 2010 +0000
@@ -0,0 +1,14 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2010/05/19 12:08:02 obache Exp $
+
+BUILDLINK_TREE+= yamcha
+
+.if !defined(YAMCHA_BUILDLINK3_MK)
+YAMCHA_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.yamcha+= yamcha>=0.33
+BUILDLINK_PKGSRCDIR.yamcha?= ../../textproc/yamcha
+
+.include "../../math/TinySVM/buildlink3.mk"
+.endif # YAMCHA_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -yamcha
diff -r 73c9e5be371b -r 214a55612777 textproc/yamcha/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/yamcha/distinfo Wed May 19 12:08:02 2010 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2010/05/19 12:08:02 obache Exp $
+
+SHA1 (yamcha-0.33.tar.gz) = 4ee6d8150557761f86fcb8af118636b7c23920c0
+RMD160 (yamcha-0.33.tar.gz) = ac21fa16a45efa40775d426cd6229f612a7aa21e
+Size (yamcha-0.33.tar.gz) = 488670 bytes
Home |
Main Index |
Thread Index |
Old Index