From owner-svn-ports-all@freebsd.org Sat Aug 27 11:39:32 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A324EB7739D; Sat, 27 Aug 2016 11:39:32 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 58BDF110; Sat, 27 Aug 2016 11:39:32 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7RBdV7x020678; Sat, 27 Aug 2016 11:39:31 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7RBdVO4020676; Sat, 27 Aug 2016 11:39:31 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201608271139.u7RBdVO4020676@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sat, 27 Aug 2016 11:39:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420970 - head/net/yate 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.22 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: Sat, 27 Aug 2016 11:39:32 -0000 Author: pawel Date: Sat Aug 27 11:39:31 2016 New Revision: 420970 URL: https://svnweb.freebsd.org/changeset/ports/420970 Log: - Fix AMRNB option plist - Fix SQLITE option, needs pkg-config to detect sqlite availability: checking for SQLite using pkg-config... yes - Simplify post-stage target PR: 211841 Submitted by: myself Approved by: maintainer Modified: head/net/yate/Makefile head/net/yate/pkg-plist Modified: head/net/yate/Makefile ============================================================================== --- head/net/yate/Makefile Sat Aug 27 11:13:39 2016 (r420969) +++ head/net/yate/Makefile Sat Aug 27 11:39:31 2016 (r420970) @@ -82,36 +82,17 @@ SPANDSP_CONFIGURE_WITH= spandsp SPANDSP_LIB_DEPENDS= libspandsp.so:comms/spandsp SQLITE_CONFIGURE_WITH= sqlite -SQLITE_LIB_DEPENDS= libsqlite3.so:databases/sqlite3 +SQLITE_USES= pkgconfig sqlite post-extract: @${MV} ${WRKDIR}/${PORTNAME} ${WRKSRC} post-stage: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/yate - @cd ${STAGEDIR}${PREFIX}/lib; \ - for FILE in libyate*.so.5.5.0; do \ - ${STRIP_CMD} $${FILE}; \ - done - @cd ${STAGEDIR}${PREFIX}/lib/yate; \ - for FILE in *.yate; do \ - ${STRIP_CMD} $${FILE}; \ - done - @cd ${STAGEDIR}${PREFIX}/lib/yate/client; \ - for FILE in *.yate; do \ - ${STRIP_CMD} $${FILE}; \ - done - @cd ${STAGEDIR}${PREFIX}/lib/yate/server; \ - for FILE in *.yate; do \ - ${STRIP_CMD} $${FILE}; \ - done - @cd ${STAGEDIR}${PREFIX}/lib/yate/jabber; \ - for FILE in *.yate; do \ - ${STRIP_CMD} $${FILE}; \ - done - @cd ${STAGEDIR}${PREFIX}/lib/yate/sip; \ - for FILE in *.yate; do \ - ${STRIP_CMD} $${FILE}; \ - done + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libyate*.so.5.5.0 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/yate/*.yate +.for dir in client server jabber sip + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/yate/${dir}/*.yate +.endfor .include Modified: head/net/yate/pkg-plist ============================================================================== --- head/net/yate/pkg-plist Sat Aug 27 11:13:39 2016 (r420969) +++ head/net/yate/pkg-plist Sat Aug 27 11:39:31 2016 (r420970) @@ -138,6 +138,7 @@ lib/yate/jabber/jabberserver.yate lib/yate/jabber/jbfeatures.yate lib/yate/sip/sip_cnam_lnp.yate %%AMRNB%%lib/yate/amrnbcodec.yate +%%AMRNB%%lib/yate/efrcodec.yate %%SPANDSP%%lib/yate/faxchan.yate %%H323%%lib/yate/h323chan.yate %%ILBC%%lib/yate/ilbccodec.yate