1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/math/p5-Math-Int128/Makefile
Gerald Pfeifer 1cd277bdce Update the default version of GCC used in the Ports Collection from
GCC 4.6.4 to GCC 4.7.3.  This entails updating the lang/gcc port as
well as changing the default in Mk/bsd.default-versions.mk.

Part II, Bump PORTREVISIONs.

PR:		182136
Supported by:	Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by:	bdrewery (two -exp runs)
2014-03-10 20:55:20 +00:00

34 lines
645 B
Makefile

# Created by: Kurt Jaeger <fbsd-ports@opsec.eu>
# $FreeBSD$
PORTNAME= Math-Int128
PORTVERSION= 0.13
PORTREVISION= 2
CATEGORIES= math perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= fbsd-ports@opsec.eu
COMMENT= Manipulate 128 bits integers in Perl
LICENSE= ART10
BUILD_DEPENDS= p5-Math-Int64>=0.28:${PORTSDIR}/math/p5-Math-Int64
RUN_DEPENDS= p5-Math-Int64>=0.28:${PORTSDIR}/math/p5-Math-Int64
USES= perl5
USE_PERL5= configure
NOT_FOR_ARCHS= i386
.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
.include <bsd.port.post.mk>