Fix: This port links to libogg and it's portrevision wasn't bumped after recent libogg update. I propose to bump port revision and add explicit dependency on audio/libogg so in the future this can be avoided. Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->pawel Submitter has GNATS access (via the GNATS Auto Assign Tool)
Maintainer of audio/libbs2b, Please note that PR ports/170034 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/170034 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Thank you. Please try this patch. NOTE: bin/bs2bconvert also depends on libvorbis and libFLAC as well as libogg, and specifies each library version explicitly. -=-=-=-=-= SimaMoto,RyÅTa <liangtai.s4@gmail.com>
Author: pawel Date: Sun Jul 22 08:24:40 2012 New Revision: 301301 URL: http://svn.freebsd.org/changeset/ports/301301 Log: - Bump port after recent audio/libogg update [1] - Add explicit dependency on audio/libogg so this port will not be forgotten in the future [1] - Add explicit dependency on audio/flac and audio/vorbis, bs2bconvert binary links to them as well [2] PR: ports/170034 [1] Submitted by: myself [1], maintainer [2] Approved by: maintainer Modified: head/audio/libbs2b/Makefile Modified: head/audio/libbs2b/Makefile ============================================================================== --- head/audio/libbs2b/Makefile Sun Jul 22 08:16:01 2012 (r301300) +++ head/audio/libbs2b/Makefile Sun Jul 22 08:24:40 2012 (r301301) @@ -7,6 +7,7 @@ PORTNAME= libbs2b PORTVERSION= 3.1.0 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF/bs2b/bs2b/${PORTVERSION} @@ -14,7 +15,10 @@ MAINTAINER= liangtai.s4@gmail.com COMMENT= Bauer Stereophonic-to-Binaural DSP BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkg-config -LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile +LIB_DEPENDS+= sndfile:${PORTSDIR}/audio/libsndfile \ + ogg:${PORTSDIR}/audio/libogg \ + FLAC:${PORTSDIR}/audio/flac \ + vorbis:${PORTSDIR}/audio/libvorbis USE_BZIP2= yes USE_GMAKE= yes _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Committed. Thanks!