svn commit: r456171 - head/graphics/hiptext

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Dec 12 15:53:14 UTC 2017


Author: amdmi3
Date: Tue Dec 12 15:53:13 2017
New Revision: 456171
URL: https://svnweb.freebsd.org/changeset/ports/456171

Log:
  - Add LICENSE
  - Fix build on Tier2 by removing -march=native from compiler flags
  
  Approved by:	portmgr blanket

Modified:
  head/graphics/hiptext/Makefile

Modified: head/graphics/hiptext/Makefile
==============================================================================
--- head/graphics/hiptext/Makefile	Tue Dec 12 15:51:45 2017	(r456170)
+++ head/graphics/hiptext/Makefile	Tue Dec 12 15:53:13 2017	(r456171)
@@ -3,12 +3,14 @@
 
 PORTNAME=	hiptext
 PORTVERSION=	0.0.s20160621
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	graphics
 
 MAINTAINER=	yuri at rawbw.com
 COMMENT=	Tool for rendering images and videos inside terminals
 
+LICENSE=	NONE
+
 BUILD_DEPENDS=	ragel:devel/ragel
 LIB_DEPENDS=	libgflags.so:devel/gflags \
 		libglog.so:devel/glog \
@@ -18,10 +20,6 @@ LIB_DEPENDS=	libgflags.so:devel/gflags \
 TEST_DEPENDS=	googletest>=1.7.0:devel/googletest
 RUN_DEPENDS=	${LOCALBASE}/share/fonts/dejavu/DejaVuSans.ttf:x11-fonts/dejavu
 
-BROKEN_aarch64=		fails to compile: error: the clang compiler does not support -march=native
-BROKEN_armv6=		fails to compile: error: the clang compiler does not support -march=native
-BROKEN_armv7=		fails to compile: error: the clang compiler does not support -march=native
-
 USE_GITHUB=	yes
 GH_ACCOUNT=	jart
 GH_TAGNAME=	f89b44f
@@ -29,7 +27,8 @@ GH_TAGNAME=	f89b44f
 USES=		compiler:c++11-lib gmake jpeg localbase
 CPPFLAGS+=	-D_GLIBCXX_USE_C99 # XXX ports/193528
 CPPFLAGS+=	-I${LOCALBASE}/include/freetype2
-MAKE_ENV=	GTEST_DIR="${LOCALBASE}"
+MAKE_ENV=	GTEST_DIR="${LOCALBASE}" \
+		TARGET_ARCH=""
 TEST_TARGET=	check
 
 PLIST_FILES=	bin/hiptext


More information about the svn-ports-head mailing list