aboutsummaryrefslogtreecommitdiffstats
path: root/math/ndiff/Makefile
blob: 5cd08b615d6af8dd5e5c5f3abd6cd52e04554e82 (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
# Created by: Stefan A. Deutscher (sad@mailaps.org)
# $FreeBSD$

PORTNAME=   ndiff
PORTVERSION=    2.00
PORTREVISION=   4
CATEGORIES= math
MASTER_SITES=   ftp://ftp.math.utah.edu/pub/misc/

MAINTAINER= luca.pizzamiglio@gmail.com
COMMENT=    Compare files, ignoring numeric differences

LICENSE=    GPLv2

USES=       desthack
GNU_CONFIGURE=  yes

PLIST_FILES=    bin/${PORTNAME} \
        man/man1/${PORTNAME}.1.gz \
        %%DATADIR%%/${PORTNAME}.awk

PORTDOCS=   *.html *.pdf *.ps *.txt

OPTIONS_DEFINE= DOCS GMP

GMP_LIB_DEPENDS=    libgmp.so:${PORTSDIR}/math/gmp
GMP_CFLAGS= -I${LOCALBASE}/include
GMP_LDFLAGS=    -L${LOCALBASE}/lib
GMP_CONFIGURE_ON=   --with-gmp

.include <bsd.port.options.mk>

.if ! ${PORT_OPTIONS:MGMP}
.if ${ARCH} == sparc64
CONFIGURE_ARGS+=    --with-long-double
.else
CONFIGURE_ARGS+=    --with-double
.endif
.endif

post-patch:
    ${REINPLACE_CMD} -e \
    's|$$(shrlibtop)/$$(PROGNAME)-$$(VERSION)|$${DESTDIR}${DATADIR}|; \
    s|.*shrlibtop.*||; \
    s|664|644|' ${WRKSRC}/Makefile.in

post-install:
    ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}

    @${MKDIR} ${STAGEDIR}${DOCSDIR}
    ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}

.include <bsd.port.mk>