Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Apr 2020 14:01:26 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r531209 - head/audio/liblo
Message-ID:  <202004091401.039E1Qcb021972@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004091401.039E1Qcb021972>