svn commit: r500673 - head/audio/csound

Tobias Kortkamp tobik at FreeBSD.org
Thu May 2 18:17:24 UTC 2019


Author: tobik
Date: Thu May  2 18:17:23 2019
New Revision: 500673
URL: https://svnweb.freebsd.org/changeset/ports/500673

Log:
  audio/csound: Unbreak build after r500286
  
  ===>   Installing existing package /packages/All/stk-4.6.1.txz
  [112i386-default-job-07] Installing stk-4.6.1...
  [112i386-default-job-07] Extracting stk-4.6.1: .......... done
  ===>   csound-6.12.2.83_4 depends on shared library: libstk-4.6.0.so - not found
  
  Use version independent libstk.so symlink in LIB_DEPENDS, so that
  it does not immediately break on audio/stk updates in the future.
  Also bump revision for shared library name change
  (libstk-4.6.0.so->libstk-4.6.1.so).

Modified:
  head/audio/csound/Makefile

Modified: head/audio/csound/Makefile
==============================================================================
--- head/audio/csound/Makefile	Thu May  2 18:12:48 2019	(r500672)
+++ head/audio/csound/Makefile	Thu May  2 18:17:23 2019	(r500673)
@@ -4,7 +4,7 @@
 PORTNAME=	csound
 DISTVERSION=	6.12.2-83
 DISTVERSIONSUFFIX=	-gdf2edd269
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	audio lang
 
 MAINTAINER=	yuri at FreeBSD.org
@@ -152,7 +152,7 @@ STACK_CMAKE_BOOL=	BUILD_STACK_OPCODES
 
 STK_DESC=		Build the stk opcodes
 STK_CMAKE_BOOL=		BUILD_STK_OPCODES
-STK_LIB_DEPENDS=	libstk-4.6.0.so:audio/stk
+STK_LIB_DEPENDS=	libstk.so:audio/stk
 
 WIIMOTE_DESC=		Build the Wiimote opcodes
 WIIMOTE_CMAKE_BOOL=	BUILD_WIIMOTE_OPCODES


More information about the svn-ports-all mailing list