Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Nov 2012 13:55:03 +0000 (UTC)
From:      Brendan Fabeny <bf@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r306802 - in head: . graphics/tesseract graphics/tesseract-data
Message-ID:  <201211011355.qA1Dt391005023@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bf
Date: Thu Nov  1 13:55:03 2012
New Revision: 306802
URL: http://svn.freebsd.org/changeset/ports/306802

Log:
  update to 3.02.02
  
  Feature safe:	yes

Modified:
  head/UPDATING
  head/graphics/tesseract-data/Makefile   (contents, props changed)
  head/graphics/tesseract-data/distinfo   (contents, props changed)
  head/graphics/tesseract-data/pkg-descr   (contents, props changed)
  head/graphics/tesseract/Makefile   (contents, props changed)
  head/graphics/tesseract/distinfo   (contents, props changed)
  head/graphics/tesseract/pkg-message   (contents, props changed)
  head/graphics/tesseract/pkg-plist   (contents, props changed)

Modified: head/UPDATING
==============================================================================
--- head/UPDATING	Thu Nov  1 13:43:27 2012	(r306801)
+++ head/UPDATING	Thu Nov  1 13:55:03 2012	(r306802)
@@ -5,6 +5,16 @@ they are unavoidable.
 You should get into the habit of checking this file for changes each time
 you update your ports collection, before attempting any port upgrades.
 
+20121101:
+  AFFECTS: users of graphics/tesseract
+  AUTHOR: bf@FreeBSD.org
+
+  The trained English and OSD language data that were distributed in
+  graphics/tesseract have been moved to graphics/tesseract-data.  The
+  latter port includes all available trained language data by default;
+  as before, users who desire a subset of languages may build smaller
+  packages by defining TESSERACT_LANGS during a build.
+
 20121031:
   AFFECTS: users of dns/ldns
   AUTHOR: ak@FreeBSD.org

Modified: head/graphics/tesseract-data/Makefile
==============================================================================
--- head/graphics/tesseract-data/Makefile	Thu Nov  1 13:43:27 2012	(r306801)
+++ head/graphics/tesseract-data/Makefile	Thu Nov  1 13:55:03 2012	(r306802)
@@ -6,16 +6,16 @@
 #
 
 PORTNAME=	tesseract-data
-PORTVERSION=	3.01
-PORTREVISION=	1
+PORTVERSION=	3.02
 CATEGORIES=	graphics
 MASTER_SITES=	${MASTER_SITE_GOOGLE_CODE}
 DISTFILES=	${TESSERACT_LANGS_300:O:u:S|$|.traineddata.gz|} \
-		${TESSERACT_LANGS_301:O:u:S|^|tesseract-ocr-3.01.|:S|$|.tar.gz|}
+		${TESSERACT_LANGS_301:O:u:S|^|tesseract-ocr-3.01.|:S|$|.tar.gz|} \
+		${TESSERACT_LANGS_302:O:u:S|^|tesseract-ocr-3.02.|:S|$|.tar.gz|}
 EXTRACT_ONLY=	#empty
 
 MAINTAINER=	bf@FreeBSD.org
-COMMENT=	Additional trained language data for the Tesseract OCR engine
+COMMENT=	Trained language data for the Tesseract OCR engine
 
 LICENSE=	AL2
 
@@ -24,24 +24,26 @@ PROJECTHOST=	tesseract-ocr
 
 NO_BUILD=	yes
 
-LANGS_300=	bul cat ces chi_sim chi_tra chr dan dan-frak deu deu-frak ell \
-		fin fra hun ind ita jpn kor lav lit nld nor pol por ron rus slk \
-		slv spa srp swe swe-frak tgl tur ukr vie
-
-LANGS_301=	ara heb hin slk-frak tha
+LANGS_300=	dan-frak deu-frak swe-frak
+LANGS_301=	osd slk-frak
+LANGS_302=	afr ara aze bel ben bul cat ces chi_sim chi_tra chr dan deu \
+		ell eng enm epo equ est eus fin fra frk frm glg grc heb hin \
+		hrv hun ind isl ita ita_old jpn kan kor lav lit mal mkd mlt \
+		msa nld nor pol por ron rus slk slv spa spa_old sqi srp swa \
+		swe tam tel tgl tha tur ukr vie
 
 .if make(makesum)
-TESSERACT_LANGS=	${LANGS_300} ${LANGS_301}
+TESSERACT_LANGS=	${LANGS_300} ${LANGS_301} ${LANGS_302}
 .else
-TESSERACT_LANGS ?=	${LANGS_300} ${LANGS_301}
+TESSERACT_LANGS ?=	${LANGS_300} ${LANGS_301} ${LANGS_302}
 .endif
 
-TESSERACT_LANGS_300=
-TESSERACT_LANGS_301=
-
 .for l in ${TESSERACT_LANGS}
-TESSERACT_LANGS_300+=	${LANGS_300:M${l}}
-TESSERACT_LANGS_301+=	${LANGS_301:M${l}}
+.for n in 0 1 2
+.if ${LANGS_30${n}:M${l}}
+TESSERACT_LANGS_30${n}+= ${LANGS_30${n}:M${l}}
+.endif
+.endfor
 .endfor
 
 .ifndef NOPORTDATA
@@ -61,9 +63,11 @@ do-install:
 .for l in ${TESSERACT_LANGS_300:O:u:S|$|.traineddata|}
 	@${GUNZIP_CMD} -c ${_DISTDIR}/${l}.gz > ${DATADIR}/${l}
 .endfor
-.for l in ${TESSERACT_LANGS_301:O:u}
+.for n in 1 2
+.for l in ${TESSERACT_LANGS_30${n}:O:u}
 	@${TAR} --strip-components 2 -C ${DATADIR} \
-	-xf ${_DISTDIR}/tesseract-ocr-3.01.${l}.tar.gz *.traineddata
+	-xf ${_DISTDIR}/tesseract-ocr-3.0${n}.${l}.tar.gz *.traineddata
+.endfor
 .endfor
 	@cd ${DATADIR} ; ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PORTDATA} ; \
 	${CHMOD} ${BINMODE} ${PORTDATA}

Modified: head/graphics/tesseract-data/distinfo
==============================================================================
--- head/graphics/tesseract-data/distinfo	Thu Nov  1 13:43:27 2012	(r306801)
+++ head/graphics/tesseract-data/distinfo	Thu Nov  1 13:55:03 2012	(r306802)
@@ -1,84 +1,138 @@
-SHA256 (tesseract/bul.traineddata.gz) = fc3c650568d014f2337052658e9ddd8efaff6ac74c9a90952d740eafdf400e2d
-SIZE (tesseract/bul.traineddata.gz) = 848731
-SHA256 (tesseract/cat.traineddata.gz) = dcc52db7522c67d2629117b7fde4c114ca51677f7f1efbedc12bf1e7319acde2
-SIZE (tesseract/cat.traineddata.gz) = 995008
-SHA256 (tesseract/ces.traineddata.gz) = 9848a4c137be45659e29f4aa07ccb6357fd4401307478cce0ed5f8e6686480d2
-SIZE (tesseract/ces.traineddata.gz) = 1059966
-SHA256 (tesseract/chi_sim.traineddata.gz) = 40c1cdf62106a0705807e8be5bee235a9e9efe716e22568e3885561a835d7d5b
-SIZE (tesseract/chi_sim.traineddata.gz) = 19732398
-SHA256 (tesseract/chi_tra.traineddata.gz) = 68ac2d83998b7f6e3fa26a58be8be5507e78185a16b3e106fe48a7b2667165fc
-SIZE (tesseract/chi_tra.traineddata.gz) = 27512772
-SHA256 (tesseract/chr.traineddata.gz) = a24bc34149f83ddf28f7dce43224024f9a20aca971f10e834aaf3339b9ec34ce
-SIZE (tesseract/chr.traineddata.gz) = 310053
-SHA256 (tesseract/dan.traineddata.gz) = 2104d8b1cfde6fa960e31db826a101a356c77c3efeae6e78cab5a97e62f3410c
-SIZE (tesseract/dan.traineddata.gz) = 958449
 SHA256 (tesseract/dan-frak.traineddata.gz) = ddc9f75b6104618d0682c9c98f5fed1ec52b1b0d5a54d38a20b20f0ab5d9a32b
 SIZE (tesseract/dan-frak.traineddata.gz) = 683525
-SHA256 (tesseract/deu.traineddata.gz) = 9e1845a69d5b6cf93d4fa05d5b8934e7cfaf8b088e6be9e8dac30c7859591ccc
-SIZE (tesseract/deu.traineddata.gz) = 965684
 SHA256 (tesseract/deu-frak.traineddata.gz) = 59f005f735a33039d416f699bff0bae7d42e5ab000dca6e1aae99d99f3776dc5
 SIZE (tesseract/deu-frak.traineddata.gz) = 827836
-SHA256 (tesseract/ell.traineddata.gz) = f8cb765c40733a677fa470370b935c34cfc53ba8de372b33e83ab59c7407195d
-SIZE (tesseract/ell.traineddata.gz) = 944284
-SHA256 (tesseract/fin.traineddata.gz) = 30c05d403295fb659048b5d82db0d87c9cbee5077314e2b52f6fdca9c9ec8520
-SIZE (tesseract/fin.traineddata.gz) = 959833
-SHA256 (tesseract/fra.traineddata.gz) = 1d795f1da1ee20671ffbbf4b2997b424f459861b217c9ffa7abbeb72abd760d6
-SIZE (tesseract/fra.traineddata.gz) = 933372
-SHA256 (tesseract/hun.traineddata.gz) = 7b4d80703067fc5a8bf3da80f7da699f26a665a3e5ca93004fe353a1d6e74f60
-SIZE (tesseract/hun.traineddata.gz) = 1008061
-SHA256 (tesseract/ind.traineddata.gz) = 9b2ee5ab2d33511f5fb8edbaee3d3a448cf8ab9efbf8e5c852d59481317e8218
-SIZE (tesseract/ind.traineddata.gz) = 836752
-SHA256 (tesseract/ita.traineddata.gz) = a6cbaa39fddee521090e48d6a83b6f62e77b5fe7d90ab8ce9ee4d8ada10730f5
-SIZE (tesseract/ita.traineddata.gz) = 939956
-SHA256 (tesseract/jpn.traineddata.gz) = ebbde8c607a05cdd97d492734896a24b2aa17d5b4fb00e9597a96b39c1f22aa3
-SIZE (tesseract/jpn.traineddata.gz) = 14604738
-SHA256 (tesseract/kor.traineddata.gz) = 8d4709341dbda7da9f42bb1d39c4d22d5ca767c2a30fbe36cb2ad152f092b01f
-SIZE (tesseract/kor.traineddata.gz) = 6032090
-SHA256 (tesseract/lav.traineddata.gz) = 305173b54d836dae2f22e4f488734440a83e683636c033cafe066083738ceebc
-SIZE (tesseract/lav.traineddata.gz) = 1018176
-SHA256 (tesseract/lit.traineddata.gz) = 1a04f9e952a76d430c2b9d16140f2d42f27c72a9bbd55b3e8f2b6e701ef0f399
-SIZE (tesseract/lit.traineddata.gz) = 1012936
-SHA256 (tesseract/nld.traineddata.gz) = 2826628b0ff22fc3bb5d6e9d6901a39141b805b78084e0c9ab61f12c28747831
-SIZE (tesseract/nld.traineddata.gz) = 954151
-SHA256 (tesseract/nor.traineddata.gz) = c97cbfd93f676b331296b729d5526d1accc1325474a6b6d91260d03a1c862606
-SIZE (tesseract/nor.traineddata.gz) = 951018
-SHA256 (tesseract/pol.traineddata.gz) = 708e2c59cc4e6451e90fc1ef57b83b809bc354b9e0ef3935e9f181d2a718d5ce
-SIZE (tesseract/pol.traineddata.gz) = 1060352
-SHA256 (tesseract/por.traineddata.gz) = 25df33e4f6c55749d04a5307f1143e31a71a76b7417b91a531c686bf49308b85
-SIZE (tesseract/por.traineddata.gz) = 911645
-SHA256 (tesseract/ron.traineddata.gz) = 367ccb440283e57e4e3f87cd0b97a59a07ceb920e09da8778feafe5e086a9892
-SIZE (tesseract/ron.traineddata.gz) = 929925
-SHA256 (tesseract/rus.traineddata.gz) = 8ced9431d2b1d544fbdd362c36786e3804451da06093bc45acecad84829e5f7a
-SIZE (tesseract/rus.traineddata.gz) = 848490
-SHA256 (tesseract/slk.traineddata.gz) = 037839ad756b9177f7d8f7bd3f01a3a1012094360c5c62a49abbde0a33389511
-SIZE (tesseract/slk.traineddata.gz) = 1091624
-SHA256 (tesseract/slv.traineddata.gz) = bb7318f24972abc380688c67be86d07193e0294b252b60c648720978ad4a8b04
-SIZE (tesseract/slv.traineddata.gz) = 930221
-SHA256 (tesseract/spa.traineddata.gz) = 5de0748b068f35c941e86bba622e23a376a6b084cb094007e7059714f1e030e0
-SIZE (tesseract/spa.traineddata.gz) = 910992
-SHA256 (tesseract/srp.traineddata.gz) = 542b83f62389ff8cc34746dd765345566ab368b63dcf275c223ecb52c2cb9291
-SIZE (tesseract/srp.traineddata.gz) = 977674
-SHA256 (tesseract/swe.traineddata.gz) = 25331ca1f41378a86336604476049810a0c5350417205e300cb2d11048cec2c1
-SIZE (tesseract/swe.traineddata.gz) = 959911
 SHA256 (tesseract/swe-frak.traineddata.gz) = 2cf1a0e1eb8a0e3f8477ebcde44d99a9229f2c20b2d96ecb1ca6c25db5c6fdec
 SIZE (tesseract/swe-frak.traineddata.gz) = 1503568
-SHA256 (tesseract/tgl.traineddata.gz) = d4d88e1fb31771d0b42e65291c03da3a167541df7c9682b81d833a4bd6c9e8cf
-SIZE (tesseract/tgl.traineddata.gz) = 978138
-SHA256 (tesseract/tur.traineddata.gz) = cb4e187f6c25c145252c88a576f3e3c9204c1d77e1c012172a85980c5c01088b
-SIZE (tesseract/tur.traineddata.gz) = 933401
-SHA256 (tesseract/ukr.traineddata.gz) = a54f0ce0843c863f102bfe135939200fc18702ce61ae6ebc571ab49460849365
-SIZE (tesseract/ukr.traineddata.gz) = 927741
-SHA256 (tesseract/vie.traineddata.gz) = 5f61c32daf9a7071ff0dc95415aed75276538813398e3debb3849bba70bda713
-SIZE (tesseract/vie.traineddata.gz) = 1575539
-SHA256 (tesseract/tesseract-ocr-3.01.ara.tar.gz) = bc0781e71ae688eec172500e70b603cb5277785475c466a3704e5b9e5a805934
-SIZE (tesseract/tesseract-ocr-3.01.ara.tar.gz) = 6611108
-SHA256 (tesseract/tesseract-ocr-3.01.heb.tar.gz) = d5cf025c43453bc5327b2631133b6695d85ad0f700546220fddb72929fb86fc1
-SIZE (tesseract/tesseract-ocr-3.01.heb.tar.gz) = 205379
-SHA256 (tesseract/tesseract-ocr-3.01.heb-com.tar.gz) = 20a9d53172a8dbf1a4bbd7f7e9e3a523a9435c47c751533642e8a9becc8584ff
-SIZE (tesseract/tesseract-ocr-3.01.heb-com.tar.gz) = 270977
-SHA256 (tesseract/tesseract-ocr-3.01.hin.tar.gz) = e97e5d4fcbce0edbd5d3973d603efe7072db17d20e4e5243fe58803710f2a549
-SIZE (tesseract/tesseract-ocr-3.01.hin.tar.gz) = 10104559
+SHA256 (tesseract/tesseract-ocr-3.01.osd.tar.gz) = 7861210fd0970ad30503e8c70d7841de6716bd293d8512fd8787a1a07219b7aa
+SIZE (tesseract/tesseract-ocr-3.01.osd.tar.gz) = 4320544
 SHA256 (tesseract/tesseract-ocr-3.01.slk-frak.tar.gz) = f35b8a858d509c540a5829d94e8f8800ed25db4c904661000f4c4fa528d5c156
 SIZE (tesseract/tesseract-ocr-3.01.slk-frak.tar.gz) = 292809
-SHA256 (tesseract/tesseract-ocr-3.01.tha.tar.gz) = 5f8af525ebdfa789e0741351e808858e1a613b895becb138352d51b9fbd31322
-SIZE (tesseract/tesseract-ocr-3.01.tha.tar.gz) = 3794178
+SHA256 (tesseract/tesseract-ocr-3.02.afr.tar.gz) = 371399ce6700f28d04ccfc12e421f315e356e3aa26575b27d06083c06987784d
+SIZE (tesseract/tesseract-ocr-3.02.afr.tar.gz) = 1082552
+SHA256 (tesseract/tesseract-ocr-3.02.ara.tar.gz) = 2c7be319c30e93950c121897969c1bc1eb1d6bdceb75f1184ee34a6f01d66b6a
+SIZE (tesseract/tesseract-ocr-3.02.ara.tar.gz) = 6613796
+SHA256 (tesseract/tesseract-ocr-3.02.aze.tar.gz) = 0f17a06a163d97ec23db3ab14b91b84a67aeba1e441ca5e53a8632b2110a0e79
+SIZE (tesseract/tesseract-ocr-3.02.aze.tar.gz) = 1418724
+SHA256 (tesseract/tesseract-ocr-3.02.bel.tar.gz) = e59e008c542f786f6f7bd14c6608b2c128c9297d6bede647ae357f7421f7a3e7
+SIZE (tesseract/tesseract-ocr-3.02.bel.tar.gz) = 1278018
+SHA256 (tesseract/tesseract-ocr-3.02.ben.tar.gz) = 14a87e0762dcee0cd95acfd3b370b81fd14a003d39328ed97db0b28c55d31e50
+SIZE (tesseract/tesseract-ocr-3.02.ben.tar.gz) = 6854068
+SHA256 (tesseract/tesseract-ocr-3.02.bul.tar.gz) = 1b8b4d7b12d896cf9f7e60e8e3274d3891886544253d41681dd9b32d6567e3f3
+SIZE (tesseract/tesseract-ocr-3.02.bul.tar.gz) = 1607632
+SHA256 (tesseract/tesseract-ocr-3.02.cat.tar.gz) = 894af4c718e821cdc4ae3ec65838b174ac8a003e5417a08557698e1576ac3a34
+SIZE (tesseract/tesseract-ocr-3.02.cat.tar.gz) = 1651754
+SHA256 (tesseract/tesseract-ocr-3.02.ces.tar.gz) = 843522eddcd0e2059a1c7069183b68c2459d527157bc47833a79b6ff56bb09de
+SIZE (tesseract/tesseract-ocr-3.02.ces.tar.gz) = 1045965
+SHA256 (tesseract/tesseract-ocr-3.02.chi_sim.tar.gz) = f5b196b5bea6917bcbbf15131b4c2afe94d34c2d9e21d08c0ca42dfbe5aa1095
+SIZE (tesseract/tesseract-ocr-3.02.chi_sim.tar.gz) = 17920627
+SHA256 (tesseract/tesseract-ocr-3.02.chi_tra.tar.gz) = 78742e273a9ca74a6ab5543414e04bcac90d03a317dd35edc634956beafa3d20
+SIZE (tesseract/tesseract-ocr-3.02.chi_tra.tar.gz) = 24997251
+SHA256 (tesseract/tesseract-ocr-3.02.chr.tar.gz) = 27c917ba39898d63752b2a4ecb0cd8f688772bcbbae2bf430a93d894d328a4c1
+SIZE (tesseract/tesseract-ocr-3.02.chr.tar.gz) = 322002
+SHA256 (tesseract/tesseract-ocr-3.02.dan.tar.gz) = deb93f6326aa8a4d353159201681947a808577662084d4060daea7d644e63eb9
+SIZE (tesseract/tesseract-ocr-3.02.dan.tar.gz) = 2653066
+SHA256 (tesseract/tesseract-ocr-3.02.deu.tar.gz) = d03cdd0b00d368ff49ebaf77b8758bcf2ff1b0d39331368987e622ac261443ca
+SIZE (tesseract/tesseract-ocr-3.02.deu.tar.gz) = 1825064
+SHA256 (tesseract/tesseract-ocr-3.02.ell.tar.gz) = 29745ced8fbfb4ec9abebeb99e4b385821cb5eb0ed81fb1870b93543553b8fba
+SIZE (tesseract/tesseract-ocr-3.02.ell.tar.gz) = 866284
+SHA256 (tesseract/tesseract-ocr-3.02.eng.tar.gz) = c110029560e7f6d41cb852ca23b66899daa4456d9afeeae9d062204bd271bdf8
+SIZE (tesseract/tesseract-ocr-3.02.eng.tar.gz) = 12641221
+SHA256 (tesseract/tesseract-ocr-3.02.enm.tar.gz) = 19c9bd89c823451655e3f265b7fcd06727cd36ddec01b8fad9900159b688a1e3
+SIZE (tesseract/tesseract-ocr-3.02.enm.tar.gz) = 624909
+SHA256 (tesseract/tesseract-ocr-3.02.epo.tar.gz) = 22ae681c34ee7aa825994115f927c2e1f8ec1a98c97c01218b98d2549af22252
+SIZE (tesseract/tesseract-ocr-3.02.epo.tar.gz) = 1249158
+SHA256 (tesseract/tesseract-ocr-3.02.equ.tar.gz) = 2010e724686171ef2eb3388df00d8d89ba7e50cb2298b0368b847fffb95d804e
+SIZE (tesseract/tesseract-ocr-3.02.equ.tar.gz) = 827909
+SHA256 (tesseract/tesseract-ocr-3.02.est.tar.gz) = d5d6b9d4b567a10e2f63cafd2f60bf5b0c994e415470becafd729b20349e2e80
+SIZE (tesseract/tesseract-ocr-3.02.est.tar.gz) = 1881719
+SHA256 (tesseract/tesseract-ocr-3.02.eus.tar.gz) = 78359d57896623cf8211e17604a9dfa574e2253c9157035f439c5fbe06cd5019
+SIZE (tesseract/tesseract-ocr-3.02.eus.tar.gz) = 1639091
+SHA256 (tesseract/tesseract-ocr-3.02.fin.tar.gz) = e02ff1798960d3af15c0dafafac0de954442cfb13f4eff45c3263c2ff6e59026
+SIZE (tesseract/tesseract-ocr-3.02.fin.tar.gz) = 986093
+SHA256 (tesseract/tesseract-ocr-3.02.fra.tar.gz) = 74592f5f2ab73a6668934922753be0505fc4333ee790543949f8b70f03eab101
+SIZE (tesseract/tesseract-ocr-3.02.fra.tar.gz) = 6474735
+SHA256 (tesseract/tesseract-ocr-3.02.frk.tar.gz) = a9f4219d6b2ef4ed8b76c86be99ae3c9190509df72ba6f0217a77f7205ec52f8
+SIZE (tesseract/tesseract-ocr-3.02.frk.tar.gz) = 5915892
+SHA256 (tesseract/tesseract-ocr-3.02.frm.tar.gz) = f32f774d88e7936f16ff41b832cecfbd71f82c9bf7584330d750da941c07ca79
+SIZE (tesseract/tesseract-ocr-3.02.frm.tar.gz) = 5179468
+SHA256 (tesseract/tesseract-ocr-3.02.glg.tar.gz) = 82ffa27c4de17545fa9d46e0fcd5690b1b59bcce9e93f71c0a41d19afbe869ee
+SIZE (tesseract/tesseract-ocr-3.02.glg.tar.gz) = 1668470
+SHA256 (tesseract/tesseract-ocr-3.02.grc.tar.gz) = 8e3c77049c06f506eb9d48c9bbacffba474839498be720bbcea84a85ba9ee77e
+SIZE (tesseract/tesseract-ocr-3.02.grc.tar.gz) = 3481026
+SHA256 (tesseract/tesseract-ocr-3.02.heb.tar.gz) = da47b0cfe241775c9b36339efda6339d59e146fa6143c65a2253eb9f67164811
+SIZE (tesseract/tesseract-ocr-3.02.heb.tar.gz) = 1062155
+SHA256 (tesseract/tesseract-ocr-3.02.hin.tar.gz) = 91f91da5adc73ee71150865d6598df8a50424350480df2753ca9035320b3c78d
+SIZE (tesseract/tesseract-ocr-3.02.hin.tar.gz) = 10117234
+SHA256 (tesseract/tesseract-ocr-3.02.hrv.tar.gz) = e20575f5b0ec73ff7f3197c112a8dcc24303b64016910399d9127bda42e7d866
+SIZE (tesseract/tesseract-ocr-3.02.hrv.tar.gz) = 1917626
+SHA256 (tesseract/tesseract-ocr-3.02.hun.tar.gz) = edf5cc42b516b2a18681955167d1964dfc7ff8cda642408ebda91b3c4656f9f1
+SIZE (tesseract/tesseract-ocr-3.02.hun.tar.gz) = 3132378
+SHA256 (tesseract/tesseract-ocr-3.02.ind.tar.gz) = 337ba4400a798c60dee16070071337c96fc67bcb4e2cc1b4676dcbc340fbbcd7
+SIZE (tesseract/tesseract-ocr-3.02.ind.tar.gz) = 1872259
+SHA256 (tesseract/tesseract-ocr-3.02.isl.tar.gz) = 6b226366d8d2d87f859d4099e8b715e3ec3890f9317198e7b8c80fba001055f8
+SIZE (tesseract/tesseract-ocr-3.02.isl.tar.gz) = 1632509
+SHA256 (tesseract/tesseract-ocr-3.02.ita.tar.gz) = 26453b302c108e08f594c7a19597382314529f648e141805417f9af1e4c99ac2
+SIZE (tesseract/tesseract-ocr-3.02.ita.tar.gz) = 7173232
+SHA256 (tesseract/tesseract-ocr-3.02.ita_old.tar.gz) = caf591be6d4eda9e7627397c3c520d58115c660002ecace680749504348ba104
+SIZE (tesseract/tesseract-ocr-3.02.ita_old.tar.gz) = 3458741
+SHA256 (tesseract/tesseract-ocr-3.02.jpn.tar.gz) = 09bf447a29e990c065024b3b720fd70f08d596a7be534312fc9e47d0aabf681f
+SIZE (tesseract/tesseract-ocr-3.02.jpn.tar.gz) = 13691665
+SHA256 (tesseract/tesseract-ocr-3.02.kan.tar.gz) = 15851cc22058c08cad9ec6058113f76966409061f21f5cde8c9cc1d214298c22
+SIZE (tesseract/tesseract-ocr-3.02.kan.tar.gz) = 4445839
+SHA256 (tesseract/tesseract-ocr-3.02.kor.tar.gz) = 7c85c4107a781d90d6d4adb001f2189b113f9db6942618b4bc47f4cc80cd126a
+SIZE (tesseract/tesseract-ocr-3.02.kor.tar.gz) = 5419147
+SHA256 (tesseract/tesseract-ocr-3.02.lav.tar.gz) = e6a190ee1edf0a58948a9d7b01569fd8a4c05bc678da3a40ad884c0849958c36
+SIZE (tesseract/tesseract-ocr-3.02.lav.tar.gz) = 1826809
+SHA256 (tesseract/tesseract-ocr-3.02.lit.tar.gz) = 350891a182076df2e8067da04b3b2127a77e48782d9905e8339db4f1d6c7a729
+SIZE (tesseract/tesseract-ocr-3.02.lit.tar.gz) = 1762787
+SHA256 (tesseract/tesseract-ocr-3.02.mal.tar.gz) = 72b3b23979ae4a6b63518964bf239beae8bb6c02f35a2695f47262178b3fef34
+SIZE (tesseract/tesseract-ocr-3.02.mal.tar.gz) = 6048861
+SHA256 (tesseract/tesseract-ocr-3.02.mkd.tar.gz) = ea489277e7a588a1b7566a21cbbd647786f16659cae087a4705d4fdabd823ee6
+SIZE (tesseract/tesseract-ocr-3.02.mkd.tar.gz) = 1166336
+SHA256 (tesseract/tesseract-ocr-3.02.mlt.tar.gz) = ba99e8bfc753a274bbea38ef44f5abf81e5f12d09f9d12d267436961270ef2de
+SIZE (tesseract/tesseract-ocr-3.02.mlt.tar.gz) = 1454216
+SHA256 (tesseract/tesseract-ocr-3.02.msa.tar.gz) = f34e4950ad9079f92965a234253cc16f92deb66f1ce4e9c9a885ad2695c2d136
+SIZE (tesseract/tesseract-ocr-3.02.msa.tar.gz) = 1664381
+SHA256 (tesseract/tesseract-ocr-3.02.nld.tar.gz) = 5e2e53499a05282968e5a9699aad66ae52a5abf06ae828e2f4cf2c1f6e674a98
+SIZE (tesseract/tesseract-ocr-3.02.nld.tar.gz) = 1139701
+SHA256 (tesseract/tesseract-ocr-3.02.nor.tar.gz) = 6b5c42444595a81b5f6fea859d97999895917bcc2f85a505488ea5c2f4efa01a
+SIZE (tesseract/tesseract-ocr-3.02.nor.tar.gz) = 2184462
+SHA256 (tesseract/tesseract-ocr-3.02.pol.tar.gz) = 62999058bfb609d95d53bd519c6de99620d025b3bfbc54d8679a87b10474ccbb
+SIZE (tesseract/tesseract-ocr-3.02.pol.tar.gz) = 7067117
+SHA256 (tesseract/tesseract-ocr-3.02.por.tar.gz) = f9b126323757c62da23aab163e2ce5257d137e86be7c37dea13bb0585e1ace3f
+SIZE (tesseract/tesseract-ocr-3.02.por.tar.gz) = 920087
+SHA256 (tesseract/tesseract-ocr-3.02.ron.tar.gz) = d7e6454c9cc80c84a654f94283fc06b2df33c5c7fd2d3bff269c3cbdeb0b39e7
+SIZE (tesseract/tesseract-ocr-3.02.ron.tar.gz) = 925855
+SHA256 (tesseract/tesseract-ocr-3.02.rus.tar.gz) = 091cda49489d15f33916263fc78fbf8dcd4e6547012dc7e1a8496a38ab192315
+SIZE (tesseract/tesseract-ocr-3.02.rus.tar.gz) = 9185294
+SHA256 (tesseract/tesseract-ocr-3.02.slk.tar.gz) = cbd5a88e2188ef39ef438c9859dbd7a9b9e2a99c23a823ec310f7f84a012cc82
+SIZE (tesseract/tesseract-ocr-3.02.slk.tar.gz) = 2486120
+SHA256 (tesseract/tesseract-ocr-3.02.slv.tar.gz) = b901507d2901c882f98f6ef5db07dbf74636fba6a1f616c5f094954106791667
+SIZE (tesseract/tesseract-ocr-3.02.slv.tar.gz) = 1610823
+SHA256 (tesseract/tesseract-ocr-3.02.spa.tar.gz) = f40cc264d037b0c71ecb4a8bb6def8b3ec04b647d8da7fd44d0daa558bfa31b1
+SIZE (tesseract/tesseract-ocr-3.02.spa.tar.gz) = 9843970
+SHA256 (tesseract/tesseract-ocr-3.02.spa_old.tar.gz) = 2b980c0eda1572423dd56260b32d748288028fdd45266311c4ab448fcbce5814
+SIZE (tesseract/tesseract-ocr-3.02.spa_old.tar.gz) = 5686163
+SHA256 (tesseract/tesseract-ocr-3.02.sqi.tar.gz) = 99bfcda3e0c471f63b36cd0db7dea596e59a2219c9275c3ba51e59973555c101
+SIZE (tesseract/tesseract-ocr-3.02.sqi.tar.gz) = 1658111
+SHA256 (tesseract/tesseract-ocr-3.02.srp.tar.gz) = b1eeeb2958d0a4e2ba16fb55a98ca4ca8e69fee8b0be8162ff599ba19d0b2404
+SIZE (tesseract/tesseract-ocr-3.02.srp.tar.gz) = 1770663
+SHA256 (tesseract/tesseract-ocr-3.02.swa.tar.gz) = 2681e59f2a9333259a2de42f3deed46aa7dd84b638e6927f40db0409adff143b
+SIZE (tesseract/tesseract-ocr-3.02.swa.tar.gz) = 763404
+SHA256 (tesseract/tesseract-ocr-3.02.swe.tar.gz) = ada287d7b64183df906215fe4ca86c3b6fe30dc5121e9a83113c3265ca7fc5ae
+SIZE (tesseract/tesseract-ocr-3.02.swe.tar.gz) = 2444131
+SHA256 (tesseract/tesseract-ocr-3.02.tam.tar.gz) = 75f73362421a23eb955212f7aa19c9a3efdc80a4c6761445869148bfd2a6dc62
+SIZE (tesseract/tesseract-ocr-3.02.tam.tar.gz) = 3549042
+SHA256 (tesseract/tesseract-ocr-3.02.tel.tar.gz) = f36af3d5ca9f8ff6e606485fe5db835f96b42e7d2380ac5d61af6b41827834fd
+SIZE (tesseract/tesseract-ocr-3.02.tel.tar.gz) = 5866272
+SHA256 (tesseract/tesseract-ocr-3.02.tgl.tar.gz) = 5c515310df83c9b40e557027e49de6df70e33a9bbabeaf1301ca9e8c13558948
+SIZE (tesseract/tesseract-ocr-3.02.tgl.tar.gz) = 1498530
+SHA256 (tesseract/tesseract-ocr-3.02.tha.tar.gz) = 7a98e25e0c61dda48cbdb241f0f53c3dfaa7ef574b81799ab2ddac50da6db4fb
+SIZE (tesseract/tesseract-ocr-3.02.tha.tar.gz) = 3872875
+SHA256 (tesseract/tesseract-ocr-3.02.tur.tar.gz) = fe4657ca3455585a06eb3d02b4a0472fda8ca06efe587be75e175662dc6329d7
+SIZE (tesseract/tesseract-ocr-3.02.tur.tar.gz) = 3543917
+SHA256 (tesseract/tesseract-ocr-3.02.ukr.tar.gz) = 7862b10c1ff7e02b41c7a50eec7fccd2c30b8162d965fa1ae00510c6d1210762
+SIZE (tesseract/tesseract-ocr-3.02.ukr.tar.gz) = 946344
+SHA256 (tesseract/tesseract-ocr-3.02.vie.tar.gz) = a113254882eac70168aec00544805e7c9cec20527217b98349ed48f6e2d2611e
+SIZE (tesseract/tesseract-ocr-3.02.vie.tar.gz) = 2207972

Modified: head/graphics/tesseract-data/pkg-descr
==============================================================================
--- head/graphics/tesseract-data/pkg-descr	Thu Nov  1 13:43:27 2012	(r306801)
+++ head/graphics/tesseract-data/pkg-descr	Thu Nov  1 13:55:03 2012	(r306802)
@@ -1,5 +1,4 @@
-This port furnishes various non-English
-trained language data intended for use with
-the Tesseract OCR engine.
+This port furnishes various trained language data intended
+for use with the Tesseract OCR engine.
 
 WWW: http://code.google.com/p/tesseract-ocr/

Modified: head/graphics/tesseract/Makefile
==============================================================================
--- head/graphics/tesseract/Makefile	Thu Nov  1 13:43:27 2012	(r306801)
+++ head/graphics/tesseract/Makefile	Thu Nov  1 13:55:03 2012	(r306802)
@@ -6,80 +6,69 @@
 #
 
 PORTNAME=	tesseract
-PORTVERSION=	3.01
-PORTREVISION=	3
+PORTVERSION=	3.02.02
 CATEGORIES=	graphics
 MASTER_SITES=	${MASTER_SITE_GOOGLE_CODE}
-.if !defined(NOPORTDATA) || make(makesum)
-DISTFILES=	${DISTNAME}${EXTRACT_SUFX} \
-		tesseract-ocr-3.01.eng.tar.gz tesseract-ocr-3.01.osd.tar.gz
-EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
-.endif
+DISTFILES=	tesseract-ocr-${PORTVERSION}${EXTRACT_SUFX}
 
 MAINTAINER=	bf@FreeBSD.org
 COMMENT=	Commercial quality open source OCR engine
 
 LICENSE=	AL2
 
-LIB_DEPENDS=	lept.2:${PORTSDIR}/graphics/leptonica
+LIB_DEPENDS=	lept:${PORTSDIR}/graphics/leptonica
 
 DIST_SUBDIR=	${PORTNAME}
 PROJECTHOST=	tesseract-ocr
+WRKSRC= 	${WRKDIR}/tesseract-ocr
 
-USE_AUTOTOOLS=	automake autoconf:env
+GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 
-CONFIGURE_ENV=	LIBLEPT_HEADERSDIR="${LOCALBASE}/include/leptonica"
+CONFIGURE_ENV=	LIBLEPT_HEADERSDIR="${LOCALBASE}/include/leptonica" \
+		LIBS="${PTHREAD_LIBS}"
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-MAN1=	cntraining.1 combine_tessdata.1 mftraining.1 tesseract.1 \
-	unicharset_extractor.1 wordlist2dawg.1
-MAN5=	unicharambigs.5 unicharset.5
-
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
 
-.if defined(USE_GCC) || !empty(CC:M*gcc4*)
-CXXFLAGS+=	-fpermissive
+.ifndef NOPORTDATA
+DATADIR=        ${PREFIX}/share/tessdata
+MAN1=		ambiguous_words.1 cntraining.1 combine_tessdata.1 dawg2wordlist.1 \
+		mftraining.1 shapeclustering.1 tesseract.1 unicharset_extractor.1 \
+		wordlist2dawg.1
+MAN5=		unicharambigs.5 unicharset.5
+PORTDATA=	*
 .endif
 
-.ifndef NOPORTDATA
-DATADIR=	${PREFIX}/share/tessdata
-PORTDATA=	eng.traineddata osd.traineddata
+.if ${PORT_OPTIONS:MDOCS}
+PORTDOCS=	AUTHORS ChangeLog README ReleaseNotes html
 .endif
 
-.ifndef NOPORTDOCS
-PORTDOCS=	AUTHORS ChangeLog README ReleaseNotes
+.if ${PORT_OPTIONS:MDOCS} || make(makesum)
+DISTFILES+=	tesseract-ocr-${PORTVERSION}-doc-html${EXTRACT_SUFX}
 .endif
 
-.ifndef NOPORTEXAMPLES
+.if ${PORT_OPTIONS:MEXAMPLES}
 PORTEXAMPLES=	eurotext.tif phototest.tif
 .endif
 
-AUTOTOOLSFILES=	aclocal.m4
-
 post-patch:
-	@${REINPLACE_CMD} -e 's|1.11.1|%%AUTOMAKE_APIVER%%|g' \
-			  -e 's|2.65|%%AUTOCONF_VERSION%%|g' \
-			  ${WRKSRC}/aclocal.m4
-	@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|'\
-		${WRKSRC}/configure
-	@${REINPLACE_CMD} -e '1s|.*|/*|' ${WRKSRC}/ccutil/strngs.h
+	@${REINPLACE_CMD} -e 's|-O3 -DNDEBUG||' ${WRKSRC}/configure
+	@${REINPLACE_CMD} -e \
+	's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' \
+	${WRKSRC}/Makefile.in
+.ifdef NOPORTDATA
+	@${FIND} ${WRKSRC} -type f -name 'Makefile.in' -print0 | ${XARGS} -0 \
+	${REINPLACE_CMD} -e '\|^install-am:|,+1s|install-data-am||'
+.endif
 
 post-install:
-.ifndef NOPORTDATA
-	@${MKDIR} ${DATADIR}
-.for f in ${PORTDATA:R}
-	@${TAR} --strip-components 2 -C ${DATADIR} \
-	-xf ${_DISTDIR}/tesseract-ocr-3.01.${f}.tar.gz *.traineddata
-.endfor
-	@cd ${DATADIR}; ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PORTDATA}; \
-	${CHMOD} ${BINMODE} ${PORTDATA}
-.endif
-.ifndef NOPORTDOCS
+.if ${PORT_OPTIONS:MDOCS}
 	@${MKDIR} ${DOCSDIR}
-	@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
+	@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS:Nhtml} ${DOCSDIR}
+	@cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${DOCSDIR}
 .endif
-.ifndef NOPORTEXAMPLES
+.if ${PORT_OPTIONS:MEXAMPLES}
 	@${MKDIR} ${EXAMPLESDIR}
 	@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR}
 .endif
@@ -87,4 +76,4 @@ post-install:
 	@${CAT} ${PKGMESSAGE}
 	@${ECHO_MSG} ""
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>

Modified: head/graphics/tesseract/distinfo
==============================================================================
--- head/graphics/tesseract/distinfo	Thu Nov  1 13:43:27 2012	(r306801)
+++ head/graphics/tesseract/distinfo	Thu Nov  1 13:55:03 2012	(r306802)
@@ -1,6 +1,4 @@
-SHA256 (tesseract/tesseract-3.01.tar.gz) = c24b0bd278291bc93ab242f93841c1d8743689c943bd804afbc5b898dc0a1c9b
-SIZE (tesseract/tesseract-3.01.tar.gz) = 3287629
-SHA256 (tesseract/tesseract-ocr-3.01.eng.tar.gz) = 89dceb9910dcfc21296645b289834269f9dd5ebeb819fe6b8d2f7fcbafd8c8b1
-SIZE (tesseract/tesseract-ocr-3.01.eng.tar.gz) = 4306720
-SHA256 (tesseract/tesseract-ocr-3.01.osd.tar.gz) = 7861210fd0970ad30503e8c70d7841de6716bd293d8512fd8787a1a07219b7aa
-SIZE (tesseract/tesseract-ocr-3.01.osd.tar.gz) = 4320544
+SHA256 (tesseract/tesseract-ocr-3.02.02.tar.gz) = c15cd55325b1ecbc9d6e7a732f44ff790d3bd1131bcbf99e70fb7edd644dcc44
+SIZE (tesseract/tesseract-ocr-3.02.02.tar.gz) = 3750747
+SHA256 (tesseract/tesseract-ocr-3.02.02-doc-html.tar.gz) = 553c77079ad8bb4ad70ebb669c47c6a461b51bcd0a13a2ac89ceabe0a09de798
+SIZE (tesseract/tesseract-ocr-3.02.02-doc-html.tar.gz) = 11305421

Modified: head/graphics/tesseract/pkg-message
==============================================================================
--- head/graphics/tesseract/pkg-message	Thu Nov  1 13:43:27 2012	(r306801)
+++ head/graphics/tesseract/pkg-message	Thu Nov  1 13:55:03 2012	(r306802)
@@ -1,2 +1,2 @@
-Additional trained language data are available in the
+Trained language data are available in the
 graphics/tesseract-data port.

Modified: head/graphics/tesseract/pkg-plist
==============================================================================
--- head/graphics/tesseract/pkg-plist	Thu Nov  1 13:43:27 2012	(r306801)
+++ head/graphics/tesseract/pkg-plist	Thu Nov  1 13:55:03 2012	(r306802)
@@ -1,301 +1,40 @@
+bin/ambiguous_words
+bin/classifier_tester
 bin/cntraining
 bin/combine_tessdata
+bin/dawg2wordlist
 bin/mftraining
+bin/shapeclustering
 bin/tesseract
 bin/unicharset_extractor
 bin/wordlist2dawg
-include/tesseract/adaptive.h
-include/tesseract/alignedblob.h
-include/tesseract/altlist.h
-include/tesseract/ambigs.h
-include/tesseract/apitypes.h
-include/tesseract/associate.h
-include/tesseract/baseapi.h
-include/tesseract/basedir.h
-include/tesseract/baseline.h
-include/tesseract/bbgrid.h
-include/tesseract/beam_search.h
-include/tesseract/bestfirst.h
-include/tesseract/bits16.h
-include/tesseract/bitvec.h
-include/tesseract/blckerr.h
-include/tesseract/blkocc.h
-include/tesseract/blobbox.h
-include/tesseract/blobclass.h
-include/tesseract/blobs.h
-include/tesseract/blread.h
-include/tesseract/bmp_8.h
-include/tesseract/boxread.h
-include/tesseract/boxword.h
-include/tesseract/cached_file.h
-include/tesseract/callcpp.h
-include/tesseract/ccstruct.h
-include/tesseract/ccutil.h
-include/tesseract/char_altlist.h
-include/tesseract/char_bigrams.h
-include/tesseract/char_samp.h
-include/tesseract/char_samp_enum.h
-include/tesseract/char_samp_set.h
-include/tesseract/char_set.h
-include/tesseract/chartoname.h
-include/tesseract/chop.h
-include/tesseract/chopper.h
-include/tesseract/classifier_base.h
-include/tesseract/classifier_factory.h
-include/tesseract/classify.h
-include/tesseract/closed.h
-include/tesseract/clst.h
-include/tesseract/cluster.h
-include/tesseract/clusttool.h
-include/tesseract/colfind.h
-include/tesseract/colpartition.h
-include/tesseract/colpartitiongrid.h
-include/tesseract/colpartitionset.h
-include/tesseract/commontraining.h
-include/tesseract/con_comp.h
-include/tesseract/const.h
-include/tesseract/control.h
-include/tesseract/conv_net_classifier.h
-include/tesseract/coutln.h
-include/tesseract/crakedge.h
-include/tesseract/cube_const.h
-include/tesseract/cube_line_object.h
-include/tesseract/cube_line_segmenter.h
-include/tesseract/cube_object.h
-include/tesseract/cube_reco_context.h
-include/tesseract/cube_search_object.h
-include/tesseract/cube_tuning_params.h
-include/tesseract/cube_utils.h
-include/tesseract/cutil.h
-include/tesseract/cutil_class.h
-include/tesseract/cutoffs.h
-include/tesseract/danerror.h
-include/tesseract/dawg.h
-include/tesseract/detlinefit.h
-include/tesseract/devanagari_processing.h
-include/tesseract/dict.h
-include/tesseract/docqual.h
-include/tesseract/dppoint.h
-include/tesseract/drawedg.h
-include/tesseract/drawfx.h
-include/tesseract/drawtord.h
-include/tesseract/edgblob.h
-include/tesseract/edgloop.h
-include/tesseract/efio.h
-include/tesseract/elst.h
-include/tesseract/elst2.h
-include/tesseract/emalloc.h
-include/tesseract/errcode.h
-include/tesseract/extern.h
-include/tesseract/extract.h
-include/tesseract/featdefs.h
-include/tesseract/feature_base.h
-include/tesseract/feature_bmp.h
-include/tesseract/feature_chebyshev.h
-include/tesseract/feature_hybrid.h
-include/tesseract/fileerr.h
-include/tesseract/findseam.h
-include/tesseract/fixspace.h
-include/tesseract/flexfx.h
-include/tesseract/float2int.h
-include/tesseract/fpchop.h
-include/tesseract/fpoint.h
-include/tesseract/freelist.h
-include/tesseract/fxdefs.h
-include/tesseract/gap_map.h
-include/tesseract/genblob.h
-include/tesseract/genericvector.h
-include/tesseract/globaloc.h
-include/tesseract/globals.h
-include/tesseract/gradechop.h
-include/tesseract/hashfn.h
-include/tesseract/helpers.h
-include/tesseract/host.h
-include/tesseract/hosthplb.h
-include/tesseract/hpddef.h
-include/tesseract/hpdsizes.h
-include/tesseract/hybrid_neural_net_classifier.h
-include/tesseract/image.h
-include/tesseract/imagefind.h
-include/tesseract/img.h
-include/tesseract/imgerrs.h
-include/tesseract/imgs.h
-include/tesseract/imgscale.h
-include/tesseract/imgtiff.h
-include/tesseract/imgunpk.h
-include/tesseract/input_file_buffer.h
-include/tesseract/intfx.h
-include/tesseract/intmatcher.h
-include/tesseract/intproto.h
-include/tesseract/ipoints.h
-include/tesseract/kdtree.h
-include/tesseract/lang_mod_edge.h
-include/tesseract/lang_model.h
-include/tesseract/language_model.h
-include/tesseract/linefind.h
-include/tesseract/linlsq.h
-include/tesseract/listio.h
-include/tesseract/lsterr.h
-include/tesseract/makechop.h
-include/tesseract/makerow.h
-include/tesseract/matchdefs.h
-include/tesseract/matchtab.h
-include/tesseract/matrix.h
-include/tesseract/measure.h
-include/tesseract/memblk.h
-include/tesseract/memry.h
-include/tesseract/memryerr.h
-include/tesseract/mergenf.h
-include/tesseract/mf.h
-include/tesseract/mfcpch.h
-include/tesseract/mfdefs.h
-include/tesseract/mfoutline.h
-include/tesseract/mfx.h
-include/tesseract/mod128.h
-include/tesseract/ndminx.h
-include/tesseract/neural_net.h
-include/tesseract/neuron.h
-include/tesseract/normalis.h
-include/tesseract/normfeat.h
-include/tesseract/normmatch.h
-include/tesseract/notdll.h
-include/tesseract/nwmain.h
-include/tesseract/ocrblock.h
-include/tesseract/ocrclass.h
-include/tesseract/ocrfeatures.h
-include/tesseract/ocrrow.h
-include/tesseract/oldbasel.h
-include/tesseract/oldheap.h
-include/tesseract/oldlist.h
-include/tesseract/olutil.h
-include/tesseract/osdetect.h
-include/tesseract/otsuthr.h
-include/tesseract/outfeat.h
-include/tesseract/outlines.h
-include/tesseract/output.h
-include/tesseract/pageiterator.h
-include/tesseract/pageres.h
-include/tesseract/params.h
-include/tesseract/paramsd.h
-include/tesseract/pdblock.h
-include/tesseract/permute.h
-include/tesseract/pgedit.h
-include/tesseract/picofeat.h
-include/tesseract/pieces.h
-include/tesseract/pithsync.h
-include/tesseract/pitsync1.h
-include/tesseract/platform.h
-include/tesseract/plotedges.h
-include/tesseract/plotseg.h
-include/tesseract/points.h
-include/tesseract/polyaprx.h
-include/tesseract/polyblk.h
-include/tesseract/protos.h
-include/tesseract/publictypes.h
-include/tesseract/qrsequence.h
-include/tesseract/quadlsq.h
-include/tesseract/quadratc.h
-include/tesseract/quspline.h
-include/tesseract/ratngs.h
-include/tesseract/rect.h
-include/tesseract/rejctmap.h
-include/tesseract/reject.h
-include/tesseract/render.h
-include/tesseract/resultiterator.h
-include/tesseract/scaleimg.h
-include/tesseract/scanedg.h
-include/tesseract/scrollview.h
-include/tesseract/seam.h
-include/tesseract/search_column.h
-include/tesseract/search_node.h
-include/tesseract/search_object.h
-include/tesseract/secname.h
-include/tesseract/serialis.h
-include/tesseract/sortflts.h
-include/tesseract/sorthelper.h
-include/tesseract/speckle.h
-include/tesseract/split.h
-include/tesseract/states.h
-include/tesseract/statistc.h
-include/tesseract/stderr.h
-include/tesseract/stepblob.h
-include/tesseract/stopper.h
-include/tesseract/string_32.h
-include/tesseract/strngs.h
-include/tesseract/strokewidth.h
-include/tesseract/structures.h
-include/tesseract/svmnode.h
-include/tesseract/svshowim.h
-include/tesseract/svutil.h
-include/tesseract/tabfind.h
-include/tesseract/tablefind.h
-include/tesseract/tablerecog.h
-include/tesseract/tabvector.h
-include/tesseract/tally.h
-include/tesseract/tess_lang_mod_edge.h
-include/tesseract/tess_lang_model.h
-include/tesseract/tessarray.h
-include/tesseract/tessbox.h
-include/tesseract/tesscallback.h
-include/tesseract/tessdatamanager.h
-include/tesseract/tessedit.h
-include/tesseract/tesseract_cube_combiner.h
-include/tesseract/tesseractclass.h
-include/tesseract/tesseractmain.h
-include/tesseract/tessopt.h
-include/tesseract/tessvars.h
-include/tesseract/textord.h
-include/tesseract/tfacep.h
-include/tesseract/tfacepp.h
-include/tesseract/thresholder.h
-include/tesseract/topitch.h
-include/tesseract/tordmain.h
-include/tesseract/tovars.h
-include/tesseract/tprintf.h
-include/tesseract/trie.h
-include/tesseract/tuning_params.h
-include/tesseract/underlin.h
-include/tesseract/unichar.h
-include/tesseract/unicharmap.h
-include/tesseract/unicharset.h
-include/tesseract/unicity_table.h
-include/tesseract/vecfuncs.h
-include/tesseract/werd.h
-include/tesseract/werdit.h
-include/tesseract/word_altlist.h
-include/tesseract/word_list_lang_model.h
-include/tesseract/word_size_model.h
-include/tesseract/word_unigrams.h
-include/tesseract/wordclass.h
-include/tesseract/wordrec.h
-include/tesseract/wordseg.h
-include/tesseract/workingpartset.h
-include/tesseract/xform2d.h
+%%PORTDATA%%include/tesseract/apitypes.h
+%%PORTDATA%%include/tesseract/baseapi.h
+%%PORTDATA%%include/tesseract/basedir.h
+%%PORTDATA%%include/tesseract/capi.h
+%%PORTDATA%%include/tesseract/errcode.h
+%%PORTDATA%%include/tesseract/fileerr.h
+%%PORTDATA%%include/tesseract/genericvector.h
+%%PORTDATA%%include/tesseract/helpers.h
+%%PORTDATA%%include/tesseract/host.h
+%%PORTDATA%%include/tesseract/ltrresultiterator.h
+%%PORTDATA%%include/tesseract/memry.h
+%%PORTDATA%%include/tesseract/ndminx.h
+%%PORTDATA%%include/tesseract/pageiterator.h
+%%PORTDATA%%include/tesseract/params.h
+%%PORTDATA%%include/tesseract/platform.h
+%%PORTDATA%%include/tesseract/publictypes.h
+%%PORTDATA%%include/tesseract/resultiterator.h
+%%PORTDATA%%include/tesseract/serialis.h
+%%PORTDATA%%include/tesseract/strngs.h
+%%PORTDATA%%include/tesseract/tesscallback.h
+%%PORTDATA%%include/tesseract/thresholder.h
+%%PORTDATA%%include/tesseract/unichar.h
+%%PORTDATA%%include/tesseract/unicharmap.h
+%%PORTDATA%%include/tesseract/unicharset.h
 lib/libtesseract.a
 lib/libtesseract.la
 lib/libtesseract.so
 lib/libtesseract.so.3
-share/tessdata/configs/ambigs.train
-share/tessdata/configs/api_config
-share/tessdata/configs/box.train
-share/tessdata/configs/box.train.stderr
-share/tessdata/configs/digits
-share/tessdata/configs/hocr
-share/tessdata/configs/inter
-share/tessdata/configs/kannada
-share/tessdata/configs/linebox
-share/tessdata/configs/logfile
-share/tessdata/configs/makebox
-share/tessdata/configs/rebox
-share/tessdata/configs/strokewidth
-share/tessdata/configs/unlv
-share/tessdata/tessconfigs/batch
-share/tessdata/tessconfigs/batch.nochop
-share/tessdata/tessconfigs/matdemo
-share/tessdata/tessconfigs/msdemo
-share/tessdata/tessconfigs/nobatch
-share/tessdata/tessconfigs/segdemo
-@dirrm include/tesseract
-@dirrmtry share/tessdata/configs
-@dirrmtry share/tessdata/tessconfigs
-@dirrmtry share/tessdata
+%%PORTDATA%%libdata/pkgconfig/tesseract.pc
+%%PORTDATA%%@dirrm include/tesseract



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211011355.qA1Dt391005023>