svn commit: r480891 - head/audio/rhvoice

Yuri Victorovich yuri at FreeBSD.org
Sat Sep 29 06:31:45 UTC 2018


Author: yuri
Date: Sat Sep 29 06:31:44 2018
New Revision: 480891
URL: https://svnweb.freebsd.org/changeset/ports/480891

Log:
  audio/rhvoice: Fix build with base GCC
  
  Add USES=compiler:c++0x because the code is C++03.
  Also shadow some commands.
  
  Reported by:	Piotr Kubaj <pkubaj at anongoth.pl>

Modified:
  head/audio/rhvoice/Makefile

Modified: head/audio/rhvoice/Makefile
==============================================================================
--- head/audio/rhvoice/Makefile	Sat Sep 29 06:19:33 2018	(r480890)
+++ head/audio/rhvoice/Makefile	Sat Sep 29 06:31:44 2018	(r480891)
@@ -14,7 +14,7 @@ LICENSE_COMB=	multi
 LICENSE_FILE_LGPL21+ =	${WRKSRC}/licenses/lgpl-2.1.txt
 LICENSE_FILE_GPLv3+ =	${WRKSRC}/licenses/gpl-3.0.txt
 
-USES=		pkgconfig scons
+USES=		compiler:c++0x pkgconfig scons
 USE_GITHUB=	yes
 GH_ACCOUNT=	Olga-Yakovleva
 USE_LDCONFIG=	yes
@@ -28,13 +28,13 @@ AO_LIB_DEPENDS=		libao.so:audio/libao
 PORTAUDIO_LIB_DEPENDS=	libportaudio.so:audio/portaudio
 
 post-patch-PULSEAUDIO-off:
-	${REINPLACE_CMD} 's|conf.CheckPKG("libpulse-simple")|False and &|' ${WRKSRC}/SConstruct
+	@${REINPLACE_CMD} 's|conf.CheckPKG("libpulse-simple")|False and &|' ${WRKSRC}/SConstruct
 
 post-patch-AO-off:
-	${REINPLACE_CMD} 's|conf.CheckPKG("ao")|False and &|' ${WRKSRC}/SConstruct
+	@${REINPLACE_CMD} 's|conf.CheckPKG("ao")|False and &|' ${WRKSRC}/SConstruct
 
 post-patch-PORTAUDIO-off:
-	${REINPLACE_CMD} 's|conf.CheckPKG("portaudio-2.0")|False and &|' ${WRKSRC}/SConstruct
+	@${REINPLACE_CMD} 's|conf.CheckPKG("portaudio-2.0")|False and &|' ${WRKSRC}/SConstruct
 
 post-install:
 	${MV} ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample


More information about the svn-ports-head mailing list