svn commit: r411957 - in head/multimedia: . syncplay syncplay/files

Jan Beich jbeich at vfemail.net
Sat Mar 26 22:08:54 UTC 2016


Kurt Jaeger <pi at FreeBSD.org> writes:

> +.if !empty(PORT_OPTIONS:MCLIENT) && !empty(PORT_OPTIONS:MSERVER)
> +INSTALL_TARGET=	install
> +.endif
> +
> +.include <bsd.port.mk>

PORT_OPTIONS is always empty before <bsd.port.options.mk> is included
which this port doesn't attempt. If you want to keep .if conditionals
out try the untested patch below.

Index: multimedia/syncplay/Makefile
===================================================================
--- multimedia/syncplay/Makefile	(revision 411966)
+++ multimedia/syncplay/Makefile	(working copy)
@@ -26,6 +26,7 @@ OPTIONS_MULTI_MODES=	CLIENT SERVER
 VLC_DESC=	Support for VLC media player
 
 MAKEFILE=	GNUmakefile
+INSTALL_TARGET=	# empty
 
 GUI_RUN_DEPENDS=	pyside-py2?>=1.1.2:devel/pyside
 
@@ -34,8 +35,4 @@ VLC_MAKE_ARGS_OFF=	VLC_SUPPORT=false
 CLIENT_INSTALL_TARGET=	install-client
 SERVER_INSTALL_TARGET=	install-server
 
-.if !empty(PORT_OPTIONS:MCLIENT) && !empty(PORT_OPTIONS:MSERVER)
-INSTALL_TARGET=	install
-.endif
-
 .include <bsd.port.mk>

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 602 bytes
Desc: not available
URL: <http://lists.freebsd.org/pipermail/svn-ports-head/attachments/20160326/a29745b0/attachment.sig>


More information about the svn-ports-head mailing list