diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2017-12-12 23:53:13 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2017-12-12 23:53:13 +0800 |
commit | 62d671b86e69ddaaee92ff035327cbda50434239 (patch) | |
tree | 0c90fa364e0d18c3a5505b527d259f535ff79644 /graphics | |
parent | f4c33618bb989533dbb8a09cdac78e310b527847 (diff) | |
download | freebsd-ports-gnome-62d671b86e69ddaaee92ff035327cbda50434239.tar.gz freebsd-ports-gnome-62d671b86e69ddaaee92ff035327cbda50434239.tar.zst freebsd-ports-gnome-62d671b86e69ddaaee92ff035327cbda50434239.zip |
- Add LICENSE
- Fix build on Tier2 by removing -march=native from compiler flags
Approved by: portmgr blanket
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/hiptext/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/graphics/hiptext/Makefile b/graphics/hiptext/Makefile index 85185b24b1e6..0bb9cf7a96b1 100644 --- a/graphics/hiptext/Makefile +++ b/graphics/hiptext/Makefile @@ -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 |