Date: Sat, 29 Sep 2018 06:31:44 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480891 - head/audio/rhvoice Message-ID: <201809290631.w8T6ViLj086057@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809290631.w8T6ViLj086057>