ports/math/p5-Math-Int128/Makefile
Gerald Pfeifer e59c88cece Bump PORTREVISION for ports depending on the canonical version of GCC
(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
2017-09-10 20:55:38 +00:00

36 lines
691 B
Makefile

# Created by: Kurt Jaeger <fbsd-ports@opsec.eu>
# $FreeBSD$
PORTNAME= Math-Int128
PORTVERSION= 0.22
PORTREVISION= 3
CATEGORIES= math perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= pi@FreeBSD.org
COMMENT= Manipulate 128 bits integers in Perl
LICENSE= ART10
BUILD_DEPENDS= p5-Math-Int64>=0.51:math/p5-Math-Int64
RUN_DEPENDS= p5-Math-Int64>=0.51:math/p5-Math-Int64
USES= perl5
USE_PERL5= configure
NOT_FOR_ARCHS= armv6 i386
.include <bsd.port.pre.mk>
# need clang 3.2+ or GCC 4.4+
.if exists(/usr/bin/clang)
CC= /usr/bin/clang
.else
USE_GCC= yes
.endif
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Math/Int128/Int128.so
.include <bsd.port.post.mk>