Date: Fri, 11 Jan 2019 20:57:19 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490015 - head/audio/audacity Message-ID: <201901112057.x0BKvJPV011068@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901112057.x0BKvJPV011068>