freebsd-ports/math/p5-Math-Int128/Makefile
Kurt Jaeger d1f0564295 math/Math-Int128: 0.21 -> 0.22
Fix for #RT103359: CLONE hook was dying because its signature
        was wrong (bug report by Duke Smith)
2015-05-06 20:42:35 +00:00

35 lines
722 B
Makefile

# Created by: Kurt Jaeger <fbsd-ports@opsec.eu>
# $FreeBSD$
PORTNAME= Math-Int128
PORTVERSION= 0.22
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:${PORTSDIR}/math/p5-Math-Int64
RUN_DEPENDS= p5-Math-Int64>=0.51:${PORTSDIR}/math/p5-Math-Int64
USES= perl5
USE_PERL5= configure
NOT_FOR_ARCHS= i386 armv6
.include <bsd.port.pre.mk>
# need clang 3.2+ or GCC 4.4+
.if exists(/usr/bin/clang) && ${OSVERSION} > 901505
CC= /usr/bin/clang
.else
USE_GCC= yes
.endif
post-stage:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Math/Int128/Int128.so
.include <bsd.port.post.mk>