2012-12-20 09:47:10 +01:00
|
|
|
# Created by: Kurt Jaeger <fbsd-ports@opsec.eu>
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= Math-Int128
|
2015-05-06 22:42:35 +02:00
|
|
|
PORTVERSION= 0.22
|
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using using Mk/bsd.octave.mk which in turn has USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
c++11-lang, c++0x, c11, or gcc-c++11-lib.
PR: 216707
2017-04-01 17:23:30 +02:00
|
|
|
PORTREVISION= 2
|
2012-12-20 09:47:10 +01:00
|
|
|
CATEGORIES= math perl5
|
|
|
|
MASTER_SITES= CPAN
|
|
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
|
2014-06-08 21:05:27 +02:00
|
|
|
MAINTAINER= pi@FreeBSD.org
|
2012-12-20 09:47:10 +01:00
|
|
|
COMMENT= Manipulate 128 bits integers in Perl
|
|
|
|
|
|
|
|
LICENSE= ART10
|
|
|
|
|
2016-04-01 16:16:16 +02:00
|
|
|
BUILD_DEPENDS= p5-Math-Int64>=0.51:math/p5-Math-Int64
|
|
|
|
RUN_DEPENDS= p5-Math-Int64>=0.51:math/p5-Math-Int64
|
2012-12-20 09:47:10 +01:00
|
|
|
|
2013-08-02 20:21:05 +02:00
|
|
|
USES= perl5
|
|
|
|
USE_PERL5= configure
|
2012-12-20 09:47:10 +01:00
|
|
|
|
2014-11-01 11:00:57 +01:00
|
|
|
NOT_FOR_ARCHS= i386 armv6
|
2012-12-20 09:47:10 +01:00
|
|
|
|
2013-08-25 17:27:10 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2013-08-28 13:44:03 +02:00
|
|
|
# need clang 3.2+ or GCC 4.4+
|
2016-06-24 15:08:21 +02:00
|
|
|
.if exists(/usr/bin/clang)
|
2013-08-25 17:27:10 +02:00
|
|
|
CC= /usr/bin/clang
|
|
|
|
.else
|
2013-08-28 13:44:03 +02:00
|
|
|
USE_GCC= yes
|
2013-08-25 17:27:10 +02:00
|
|
|
.endif
|
|
|
|
|
2016-12-02 12:58:21 +01:00
|
|
|
post-install:
|
2014-11-26 14:08:24 +01:00
|
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Math/Int128/Int128.so
|
2014-11-19 07:28:05 +01:00
|
|
|
|
2013-08-25 17:27:10 +02:00
|
|
|
.include <bsd.port.post.mk>
|