From owner-svn-ports-all@FreeBSD.ORG Wed May 14 01:58:10 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69594460; Wed, 14 May 2014 01:58:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A3AD27BA; Wed, 14 May 2014 01:58:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4E1wA5B030425; Wed, 14 May 2014 01:58:10 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4E1w9tC030419; Wed, 14 May 2014 01:58:09 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201405140158.s4E1w9tC030419@svn.freebsd.org> From: Dmitry Marakasov Date: Wed, 14 May 2014 01:58:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354013 - in head/audio: pocketsphinx sphinx3 sphinxbase X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 01:58:10 -0000 Author: amdmi3 Date: Wed May 14 01:58:08 2014 New Revision: 354013 URL: http://svnweb.freebsd.org/changeset/ports/354013 QAT: https://qat.redports.org/buildarchive/r354013/ Log: - Switch to USES=libtool Modified: head/audio/pocketsphinx/Makefile head/audio/pocketsphinx/pkg-plist head/audio/sphinx3/Makefile head/audio/sphinx3/pkg-plist head/audio/sphinxbase/Makefile head/audio/sphinxbase/pkg-plist Modified: head/audio/pocketsphinx/Makefile ============================================================================== --- head/audio/pocketsphinx/Makefile Wed May 14 01:57:56 2014 (r354012) +++ head/audio/pocketsphinx/Makefile Wed May 14 01:58:08 2014 (r354013) @@ -3,6 +3,7 @@ PORTNAME= pocketsphinx PORTVERSION= 0.8 +PORTREVISION= 1 CATEGORIES= audio accessibility MASTER_SITES= SF/cmusphinx/${PORTNAME}/${PORTVERSION} @@ -11,12 +12,11 @@ COMMENT= Speech recognition system LIB_DEPENDS= libsphinxad.so:${PORTSDIR}/audio/sphinxbase -USES= gmake pathfix pkgconfig -USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool - -CONFIGURE_ARGS+= --without-python +USES= gmake pathfix pkgconfig libtool +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--without-python CONFIGURE_ENV+= HAVE_DOXYGEN=no +USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib @@ -29,4 +29,7 @@ post-patch: -e '/[[:space:]]+gst-plugin$$/D;' \ ${WRKSRC}/src/Makefile.in +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpocketsphinx.so + .include Modified: head/audio/pocketsphinx/pkg-plist ============================================================================== --- head/audio/pocketsphinx/pkg-plist Wed May 14 01:57:56 2014 (r354012) +++ head/audio/pocketsphinx/pkg-plist Wed May 14 01:58:08 2014 (r354013) @@ -9,9 +9,9 @@ include/pocketsphinx/pocketsphinx_export include/pocketsphinx/ps_lattice.h include/pocketsphinx/ps_mllr.h lib/libpocketsphinx.a -lib/libpocketsphinx.la lib/libpocketsphinx.so -lib/libpocketsphinx.so.2 +lib/libpocketsphinx.so.1 +lib/libpocketsphinx.so.1.1.0 libdata/pkgconfig/pocketsphinx.pc man/man1/pocketsphinx_batch.1.gz man/man1/pocketsphinx_continuous.1.gz Modified: head/audio/sphinx3/Makefile ============================================================================== --- head/audio/sphinx3/Makefile Wed May 14 01:57:56 2014 (r354012) +++ head/audio/sphinx3/Makefile Wed May 14 01:58:08 2014 (r354013) @@ -3,7 +3,7 @@ PORTNAME= sphinx3 PORTVERSION= 0.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio accessibility MASTER_SITES= SF/cmusphinx/${PORTNAME}/${PORTVERSION} @@ -12,11 +12,11 @@ COMMENT= Speech recognition system LIB_DEPENDS= libsphinxbase.so:${PORTSDIR}/audio/sphinxbase +USES= gmake pathfix libtool +GNU_CONFIGURE= yes USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool USE_CSTD= gnu99 MAKE_JOBS_UNSAFE= yes -USES= gmake pathfix CFLAGS+= -I${LOCALBASE}/include #-I${LOCALBASE}/include/sphinxbase CXXFLAGS+= -I${LOCALBASE}/include #-I${LOCALBASE}/include/sphinxbase @@ -25,4 +25,7 @@ LDFLAGS+= -L${LOCALBASE}/lib MAKE_ENV= MKDIR="${MKDIR}" \ OSVERSION=${OSVERSION} +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libs3decoder.so + .include Modified: head/audio/sphinx3/pkg-plist ============================================================================== --- head/audio/sphinx3/pkg-plist Wed May 14 01:57:56 2014 (r354012) +++ head/audio/sphinx3/pkg-plist Wed May 14 01:58:08 2014 (r354013) @@ -86,9 +86,9 @@ include/sphinx3/word_fsg.h include/sphinx3/word_graph.h include/sphinx3/word_ugprob.h lib/libs3decoder.a -lib/libs3decoder.la lib/libs3decoder.so lib/libs3decoder.so.0 +lib/libs3decoder.so.0.0.6 libdata/pkgconfig/sphinx3.pc %%DATADIR%%/doc/BN_AM_HUB96-97.doc %%DATADIR%%/doc/BN_AM_HUB96-97.htm Modified: head/audio/sphinxbase/Makefile ============================================================================== --- head/audio/sphinxbase/Makefile Wed May 14 01:57:56 2014 (r354012) +++ head/audio/sphinxbase/Makefile Wed May 14 01:58:08 2014 (r354013) @@ -3,18 +3,18 @@ PORTNAME= sphinxbase PORTVERSION= 0.8 +PORTREVISION= 1 CATEGORIES= audio accessibility MASTER_SITES= SF/cmusphinx/${PORTNAME}/${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= CMU Sphinx Speech recognition system base -USE_LDCONFIG= yes -USES= bison gmake pathfix -USE_AUTOTOOLS= libtool - +USES= bison gmake pathfix libtool +GNU_CONFIGURE= yes CONFIGURE_ARGS+= --without-python --without-lapack CONFIGURE_ENV+= HAVE_DOXYGEN=no +USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib @@ -45,4 +45,7 @@ CONFIGURE_ARGS+= --enable-threads CONFIGURE_ARGS+= --disable-threads .endif +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsphinx*.so + .include Modified: head/audio/sphinxbase/pkg-plist ============================================================================== --- head/audio/sphinxbase/pkg-plist Wed May 14 01:57:56 2014 (r354012) +++ head/audio/sphinxbase/pkg-plist Wed May 14 01:58:08 2014 (r354013) @@ -49,12 +49,12 @@ include/sphinxbase/strfuncs.h include/sphinxbase/unlimit.h include/sphinxbase/yin.h lib/libsphinxad.a -lib/libsphinxad.la lib/libsphinxad.so lib/libsphinxad.so.0 +lib/libsphinxad.so.0.0.1 lib/libsphinxbase.a -lib/libsphinxbase.la lib/libsphinxbase.so -lib/libsphinxbase.so.2 +lib/libsphinxbase.so.1 +lib/libsphinxbase.so.1.1.1 libdata/pkgconfig/sphinxbase.pc @dirrm include/sphinxbase