svn commit: r483251 - head/devel/atlas-devel

Mark Linimon linimon at FreeBSD.org
Sun Oct 28 09:39:09 UTC 2018


Author: linimon
Date: Sun Oct 28 09:39:07 2018
New Revision: 483251
URL: https://svnweb.freebsd.org/changeset/ports/483251

Log:
  Fix build with GCC-based architectures.
  
  While here, pet portlint.
  
  PR:		232473
  Submitted by:	Piotr Kubaj
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/atlas-devel/Makefile

Modified: head/devel/atlas-devel/Makefile
==============================================================================
--- head/devel/atlas-devel/Makefile	Sun Oct 28 09:38:41 2018	(r483250)
+++ head/devel/atlas-devel/Makefile	Sun Oct 28 09:39:07 2018	(r483251)
@@ -6,6 +6,7 @@ PORTVERSION=	0.6.3
 PORTREVISION=	7
 CATEGORIES=	devel
 MASTER_SITES=	SF/worldforge/${PORTNAME}-C%2B%2B%20%28protocol%20lib%29/${PORTVERSION}
+PKGNAMESUFFIX=	-devel
 DISTNAME=	${PORTNAME}-C++-${PORTVERSION:S/.r/rc/}
 
 MAINTAINER=	oliver at FreeBSD.org
@@ -13,12 +14,17 @@ COMMENT=	C++ reference implementation of the Atlas pro
 
 OPTIONS_DEFINE=	DOCS
 
-PKGNAMESUFFIX=	-devel
 GNU_CONFIGURE=	yes
 USES=		libtool pathfix compiler:c++11-lib tar:bzip2
 USE_LDCONFIG=	YES
 MAKE_ARGS=	docdir=${DOCSDIR}
 CONFIGURE_ARGS+=--program-transform-name=
+CXXFLAGS_powerpc64=	-Wno-error=deprecated
+CXXFLAGS_powerpc=	-Wno-error=deprecated
+CXXFLAGS_powerpcspe=	-Wno-error=deprecated
+CXXFLAGS_mips=	-Wno-error=deprecated
+CXXFLAGS_mips64=	-Wno-error=deprecated
+CXXFLAGS_sparc64=	-Wno-error=deprecated
 
 post-patch:
 	@${REINPLACE_CMD} -e 's|^static const bool debug_flag = false;$$||' \


More information about the svn-ports-head mailing list