svn commit: r311938 - in head/devel: . cld cld/files
Dmitry Sivachenko
demon at FreeBSD.org
Fri Feb 8 11:43:16 UTC 2013
Author: demon
Date: Fri Feb 8 11:43:14 2013
New Revision: 311938
URL: http://svnweb.freebsd.org/changeset/ports/311938
Log:
A port from the CLD (Compact Language Detector) library embedded in
Google's Chromium browser. The library detects the language from
provided UTF8 text (plain text or HTML).
https://code.google.com/p/chromium-compact-language-detector/
Added:
head/devel/cld/
head/devel/cld/Makefile (contents, props changed)
head/devel/cld/distinfo (contents, props changed)
head/devel/cld/files/
head/devel/cld/files/patch-Makefile.in (contents, props changed)
head/devel/cld/pkg-descr (contents, props changed)
head/devel/cld/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Feb 8 11:34:24 2013 (r311937)
+++ head/devel/Makefile Fri Feb 8 11:43:14 2013 (r311938)
@@ -229,6 +229,7 @@
SUBDIR += clanlib
SUBDIR += clanlib1
SUBDIR += clanlib22
+ SUBDIR += cld
SUBDIR += clewn
SUBDIR += clig
SUBDIR += clint
Added: head/devel/cld/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cld/Makefile Fri Feb 8 11:43:14 2013 (r311938)
@@ -0,0 +1,17 @@
+# Created by: Dmitry Sivachenko <demon at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= cld
+PORTVERSION= 0.1
+CATEGORIES= devel
+MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
+PROJECTHOST= chromium-compact-language-detector
+DISTNAME= compact-language-detector-${PORTVERSION}
+
+MAINTAINER= demon at FreeBSD.org
+COMMENT= Chromium compact language detector library
+
+GNU_CONFIGURE= yes
+USE_LDCONFIG= yes
+
+.include <bsd.port.mk>
Added: head/devel/cld/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cld/distinfo Fri Feb 8 11:43:14 2013 (r311938)
@@ -0,0 +1,2 @@
+SHA256 (compact-language-detector-0.1.tar.gz) = b1a3b430c0d39c8a8731d7291c30d896dd0f63c3fd093ec6ceb275bb760d1d5c
+SIZE (compact-language-detector-0.1.tar.gz) = 2498722
Added: head/devel/cld/files/patch-Makefile.in
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cld/files/patch-Makefile.in Fri Feb 8 11:43:14 2013 (r311938)
@@ -0,0 +1,11 @@
+--- Makefile.in.orig 2012-05-23 14:35:00.000000000 +0400
++++ Makefile.in 2013-02-08 15:37:27.000000000 +0400
+@@ -282,7 +282,7 @@
+
+ # autogen.sh and cleanrepo.sh are script for maintainance use. Not for distribution.
+ # dist_noinst_SCRIPTS = autogen.sh
+-pkgconfigdir = $(libdir)/pkgconfig
++pkgconfigdir = ${exec_prefix}/libdata/pkgconfig
+ pkgconfig_DATA = cld.pc
+ basic_test_SOURCES = tests/basic_test.cc
+ basic_test_CXXFLAGS = -Wall -fPIC -Isrc/ -I../src -O2 -DCLD_WINDOWS
Added: head/devel/cld/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cld/pkg-descr Fri Feb 8 11:43:14 2013 (r311938)
@@ -0,0 +1,6 @@
+A port from the CLD (Compact Language Detector) library embedded in
+Google's Chromium browser. The library detects the language from
+provided UTF8 text (plain text or HTML). It's implemented in C++,
+with very basic Python bindings.
+
+WWW: https://code.google.com/p/chromium-compact-language-detector/
Added: head/devel/cld/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cld/pkg-plist Fri Feb 8 11:43:14 2013 (r311938)
@@ -0,0 +1,28 @@
+include/cld/base/basictypes.h
+include/cld/base/build_config.h
+include/cld/base/port.h
+include/cld/base/string_util.h
+include/cld/compact_lang_det.h
+include/cld/encodings/compact_lang_det/letterscript_enum.h
+include/cld/encodings/compact_lang_det/win/cld_basictypes.h
+include/cld/encodings/compact_lang_det/win/cld_utf8statetable.h
+include/cld/encodings/proto/encodings.pb.h
+include/cld/encodings/public/encodings.h
+include/cld/ext_lang_enc.h
+include/cld/lang_enc.h
+include/cld/languages/proto/languages.pb.h
+include/cld/languages/public/languages.h
+lib/libcld.la
+lib/libcld.so
+lib/libcld.so.0
+libdata/pkgconfig/cld.pc
+ at dirrm include/cld/languages/public
+ at dirrm include/cld/languages/proto
+ at dirrm include/cld/languages
+ at dirrm include/cld/encodings/public
+ at dirrm include/cld/encodings/proto
+ at dirrm include/cld/encodings/compact_lang_det/win
+ at dirrm include/cld/encodings/compact_lang_det
+ at dirrm include/cld/encodings
+ at dirrm include/cld/base
+ at dirrm include/cld
More information about the svn-ports-head
mailing list