svn commit: r489941 - branches/2019Q1/multimedia/libquicktime

Tobias Kortkamp tobik at FreeBSD.org
Fri Jan 11 05:59:13 UTC 2019


Author: tobik
Date: Fri Jan 11 05:59:12 2019
New Revision: 489941
URL: https://svnweb.freebsd.org/changeset/ports/489941

Log:
  MFH: r489663
  
  multimedia/libquicktime: Do not set LIB_DEPENDS twice
  
  The ALSA option overwrites a previously set LIB_DEPENDS, so the
  libvorbis dependency is never registered when it is turned on.
  
  Approved by:	ports-secteam blanket

Modified:
  branches/2019Q1/multimedia/libquicktime/Makefile
Directory Properties:
  branches/2019Q1/   (props changed)

Modified: branches/2019Q1/multimedia/libquicktime/Makefile
==============================================================================
--- branches/2019Q1/multimedia/libquicktime/Makefile	Fri Jan 11 05:58:35 2019	(r489940)
+++ branches/2019Q1/multimedia/libquicktime/Makefile	Fri Jan 11 05:59:12 2019	(r489941)
@@ -3,7 +3,7 @@
 
 PORTNAME=	libquicktime
 PORTVERSION=	1.2.4
-PORTREVISION?=	23
+PORTREVISION?=	24
 CATEGORIES=	multimedia
 MASTER_SITES=	SF
 
@@ -58,7 +58,7 @@ CONFIGURE_ARGS+=	--without-gtk
 .endif
 
 .if ${PORT_OPTIONS:MALSA}
-LIB_DEPENDS=	libasound.so:audio/alsa-lib
+LIB_DEPENDS+=	libasound.so:audio/alsa-lib
 .else
 CONFIGURE_ARGS+=	--without-alsa
 .endif


More information about the svn-ports-all mailing list