From owner-svn-ports-head@FreeBSD.ORG Tue Jan 13 08:29:03 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7660929D; Tue, 13 Jan 2015 08:29:03 +0000 (UTC) Received: from mailrelay011.isp.belgacom.be (mailrelay011.isp.belgacom.be [195.238.6.178]) by mx1.freebsd.org (Postfix) with ESMTP id 937DA9D3; Tue, 13 Jan 2015 08:29:01 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AmUGAH3VtFRbsIcT/2dsb2JhbABbgwZSTQvGEIVxAoERRAEBAQEBfYQNAQU6HB4FEAsOBgQJJQ8qHgYTiDABCM0LAQEBAQEBAQMBAQEBAQEBFwSPRjMHhCkFkgKFR5F5IoNvPTGCQwEBAQ Received: from 19.135-176-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.176.135.19]) by relay.skynet.be with ESMTP; 13 Jan 2015 09:27:53 +0100 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.9/8.14.9) with ESMTP id t0D8Ro5J004321; Tue, 13 Jan 2015 09:27:50 +0100 (CET) (envelope-from tijl@FreeBSD.org) Date: Tue, 13 Jan 2015 09:27:50 +0100 From: Tijl Coosemans To: Maxim Sobolev Subject: Re: svn commit: r376897 - in head/audio: . bcg729 bcg729/files Message-ID: <20150113092750.1ac874e7@kalimero.tijl.coosemans.org> In-Reply-To: <201501130033.t0D0X7rR036463@svn.freebsd.org> References: <201501130033.t0D0X7rR036463@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jan 2015 08:29:03 -0000 On Tue, 13 Jan 2015 00:33:07 +0000 (UTC) Maxim Sobolev wrote: > Author: sobomax > Date: Tue Jan 13 00:33:06 2015 > New Revision: 376897 > URL: https://svnweb.freebsd.org/changeset/ports/376897 > QAT: https://qat.redports.org/buildarchive/r376897/ > > Log: > Add bcg729-1.0.0, a software G729A encoder and decoder library written in C. > > Added: > head/audio/bcg729/ > head/audio/bcg729/Makefile (contents, props changed) > head/audio/bcg729/distinfo (contents, props changed) > head/audio/bcg729/files/ > head/audio/bcg729/files/patch-include_basicOperationsMacros.h (contents, props changed) > head/audio/bcg729/pkg-descr (contents, props changed) > head/audio/bcg729/pkg-plist (contents, props changed) > Modified: > head/audio/Makefile > > Modified: head/audio/Makefile > ============================================================================== > --- head/audio/Makefile Tue Jan 13 00:28:49 2015 (r376896) > +++ head/audio/Makefile Tue Jan 13 00:33:06 2015 (r376897) > @@ -51,6 +51,7 @@ > SUBDIR += baudline > SUBDIR += beast > SUBDIR += beets > + SUBDIR += bcg729 > SUBDIR += blop > SUBDIR += boodler > SUBDIR += bristol > > Added: head/audio/bcg729/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/audio/bcg729/Makefile Tue Jan 13 00:33:06 2015 (r376897) > @@ -0,0 +1,19 @@ > +# Created by: sobomax > +# $FreeBSD$ > + > +PORTNAME= bcg729 > +PORTVERSION= 1.0.0 > +CATEGORIES= audio > +MASTER_SITES= ${MASTER_SITE_SAVANNAH} > +MASTER_SITE_SUBDIR= linphone/plugins/sources > + > +MAINTAINER= ports@FreeBSD.org > +COMMENT= A software G729A encoder and decoder library written in C > + > +LICENSE= GPLv2 > + > +USES= pathfix pkgconfig You should add USES=libtool and INSTALL_TARGET=install-strip here. You can run "make stage-qa" and "make check-plist" to test for things like that. Can you also add a dependency on net/ortp and net/mediastreamer because configure picks these up if they are installed? It will enable a mediastreamer plugin such that this codec can be used in Linphone.