mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
36 lines
924 B
Makefile
36 lines
924 B
Makefile
# Created by: Vsevolod Stakhov <vsevolod@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gringo
|
|
PORTVERSION= 4.5.2
|
|
PORTREVISION= 2
|
|
DISTVERSIONSUFFIX= -source
|
|
CATEGORIES= math devel
|
|
MASTER_SITES= SOURCEFORGE/potassco/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= vsevolod@FreeBSD.org
|
|
COMMENT= Grounding algorithm based on semi-naive database evaluation
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= re2c:devel/re2c
|
|
|
|
BROKEN_powerpc64= fails to compile: term.cc: error: pow is not a member of std
|
|
|
|
USES= bison compiler:c++11-lib scons
|
|
|
|
MAKE_ARGS+= ${MAKE_ENV}
|
|
CXXFLAGS+= -std=c++11
|
|
MAKE_ENV+= WITH_LUA=no
|
|
|
|
# Unhide std::to_string() with GCC < 4.9 (ports/193528)
|
|
CXXFLAGS+= -D_GLIBCXX_USE_C99
|
|
|
|
PLIST_FILES= bin/${PORTNAME} bin/clingo
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/build/debug/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/build/debug/clingo ${STAGEDIR}${PREFIX}/bin/clingo
|
|
|
|
.include <bsd.port.mk>
|