Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Nov 2018 14:46:41 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r484875 - head/graphics/azpainter
Message-ID:  <201811131446.wADEkfZK011846@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Tue Nov 13 14:46:41 2018
New Revision: 484875
URL: https://svnweb.freebsd.org/changeset/ports/484875

Log:
  Instead of requesting GCC explicitly, tentatively add `compiler:c11' to
  the USES list as suggested by several people, even though the code does
  not really require C11 (e.g., it can be built with -std=c99 or with GCC
  4.6 which does not support C11 standard).

Modified:
  head/graphics/azpainter/Makefile

Modified: head/graphics/azpainter/Makefile
==============================================================================
--- head/graphics/azpainter/Makefile	Tue Nov 13 14:01:23 2018	(r484874)
+++ head/graphics/azpainter/Makefile	Tue Nov 13 14:46:41 2018	(r484875)
@@ -15,7 +15,8 @@ LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
 		libfreetype.so:print/freetype2 \
 		libpng.so:graphics/png
 
-USES=		desktop-file-utils jpeg localbase shared-mime-info tar:xz
+USES=		compiler:c11 desktop-file-utils jpeg localbase \
+		shared-mime-info tar:xz
 USE_XORG=	x11 xext xi
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-freetype-dir=${LOCALBASE}/include/freetype2
@@ -25,12 +26,6 @@ PORTDOCS=	AUTHORS ChangeLog NEWS README README_ja manu
 OPTIONS_DEFINE=	DOCS NLS
 OPTIONS_SUB=	yes
 
-.include <bsd.port.pre.mk>
-
-.if ${ARCH:Mpowerpc*} || ${ARCH} == sparc64
-USE_GCC=	yes
-.endif
-
 post-patch-NLS-off:
 	@${REINPLACE_CMD} -e 's, install-dist_trdataDATA$$,,' \
 		${WRKSRC}/data/Makefile.in
@@ -45,4 +40,4 @@ post-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${CP} -a ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>



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