From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 23 22:50:02 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCD8B50B for ; Sat, 23 Nov 2013 22:50:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 931472FB5 for ; Sat, 23 Nov 2013 22:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rANMo2aW076886 for ; Sat, 23 Nov 2013 22:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rANMo2tw076885; Sat, 23 Nov 2013 22:50:02 GMT (envelope-from gnats) Date: Sat, 23 Nov 2013 22:50:02 GMT Message-Id: <201311232250.rANMo2tw076885@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/161568: commit references a PR X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list Reply-To: dfilter service List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Nov 2013 22:50:02 -0000 The following reply was made to PR ports/161568; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/161568: commit references a PR Date: Sat, 23 Nov 2013 22:44:07 +0000 (UTC) Author: kwm Date: Sat Nov 23 22:44:00 2013 New Revision: 334696 URL: http://svnweb.freebsd.org/changeset/ports/334696 Log: Remove ',' at the end of the last entry of emumerator list. While here Stageify port, update LIB_DEPEND syntax and depend on package name instead of looking for a file. PR: ports/161568 Submitted by: Takefu Added: head/audio/libsamplerate/files/ head/audio/libsamplerate/files/patch-src_samplerate.h (contents, props changed) Modified: head/audio/libsamplerate/Makefile Modified: head/audio/libsamplerate/Makefile ============================================================================== --- head/audio/libsamplerate/Makefile Sat Nov 23 21:25:56 2013 (r334695) +++ head/audio/libsamplerate/Makefile Sat Nov 23 22:44:00 2013 (r334696) @@ -3,7 +3,7 @@ PORTNAME= libsamplerate PORTVERSION= 0.1.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= http://www.mega-nerd.com/SRC/ @@ -14,7 +14,6 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= pathfix pkgconfig -NO_STAGE= yes USE_AUTOTOOLS= libtool USE_LDCONFIG= yes @@ -38,9 +37,9 @@ CONFIGURE_ARGS+= --disable-fftw .endif .if ${PORT_OPTIONS:MEXAMPLES} -LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile +LIB_DEPENDS+= libsndfile.so:${PORTSDIR}/audio/libsndfile .elif defined(MAINTAINER_MODE) || defined(PACKAGE_BUILDING) -BUILD_DEPENDS += ${LOCALBASE}/lib/libsndfile.so:${PORTSDIR}/audio/libsndfile +BUILD_DEPENDS += libsndfile>=0:${PORTSDIR}/audio/libsndfile .else CONFIGURE_ARGS+= --disable-sndfile .endif @@ -59,4 +58,7 @@ check regression-test test: build check .endif +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsamplerate.so.1 + .include Added: head/audio/libsamplerate/files/patch-src_samplerate.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libsamplerate/files/patch-src_samplerate.h Sat Nov 23 22:44:00 2013 (r334696) @@ -0,0 +1,11 @@ +--- src/samplerate.h.orig 2013-11-23 23:36:11.000000000 +0100 ++++ src/samplerate.h 2013-11-23 23:36:25.000000000 +0100 +@@ -174,7 +174,7 @@ + SRC_SINC_MEDIUM_QUALITY = 1, + SRC_SINC_FASTEST = 2, + SRC_ZERO_ORDER_HOLD = 3, +- SRC_LINEAR = 4, ++ SRC_LINEAR = 4 + } ; + + /* _______________________________________________ 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"