diff options
author | linimon <linimon@FreeBSD.org> | 2019-01-13 10:34:32 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2019-01-13 10:34:32 +0800 |
commit | ff8516c4e8516bd83a90200753b9c530b348882b (patch) | |
tree | b3779ac85b133c4c74c244d50c88713b9c37fb5c /astro | |
parent | cd0d9e8c00c43c3341748b4069a68d9d6052146c (diff) | |
download | freebsd-ports-gnome-ff8516c4e8516bd83a90200753b9c530b348882b.tar.gz freebsd-ports-gnome-ff8516c4e8516bd83a90200753b9c530b348882b.tar.zst freebsd-ports-gnome-ff8516c4e8516bd83a90200753b9c530b348882b.zip |
USES=compiler:c++11-lang is necessary to build this port on GCC-based
architectures.
PR: 234441
Submitted by: Piotr Kubaj
Approved by: maintainer
Diffstat (limited to 'astro')
-rw-r--r-- | astro/oskar/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/astro/oskar/Makefile b/astro/oskar/Makefile index 3b0d7bac3c6c..7293e8da5b47 100644 --- a/astro/oskar/Makefile +++ b/astro/oskar/Makefile @@ -7,15 +7,16 @@ CATEGORIES= astro MAINTAINER= yuri@FreeBSD.org COMMENT= SKA Radio telescope simulator -ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 -ONLY_FOR_ARCHS_REASON= gccfeatures.h:54:4: This code has only been tested on x86 and powerpc platforms - LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE +ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 +ONLY_FOR_ARCHS_REASON= gccfeatures.h:54:4: This code has only been tested on x86 and powerpc platforms + LIB_DEPENDS= libcfitsio.so:astro/cfitsio -USES= cmake localbase:ldflags python qt:5 shebangfix +USES= cmake compiler:c++11-lang localbase:ldflags python qt:5 \ + shebangfix SHEBANG_FILES= apps/oskar_convert_cst_to_scalar.py USE_GITHUB= yes GH_ACCOUNT= OxfordSKA |