svn commit: r490015 - head/audio/audacity

Tobias Kortkamp tobik at FreeBSD.org
Fri Jan 11 20:57:19 UTC 2019


Author: tobik
Date: Fri Jan 11 20:57:18 2019
New Revision: 490015
URL: https://svnweb.freebsd.org/changeset/ports/490015

Log:
  audio/audacity: Do not set DYNLOAD_BUILD_DEPENDS twice
  
  To resolve this, concatenate the two values since this is what was
  originally intended.  Fix some comments while here.
  
  PR:		234825
  Submitted by:	xxjack12xx at gmail.com (maintainer)

Modified:
  head/audio/audacity/Makefile

Modified: head/audio/audacity/Makefile
==============================================================================
--- head/audio/audacity/Makefile	Fri Jan 11 20:56:25 2019	(r490014)
+++ head/audio/audacity/Makefile	Fri Jan 11 20:57:18 2019	(r490015)
@@ -83,11 +83,11 @@ DEBUG_CONFIGURE_WITH=	debug
 DOCS_BUILD_DEPENDS=	docbook-to-man:textproc/docbook-to-man \
 			docbook2man:textproc/docbook-utils
 
-DYNLOAD_BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/libavcodec.pc:multimedia/ffmpeg
-DYNLOAD_BUILD_DEPENDS=	${LOCALBASE}/include/lame/lame.h:audio/lame
+DYNLOAD_BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/libavcodec.pc:multimedia/ffmpeg \
+			${LOCALBASE}/include/lame/lame.h:audio/lame
 DYNLOAD_CONFIGURE_ENABLE=	dynamic-loading
-DYNLOAD_CPPFLAGS=		-I${LOCALBASE}/include	# for audio/lame using
-DYNLOAD_LDFLAGS=		-L${LOCALBASE}/lib	# for audio/lame using
+DYNLOAD_CPPFLAGS=		-I${LOCALBASE}/include	# for audio/lame
+DYNLOAD_LDFLAGS=		-L${LOCALBASE}/lib	# for audio/lame
 
 FFMPEG_CONFIGURE_WITH=	ffmpeg=system
 FFMPEG_LIB_DEPENDS=	libavcodec.so:multimedia/ffmpeg


More information about the svn-ports-head mailing list