From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- app-accessibility/sphinxbase/Manifest | 1 + .../files/sphinxbase-0.8-automake113.patch | 25 +++++++ .../files/sphinxbase-0.8-unbundle-lapack.patch | 85 ++++++++++++++++++++++ app-accessibility/sphinxbase/metadata.xml | 8 ++ app-accessibility/sphinxbase/sphinxbase-0.8.ebuild | 79 ++++++++++++++++++++ 5 files changed, 198 insertions(+) create mode 100644 app-accessibility/sphinxbase/Manifest create mode 100644 app-accessibility/sphinxbase/files/sphinxbase-0.8-automake113.patch create mode 100644 app-accessibility/sphinxbase/files/sphinxbase-0.8-unbundle-lapack.patch create mode 100644 app-accessibility/sphinxbase/metadata.xml create mode 100644 app-accessibility/sphinxbase/sphinxbase-0.8.ebuild (limited to 'app-accessibility/sphinxbase') diff --git a/app-accessibility/sphinxbase/Manifest b/app-accessibility/sphinxbase/Manifest new file mode 100644 index 000000000000..406639fcff01 --- /dev/null +++ b/app-accessibility/sphinxbase/Manifest @@ -0,0 +1 @@ +DIST sphinxbase-0.8.tar.gz 3313197 SHA256 55708944872bab1015b8ae07b379bf463764f469163a8fd114cbb16c5e486ca8 SHA512 fdb13c07e591e868c395d5f8209ec389fb9d5a93d99104a00cb82382e84d320091ae7e74d53225706331d4959ab5e248fa622582a148bfdb6ab5c38470d1963c WHIRLPOOL df050d547a263954574902ce08d966a184d428ea5ec700128fde2fee5d78f948a5920e2b92540f052e4a1d6ac208b388350d7ad66c0548ee945f99ceab0f0a0c diff --git a/app-accessibility/sphinxbase/files/sphinxbase-0.8-automake113.patch b/app-accessibility/sphinxbase/files/sphinxbase-0.8-automake113.patch new file mode 100644 index 000000000000..11031918ee68 --- /dev/null +++ b/app-accessibility/sphinxbase/files/sphinxbase-0.8-automake113.patch @@ -0,0 +1,25 @@ +diff -Naur sphinxbase-0.8/test/regression/Makefile.am sphinxbase-0.8.new/test/regression/Makefile.am +--- sphinxbase-0.8/test/regression/Makefile.am 2012-12-05 06:05:39.000000000 -0800 ++++ sphinxbase-0.8.new/test/regression/Makefile.am 2013-10-08 13:05:15.498853962 -0700 +@@ -33,9 +33,19 @@ + + # Disable sphinx_fe tests for now if fixed-point due to imprecision + if FIXED_POINT +-TESTS = $(srcdir)/test-cepview.sh $(srcdir)/test-sphinx_pitch.sh ++TESTS = test-cepview.sh test-sphinx_pitch.sh + else +-TESTS = $(srcdir)/test-*.sh ++TESTS = \ ++ test-cepview.sh \ ++ test-sphinx_fe-ctl.sh \ ++ test-sphinx_fe-dct.sh \ ++ test-sphinx_fe-dither-seed.sh \ ++ test-sphinx_fe-logspec2cep.sh \ ++ test-sphinx_fe-logspec.sh \ ++ test-sphinx_fe.sh \ ++ test-sphinx_fe-smoothspec.sh \ ++ test-sphinx_jsgf2fsg.sh \ ++ test-sphinx_pitch.sh + endif + + EXTRA_DIST += $(TESTS) diff --git a/app-accessibility/sphinxbase/files/sphinxbase-0.8-unbundle-lapack.patch b/app-accessibility/sphinxbase/files/sphinxbase-0.8-unbundle-lapack.patch new file mode 100644 index 000000000000..70beae05de7e --- /dev/null +++ b/app-accessibility/sphinxbase/files/sphinxbase-0.8-unbundle-lapack.patch @@ -0,0 +1,85 @@ + configure.in | 40 +++++++++++++++++++++------------------- + src/libsphinxbase/Makefile.am | 1 + + 2 files changed, 22 insertions(+), 19 deletions(-) + +diff --git a/configure.in b/configure.in +index e10629c..b5d6ea9 100644 +--- a/configure.in ++++ b/configure.in +@@ -62,13 +62,15 @@ if test x$withval = xno; then + use_lapack=false + fi + ]) +-if test x$use_lapack = xtrue; then +- AC_CHECK_LIB(lapack, sgesv_,,use_internal_lapack=true) +- if test x$use_internal_lapack != xtrue; then +- AC_CHECK_LIB(blas, sgemm_,,use_internal_lapack=true) +- fi ++AS_IF([test "x$with_lapack" = "xyes"], [ ++ PKG_CHECK_MODULES([LAPACK], [lapack],, ++ AC_CHECK_LIB(lapack, sgesv_,,use_internal_lapack=true)) ++ AS_IF([test "x$use_internal_lapack" != "xtrue"], [ ++ PKG_CHECK_MODULES([BLAS], [blas],, ++ AC_CHECK_LIB(blas, sgemm_,,use_internal_lapack=true)) ++ ]) + AC_DEFINE(WITH_LAPACK, [], [Enable matrix algebra with LAPACK]) +-fi ++]) + AM_CONDITIONAL(LAPACK_LITE, test x$use_internal_lapack = xtrue) + AM_CONDITIONAL(USE_LAPACK, test x$use_lapack = xtrue) + +@@ -208,9 +210,15 @@ AM_PROG_LIBTOOL + dnl + dnl Check for Doxygen, and build dox if present + dnl +-AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, yes, no) ++AC_ARG_ENABLE([doc], ++ AS_HELP_STRING([--enable-doc], [Build docs using doxygen])) ++AS_IF([test "x$enable_doc" = "xyes"], [ ++ AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, yes, no) ++ AS_IF([test "x$HAVE_DOXYGEN" != "xyes"], [ ++ AC_MSG_ERROR([--enable-doc given, but doxygen not found.]); exit 1 ++ ]) ++]) + AM_CONDITIONAL(BUILD_DOXYGEN, test "x$HAVE_DOXYGEN" = "xyes") +- + dnl + dnl Check for Python, and build python module if present + dnl +@@ -260,19 +268,13 @@ fi + AM_CONDITIONAL(BUILD_CYTHON, test "x$HAVE_CYTHON" = "xyes") + + dnl +-dnl Check for pkgconfig +-dnl +-AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no) +- +-dnl + dnl Check for libsndfile + dnl +-if test "x$HAVE_PKGCONFIG" = "xyes"; then +- PKG_CHECK_MODULES(SNDFILE,sndfile,,true) +- AC_CHECK_HEADERS([sndfile.h]) +- PKG_CHECK_MODULES(SAMPLERATE,samplerate,,true) +- AC_CHECK_HEADERS([samplerate.h]) +-fi ++PKG_CHECK_MODULES(SNDFILE,sndfile,,true) ++AC_CHECK_HEADERS([sndfile.h]) ++PKG_CHECK_MODULES(SAMPLERATE,samplerate,,true) ++AC_CHECK_HEADERS([samplerate.h]) ++ + AC_SUBST(SNDFILE_LIBS) + AC_SUBST(SNDFILE_CFLAGS) + AC_SUBST(SAMPLERATE_LIBS) +diff --git a/src/libsphinxbase/Makefile.am b/src/libsphinxbase/Makefile.am +index 52ee3e1..f4efd8a 100644 +--- a/src/libsphinxbase/Makefile.am ++++ b/src/libsphinxbase/Makefile.am +@@ -8,6 +8,7 @@ libsphinxbase_la_SOURCES = + # This is API version 2, software release 1, which also supports API version 1 + libsphinxbase_la_LDFLAGS = -version-info 2:1:1 + libsphinxbase_la_LIBADD = $(LTLIBICONV) \ ++ @LAPACK_LIBS@ \ + util/libsphinxutil.la \ + fe/libsphinxfe.la \ + feat/libsphinxfeat.la \ diff --git a/app-accessibility/sphinxbase/metadata.xml b/app-accessibility/sphinxbase/metadata.xml new file mode 100644 index 000000000000..d72ef0fd2aae --- /dev/null +++ b/app-accessibility/sphinxbase/metadata.xml @@ -0,0 +1,8 @@ + + + + accessibility + + cmusphinx + + diff --git a/app-accessibility/sphinxbase/sphinxbase-0.8.ebuild b/app-accessibility/sphinxbase/sphinxbase-0.8.ebuild new file mode 100644 index 000000000000..44181ce3613e --- /dev/null +++ b/app-accessibility/sphinxbase/sphinxbase-0.8.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_OPTIONAL=1 +AUTOTOOLS_AUTORECONF=1 + +inherit autotools-utils distutils-r1 + +DESCRIPTION="Support library required by the Sphinx Speech Recognition Engine" +HOMEPAGE="http://cmusphinx.sourceforge.net/" +SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz" + +LICENSE="BSD-2 HPND MIT" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="doc lapack python static-libs" + +# automagic dep on pulseaudio +RDEPEND=" + media-sound/pulseaudio + lapack? ( virtual/lapack ) + python? ( ${PYTHON_DEPS} )" +DEPEND="${RDEPEND} + doc? ( >=app-doc/doxygen-1.4.7 )" + +# Due to generated Python setup.py. +AUTOTOOLS_IN_SOURCE_BUILD=1 + +PATCHES=( + "${FILESDIR}"/${P}-unbundle-lapack.patch + "${FILESDIR}"/${P}-automake113.patch +) + +src_configure() { + local myeconfargs=( + $(use_with lapack) + $(use_enable doc) + # python modules are built through distutils + # so disable the ugly wrapper + --without-python + ) + autotools-utils_src_configure +} + +run_distutils() { + if use python; then + pushd python > /dev/null || die + distutils-r1_"${@}" + popd > /dev/null || die + fi +} + +src_compile() { + autotools-utils_src_compile + + run_distutils ${FUNCNAME} +} + +python_test() { + LD_LIBRARY_PATH="${S}"/src/lib${PN}/.libs \ + "${PYTHON}" sb_test.py || die "Tests fail with ${EPYTHON}" +} + +src_test() { + autotools-utils_src_test + + run_distutils ${FUNCNAME} +} + +src_install() { + run_distutils ${FUNCNAME} + + use doc && local HTML_DOCS=( doc/html/. ) + autotools-utils_src_install +} -- cgit v1.2.3-65-gdbad