aboutsummaryrefslogtreecommitdiffstats
path: root/math/gmp/Makefile
blob: 2f759a714b0eaa25974cd39c95506db1188c25d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
PORTNAME=	gmp
PORTVERSION=	6.3.0
CATEGORIES=	math devel
MASTER_SITES=	GNU

MAINTAINER=	ale@FreeBSD.org
COMMENT=	Free library for arbitrary precision arithmetic
WWW=		https://gmplib.org/

LICENSE=	LGPL3

USES=		cpe libtool tar:xz pathfix
CPE_VENDOR=	gmplib
USE_LDCONFIG=	yes

HAS_CONFIGURE=	yes
CONFIGURE_ARGS=	--prefix=${PREFIX} \
		--enable-cxx

INSTALL_TARGET=	install-strip
TEST_TARGET=	check

OPTIONS_DEFINE=	CPU_OPTS INFO
OPTIONS_DEFAULT=	INFO

CPU_OPTS_DESC=	Enable assembly optimizations for your CPU

INFO_USES=	makeinfo
INFO_CONFIGURE_ENV=	MAKEINFO="${MAKEINFO} --no-split"
INFO_INFO=		gmp

.include <bsd.port.pre.mk>

.if ${ARCH:Mmips*}
MAKE_JOBS_UNSAFE=yes
.endif

.if ! ${PORT_OPTIONS:MCPU_OPTS}
CONFIGURE_ARGS+=--build=${CONFIGURE_TARGET}
.elif ${ARCH:S/64//} != ${ARCH}
.if ${ARCH:Mpowerpc64*}
CONFIGURE_ENV+=	ABI="mode64"
.elif ${ARCH:Mriscv64*}
CONFIGURE_ENV+=	ABI="standard"
.else
CONFIGURE_ENV+=	ABI="64"
.endif
.else
CONFIGURE_ENV+=	ABI="32"
.endif

post-extract-INFO-on:
	@${RM} ${WRKSRC}/doc/gmp.info*

post-patch-INFO-off:
	${REINPLACE_CMD} -e '/^SUBDIRS/ s|doc||' ${WRKSRC}/Makefile.in

.include <bsd.port.post.mk>