pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc Add a package for hfstospell-0.5.1.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a13492ac90b0
branches:  trunk
changeset: 314393:a13492ac90b0
user:      bsiegert <bsiegert%pkgsrc.org@localhost>
date:      Fri Oct 26 20:43:07 2018 +0000

description:
Add a package for hfstospell-0.5.1.

This is a library that's part of providing a fully featured spellchecker
for Finnish. From DESCR:

This is a minimal hfst optimized lookup format based spell checker library and
a demonstrational implementation of command line based spell checker. The
library is licenced under Apache licence version 2, other licences can be
obtained from University of Helsinki.

diffstat:

 textproc/Makefile                 |   3 ++-
 textproc/hfstospell/DESCR         |   4 ++++
 textproc/hfstospell/Makefile      |  24 ++++++++++++++++++++++++
 textproc/hfstospell/PLIST         |  13 +++++++++++++
 textproc/hfstospell/buildlink3.mk |  16 ++++++++++++++++
 textproc/hfstospell/distinfo      |   6 ++++++
 6 files changed, 65 insertions(+), 1 deletions(-)

diffs (100 lines):

diff -r 25735d7e8a0c -r a13492ac90b0 textproc/Makefile
--- a/textproc/Makefile Fri Oct 26 18:10:06 2018 +0000
+++ b/textproc/Makefile Fri Oct 26 20:43:07 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1006 2018/10/16 14:32:37 adam Exp $
+# $NetBSD: Makefile,v 1.1007 2018/10/26 20:43:07 bsiegert Exp $
 #
 
 COMMENT=       Text processing utilities (does not include desktop publishing)
@@ -247,6 +247,7 @@
 SUBDIR+=       heirloom-wc
 SUBDIR+=       helpdeco
 SUBDIR+=       hevea
+SUBDIR+=       hfstospell
 SUBDIR+=       highlight
 SUBDIR+=       highway
 SUBDIR+=       hre
diff -r 25735d7e8a0c -r a13492ac90b0 textproc/hfstospell/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/hfstospell/DESCR Fri Oct 26 20:43:07 2018 +0000
@@ -0,0 +1,4 @@
+This is a minimal hfst optimized lookup format based spell checker library and
+a demonstrational implementation of command line based spell checker. The
+library is licenced under Apache licence version 2, other licences can be
+obtained from University of Helsinki.
diff -r 25735d7e8a0c -r a13492ac90b0 textproc/hfstospell/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/hfstospell/Makefile      Fri Oct 26 20:43:07 2018 +0000
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1 2018/10/26 20:43:07 bsiegert Exp $
+
+GITHUB_PROJECT=        hfst-ospell
+DISTNAME=      hfstospell-0.5.1
+CATEGORIES=    textproc
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=hfst/}
+GITHUB_RELEASE=        v${PKGVERSION_NOREV}
+
+MAINTAINER=    bsiegert%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/hfst/hfst-ospell/
+COMMENT=       HFST spell checker library and command line tool
+LICENSE=       apache-2.0
+
+GNU_CONFIGURE= yes
+USE_TOOLS+=    pkg-config
+USE_LIBTOOL=   yes
+USE_LANGUAGES= c c++14
+
+PKGCONFIG_OVERRIDE+=   hfstospell.pc.in
+
+.include "../../textproc/icu/buildlink3.mk"
+.include "../../textproc/libxml++/buildlink3.mk"
+.include "../../archivers/libarchive/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 25735d7e8a0c -r a13492ac90b0 textproc/hfstospell/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/hfstospell/PLIST Fri Oct 26 20:43:07 2018 +0000
@@ -0,0 +1,13 @@
+@comment $NetBSD: PLIST,v 1.1 2018/10/26 20:43:07 bsiegert Exp $
+bin/hfst-ospell
+bin/hfst-ospell-office
+include/ZHfstOspeller.h
+include/ZHfstOspellerXmlMetadata.h
+include/hfst-ol.h
+include/hfstol-stdafx.h
+include/ol-exceptions.h
+include/ospell.h
+lib/libhfstospell.la
+lib/pkgconfig/hfstospell.pc
+man/man1/hfst-ospell-office.1
+man/man1/hfst-ospell.1
diff -r 25735d7e8a0c -r a13492ac90b0 textproc/hfstospell/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/hfstospell/buildlink3.mk Fri Oct 26 20:43:07 2018 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: buildlink3.mk,v 1.1 2018/10/26 20:43:07 bsiegert Exp $
+
+BUILDLINK_TREE+=       hfstospell
+
+.if !defined(HFSTOSPELL_BUILDLINK3_MK)
+HFSTOSPELL_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.hfstospell+=     hfstospell>=0.5.1
+BUILDLINK_PKGSRCDIR.hfstospell?=       ../../textproc/hfstospell
+
+.include "../../textproc/icu/buildlink3.mk"
+.include "../../textproc/libxml++/buildlink3.mk"
+.include "../../archivers/libarchive/buildlink3.mk"
+.endif # HFSTOSPELL_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -hfstospell
diff -r 25735d7e8a0c -r a13492ac90b0 textproc/hfstospell/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/hfstospell/distinfo      Fri Oct 26 20:43:07 2018 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2018/10/26 20:43:07 bsiegert Exp $
+
+SHA1 (hfstospell-0.5.1.tar.gz) = 9436d3ea7905160b31e75a2d8b9272cc6723e9dd
+RMD160 (hfstospell-0.5.1.tar.gz) = 6335a09d80b5efaefb9034882d7d44f4e696d442
+SHA512 (hfstospell-0.5.1.tar.gz) = 301c9c2acfabb454069c9357db9c860e7270d3b111f469d9e691fb9126c2f031b3dbf8af6a97d6be857a97e930321e6f07736d271f92ee082364d3fe3be2a09b
+Size (hfstospell-0.5.1.tar.gz) = 452024 bytes



Home | Main Index | Thread Index | Old Index