aboutsummaryrefslogtreecommitdiffstats
path: root/math/crlibm/Makefile
blob: 510c5662b902df58c13d37487020b17a0b7b0697 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
# New ports collection makefile for:    crlibm
# Date created:     10 January 2012
# Whom:         bf@FreeBSD.org
#
# $FreeBSD$
#

PORTNAME=   crlibm
DISTVERSION=    1.0beta4
PORTREVISION=   1
CATEGORIES= math
MASTER_SITES=   http://lipforge.ens-lyon.fr/frs/download.php/%SUBDIR%/:1,2,3 \
        LOCAL/bf/crlibm:4
MASTER_SITE_SUBDIR= 162/:1 153/:2 154/:3
DISTFILES=  ${DISTNAME}${EXTRACT_SUFX}:1,4
.if make(makesum) || !defined(NOPORTDOCS)
DISTFILES+= crlibm-1.0beta3.pdf:2,4 tripledoubleprocedures-1.0beta3.pdf:3,4
.endif
DIST_SUBDIR=    crlibm
EXTRACT_ONLY=   ${DISTNAME}${EXTRACT_SUFX}

MAINTAINER= bf@FreeBSD.org
COMMENT=    Correctly-rounded mathematics library

LICENSE=    LGPL21

GNU_CONFIGURE=  yes

CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
OPTIONS=    "TEST" "Include all test capabilities (requires MPFR)" "on"

.include <bsd.port.options.mk>

post-patch:
#7-STABLE has log2() in libm after r226457 on 17 Oct 2011, but
#there was no accompanying __FreeBSD_version bump
.if ${OSVERSION} < 802502 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900027)
    @${REINPLACE_CMD} \
    -e '/testfun_libm[[:blank:]]*=[[:blank:]]*log2;/s/log2/NULL/' \
        ${WRKSRC}/tests/test_common.c
.endif
    @${REINPLACE_CMD} -e 's/\($$(AM_CFLAGS)\) \($$(CFLAGS)\)/\2 \1/' \
        ${WRKSRC}/tests/Makefile.in

.if !empty(MACHINE_CPU:Msse2)
CFLAGS+=        -msse2 -mfpmath=sse
CONFIGURE_ARGS+=    --enable-sse2
.endif

.if defined(WITH_TEST)
CONFIGURE_ARGS+=    --enable-mpfr
LIB_DEPENDS+=       mpfr.4:${PORTSDIR}/math/mpfr
.else
CONFIGURE_ARGS+=    --disable-mpfr
.endif

check regression-test test: build
    @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \
    ${MAKE_ARGS} check

.if !defined(NOPORTDOCS)
PORTDOCS=   ${DISTFILES:C|\:.*||:M*.pdf}

post-install:
    @${MKDIR} ${DOCSDIR}
    @cd ${_DISTDIR}; ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}

.endif

.include <bsd.port.mk>