From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- app-accessibility/sphinx2/Manifest | 4 +++ .../sphinx2/files/sphinx2-0.6-as-needed.patch | 32 +++++++++++++++++ app-accessibility/sphinx2/metadata.xml | 15 ++++++++ app-accessibility/sphinx2/sphinx2-0.6.ebuild | 40 ++++++++++++++++++++++ 4 files changed, 91 insertions(+) create mode 100644 app-accessibility/sphinx2/Manifest create mode 100644 app-accessibility/sphinx2/files/sphinx2-0.6-as-needed.patch create mode 100644 app-accessibility/sphinx2/metadata.xml create mode 100644 app-accessibility/sphinx2/sphinx2-0.6.ebuild (limited to 'app-accessibility/sphinx2') diff --git a/app-accessibility/sphinx2/Manifest b/app-accessibility/sphinx2/Manifest new file mode 100644 index 000000000000..6c77f2309440 --- /dev/null +++ b/app-accessibility/sphinx2/Manifest @@ -0,0 +1,4 @@ +AUX sphinx2-0.6-as-needed.patch 776 BLAKE2B 831ae9cc8e1ed018eecb03f29c6dbe349b09d2ecaa6cdcd879613d372f437629d8e352b140c934a9f42c0192f34d29ebb81a2d74eb9b61948f926d510c9410f0 SHA512 2e4e48041e7eb79acd84a384943ebfbb0be17faab404b7d05b09d95ee5313730e6bd3026443ebe01bb79edb0c3bbcee3ec0b207978a1f0a30df4e0af54c11187 +DIST sphinx2-0.6.tar.gz 6883359 BLAKE2B 7e5da2f05d2ff92fd2c21a64c76954ff00104adcb81548ccfc19da4fc4995c59a494461f4343ae3b6799526d3f3f3a3c0051a6030af4cc9873d5cd5258fe30a6 SHA512 98e66cedf8a147aee7871df85ee45f58ab76637d26163cbb30ee9554638b503f52c9b14f4f3b64bbb49bb84282e399451a0f9a8622b6e7e545889773d72ba5d4 +EBUILD sphinx2-0.6.ebuild 785 BLAKE2B f5213991ef42065c6b763e1564d5f385a7adcff2588e80c98eb1f231af322fa87cccaab7e30ddf2283b0564094055b34f6a62f1de68b6c814a533ef4d10f1070 SHA512 9ebb298a554ea320369044ae3ea8c74e7cdb3838a9e3efd5eb9ced157c8976f9d5ef326296f9a9334ca2caa0c32a598280c8052813068696fe523b28ab20d62c +MISC metadata.xml 462 BLAKE2B 2eae170bbccdd12a464c1bfef24e390e894f5449f09d70d69df8c221a55242b99863db56d7db2226d1af531be975f218b69c788c4aae348a00544b8f32836d3c SHA512 3159e075a7d959d2a6a75305692f706690f3ae54f6f114a131a4750c0ae020d4721d4a33434d3d98088f9fb3e1315ea8a25e54542752605bfb7a5600203bbe25 diff --git a/app-accessibility/sphinx2/files/sphinx2-0.6-as-needed.patch b/app-accessibility/sphinx2/files/sphinx2-0.6-as-needed.patch new file mode 100644 index 000000000000..f647ab35142c --- /dev/null +++ b/app-accessibility/sphinx2/files/sphinx2-0.6-as-needed.patch @@ -0,0 +1,32 @@ +--- a/configure.in ++++ b/configure.in +@@ -1,7 +1,7 @@ + dnl Welcome to the Sphinx-2 automated build system. + dnl try not to hurt yourself ;) + +-AC_INIT(configure.in) ++AC_INIT(configure.ac) + AM_INIT_AUTOMAKE(sphinx2,0.6) + + CFLAGS=${CFLAGS:--g -O2 -Wall} +--- a/src/libsphinx2/Makefile.am ++++ b/src/libsphinx2/Makefile.am +@@ -88,7 +88,7 @@ + word_fsg.c + + +-# libsphinx2_la_LIBADD = -lc -lm $(top_srcdir)/src/libsphinx2fe/libsphinx2fe.la ++libsphinx2_la_LIBADD = -lc -lm $(top_srcdir)/src/libsphinx2fe/libsphinx2fe.la + + # hjf@cs.brown.edu - Added for Solaris build + # LDADD = -L/usr/demo/SOUND/lib/ -laudio +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -1,5 +1,5 @@ +-SUBDIRS = libsphinx2 \ +- libsphinx2fe \ ++SUBDIRS = libsphinx2fe \ + libsphinx2ad \ ++ libsphinx2 \ + examples + diff --git a/app-accessibility/sphinx2/metadata.xml b/app-accessibility/sphinx2/metadata.xml new file mode 100644 index 000000000000..5272aff94276 --- /dev/null +++ b/app-accessibility/sphinx2/metadata.xml @@ -0,0 +1,15 @@ + + + + + accessibility@gentoo.org + Gentoo Accessibility Project + + + sound@gentoo.org + Gentoo Sound project + + + cmusphinx + + diff --git a/app-accessibility/sphinx2/sphinx2-0.6.ebuild b/app-accessibility/sphinx2/sphinx2-0.6.ebuild new file mode 100644 index 000000000000..0ca32c0a2170 --- /dev/null +++ b/app-accessibility/sphinx2/sphinx2-0.6.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +MY_P=${P/_/} + +DESCRIPTION="CMU Speech Recognition-engine" +HOMEPAGE="http://fife.speech.cs.cmu.edu/sphinx/" +SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="static-libs" + +S=${WORKDIR}/${MY_P} +PATCHES=( "${FILESDIR}"/${P}-as-needed.patch ) + +src_prepare() { + default + mv configure.{in,ac} || die + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + HTML_DOCS=( doc/{phoneset_s2,sphinx2}.html ) + default + dodoc doc/{README.{bin,lib},SCHMM_format,filler.dict,phoneset{,-old}} + + if ! use static-libs; then + find "${D}" -name '*.la' -delete || die + fi +} -- cgit v1.2.3