svn commit: r531209 - head/audio/liblo

Piotr Kubaj pkubaj at FreeBSD.org
Thu Apr 9 14:01:26 UTC 2020


Author: pkubaj
Date: Thu Apr  9 14:01:26 2020
New Revision: 531209
URL: https://svnweb.freebsd.org/changeset/ports/531209

Log:
  audio/liblo: fix packaging on GCC architectures
  
  cpp_example needs C++11 compiler to be built, its lack makes it to be omitted and packaging error to happen:
  pkg-static: Unable to access file /wrkdirs/usr/ports/audio/liblo/work/stage/usr/local/share/examples/liblo/cpp_example:No such file or directory

Modified:
  head/audio/liblo/Makefile

Modified: head/audio/liblo/Makefile
==============================================================================
--- head/audio/liblo/Makefile	Thu Apr  9 13:19:54 2020	(r531208)
+++ head/audio/liblo/Makefile	Thu Apr  9 14:01:26 2020	(r531209)
@@ -12,7 +12,7 @@ COMMENT=	Lightweight Open Sound Control implementation
 
 LICENSE=	LGPL21
 
-USES=		gmake libtool pathfix
+USES=		compiler:c++11-lang gmake libtool pathfix
 
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip


More information about the svn-ports-all mailing list