summaryrefslogtreecommitdiff
path: root/textproc/kenlm
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/kenlm')
-rw-r--r--textproc/kenlm/Makefile35
-rw-r--r--textproc/kenlm/distinfo2
-rw-r--r--textproc/kenlm/files/patch-Jamroot10
-rw-r--r--textproc/kenlm/files/patch-jam-files-boost-build-tools.gcc.jam11
-rw-r--r--textproc/kenlm/files/patch-jam-files-sanity.jam19
-rw-r--r--textproc/kenlm/pkg-descr5
-rw-r--r--textproc/kenlm/pkg-plist7
7 files changed, 0 insertions, 89 deletions
diff --git a/textproc/kenlm/Makefile b/textproc/kenlm/Makefile
deleted file mode 100644
index 9c96a48ce52e..000000000000
--- a/textproc/kenlm/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= kenlm
-PORTVERSION= 20140830
-PORTREVISION= 17
-CATEGORIES= textproc
-MASTER_SITES= http://kheafield.com/code/
-DISTNAME= ${PORTNAME}
-
-MAINTAINER= demon@FreeBSD.org
-COMMENT= KenLM Language Model Toolkit
-
-BROKEN= unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2020-05-05
-
-BROKEN_aarch64= fails to compile: target architecture was not detected as supported by Double-Conversion
-
-BUILD_DEPENDS= bjam:devel/boost-jam \
- bash:shells/bash
-LIB_DEPENDS= libboost_thread.so:devel/boost-libs
-
-USES+= compiler:c++11-lib
-USE_LDCONFIG= yes
-WRKSRC= ${WRKDIR}/${PORTNAME}
-MAKE_ENV+= BOOST_BUILD_PATH=${WRKSRC}/jam-files/boost-build
-
-do-build:
- (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/bjam --toolset=${CHOSEN_COMPILER_TYPE} --with-boost=${LOCALBASE} ${_MAKE_JOBS})
-
-do-install:
- (cd ${WRKSRC}/bin && ${INSTALL_PROGRAM} lmplz fragment query filter build_binary dump_counts cat_compressed ${STAGEDIR}${PREFIX}/bin/)
-
-.include <bsd.port.mk>
diff --git a/textproc/kenlm/distinfo b/textproc/kenlm/distinfo
deleted file mode 100644
index 9ff4a22d6400..000000000000
--- a/textproc/kenlm/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (kenlm.tar.gz) = e9e5d985d563ade1f0ba89a8058e9bcc5c491f77efe8b48906e8de94e9c4f569
-SIZE (kenlm.tar.gz) = 849428
diff --git a/textproc/kenlm/files/patch-Jamroot b/textproc/kenlm/files/patch-Jamroot
deleted file mode 100644
index 2da5ab30c245..000000000000
--- a/textproc/kenlm/files/patch-Jamroot
+++ /dev/null
@@ -1,10 +0,0 @@
---- Jamroot.orig 2014-04-02 19:33:24.000000000 +0400
-+++ Jamroot 2014-08-31 00:34:40.000000000 +0400
-@@ -63,6 +63,6 @@
-
- install-bin-libs lm//programs util//programs kenlm ;
- install-headers headers : [ glob-tree *.hh : dist include ] : . ;
--alias install : prefix-bin prefix-lib prefix-include ;
-+alias install : prefix-bin prefix-lib ;
- explicit headers ;
- explicit install ;
diff --git a/textproc/kenlm/files/patch-jam-files-boost-build-tools.gcc.jam b/textproc/kenlm/files/patch-jam-files-boost-build-tools.gcc.jam
deleted file mode 100644
index 29608d4d6471..000000000000
--- a/textproc/kenlm/files/patch-jam-files-boost-build-tools.gcc.jam
+++ /dev/null
@@ -1,11 +0,0 @@
---- jam-files/boost-build/tools/gcc.jam.bak 2015-07-29 13:01:08.860269000 +0300
-+++ jam-files/boost-build/tools/gcc.jam 2015-07-29 13:01:45.506610000 +0300
-@@ -216,7 +216,7 @@ rule init ( version ? : command * : opti
- # right onces. Note that we do not provide a clean way to build a 32-bit
- # binary using a 64-bit compiler, but user can always pass -m32
- # manually.
-- local lib_path = $(root)/bin $(root)/lib $(root)/lib32 $(root)/lib64 ;
-+ local lib_path = $(root)/bin $(root)/lib ;
- if $(.debug-configuration)
- {
- ECHO notice: using gcc libraries :: $(condition) :: $(lib_path) ;
diff --git a/textproc/kenlm/files/patch-jam-files-sanity.jam b/textproc/kenlm/files/patch-jam-files-sanity.jam
deleted file mode 100644
index 723cecf8d8da..000000000000
--- a/textproc/kenlm/files/patch-jam-files-sanity.jam
+++ /dev/null
@@ -1,19 +0,0 @@
---- jam-files/sanity.jam.orig 2014-04-21 07:58:19.000000000 +0400
-+++ jam-files/sanity.jam 2014-08-31 00:16:40.000000000 +0400
-@@ -22,6 +22,7 @@ rule shell_or_fail ( cmd ) {
- }
- }
-
-+cxx = [ os.environ "CXX" ] ;
- cxxflags = [ os.environ "CXXFLAGS" ] ;
- cflags = [ os.environ "CFLAGS" ] ;
- ldflags = [ os.environ "LDFLAGS" ] ;
-@@ -148,7 +149,7 @@ rule boost-lib ( name macro : deps * ) {
-
- #Argument is e.g. 103600
- rule boost ( min-version ) {
-- local cmd = "bash -c \"g++ "$(I-boost-include)" -dM -x c++ -E /dev/null -include boost/version.hpp 2>/dev/null |grep '#define BOOST_'\"" ;
-+ local cmd = "bash -c \"$(cxx) "$(I-boost-include)" -dM -x c++ -E /dev/null -include boost/version.hpp 2>/dev/null |grep '#define BOOST_'\"" ;
- local boost-shell = [ SHELL "$(cmd)" : exit-status ] ;
- if $(boost-shell[2]) != 0 && $(CLEANING) = no {
- echo Failed to run "$(cmd)" ;
diff --git a/textproc/kenlm/pkg-descr b/textproc/kenlm/pkg-descr
deleted file mode 100644
index 5c0e6df3caa6..000000000000
--- a/textproc/kenlm/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-KenLM Language Model Toolkit.
-
-KenLM estimates, filters, and queries language models.
-
-WWW: https://kheafield.com/code/kenlm/
diff --git a/textproc/kenlm/pkg-plist b/textproc/kenlm/pkg-plist
deleted file mode 100644
index 92ce43cf7df5..000000000000
--- a/textproc/kenlm/pkg-plist
+++ /dev/null
@@ -1,7 +0,0 @@
-bin/build_binary
-bin/cat_compressed
-bin/dump_counts
-bin/filter
-bin/fragment
-bin/lmplz
-bin/query