Date: Tue, 12 Dec 2017 15:53:13 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456171 - head/graphics/hiptext Message-ID: <201712121553.vBCFrDik036274@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712121553.vBCFrDik036274>