Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Dec 2017 03:21:20 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r456092 - head/net/yami4
Message-ID:  <201712120321.vBC3LKGg013263@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Tue Dec 12 03:21:20 2017
New Revision: 456092
URL: https://svnweb.freebsd.org/changeset/ports/456092

Log:
  net/yami4: respect CXXFLAGS
  
  c++ -O2  -Iposix -c -o agent.o agent.cpp
  
  Reported by:	pkg-status (missing -fstack-protector -fno-strict-aliasing on amd64)

Modified:
  head/net/yami4/Makefile   (contents, props changed)

Modified: head/net/yami4/Makefile
==============================================================================
--- head/net/yami4/Makefile	Tue Dec 12 03:05:52 2017	(r456091)
+++ head/net/yami4/Makefile	Tue Dec 12 03:21:20 2017	(r456092)
@@ -2,7 +2,7 @@
 
 PORTNAME=	yami4
 PORTVERSION=	1.10.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	net
 MASTER_SITES=	http://www.inspirel.com/yami4/files/
 DISTNAME=	yami4-gpl-1.10.0
@@ -16,10 +16,11 @@ LICENSE_FILE=	${WRKSRC}/gpl-3.0.txt
 BROKEN_powerpc64=	Does not build: error: snprintf is not a member of std
 
 # USES=		compiler:c++11-lib
+MAKE_ARGS=	OPTIONS="${CXXFLAGS}"
 
 do-build :
-	cd ${WRKSRC}/src/core; make
-	cd ${WRKSRC}/src/cpp; make
+	${DO_MAKE_BUILD} -C ${WRKSRC}/src/core
+	${DO_MAKE_BUILD} -C ${WRKSRC}/src/cpp
 
 do-install :
 	${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/yami4



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