From owner-svn-ports-all@FreeBSD.ORG Thu Oct 31 13:00:39 2013 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 ESMTP id 6DAEC1A2; Thu, 31 Oct 2013 13:00:39 +0000 (UTC) (envelope-from wg@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5BDB82A93; Thu, 31 Oct 2013 13:00:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VD0dQB088988; Thu, 31 Oct 2013 13:00:39 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VD0dSg088987; Thu, 31 Oct 2013 13:00:39 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201310311300.r9VD0dSg088987@svn.freebsd.org> From: William Grzybowski Date: Thu, 31 Oct 2013 13:00:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332237 - head/audio/twolame 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.14 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: Thu, 31 Oct 2013 13:00:39 -0000 Author: wg Date: Thu Oct 31 13:00:38 2013 New Revision: 332237 URL: http://svnweb.freebsd.org/changeset/ports/332237 Log: audio/twolame: bring additional lib dependencies - FLAC, vorbis and ogg and linked with bin/twolame [1] (based on) PR: ports/181213 [1] Submitted by: bsam Modified: head/audio/twolame/Makefile Modified: head/audio/twolame/Makefile ============================================================================== --- head/audio/twolame/Makefile Thu Oct 31 12:56:19 2013 (r332236) +++ head/audio/twolame/Makefile Thu Oct 31 13:00:38 2013 (r332237) @@ -3,6 +3,7 @@ PORTNAME= twolame PORTVERSION= 0.3.13 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF \ http://www.ecs.soton.ac.uk/~njh/twolame/ @@ -10,7 +11,10 @@ MASTER_SITES= SF \ MAINTAINER= multimedia@FreeBSD.org COMMENT= MPEG Audio Layer 2 encoder -LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile +LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile \ + libFLAC.so:${PORTSDIR}/audio/flac \ + libvorbis.so:${PORTSDIR}/audio/livorbis \ + libogg.so:${PORTSDIR}/audio/libogg USES= gmake pathfix pkgconfig USE_LDCONFIG= yes