blob: c8ffae03e074b5920efc961b4f80560b5af436c2 (
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
|
# Created by: Cheng-Lung Sung <clsung@FreeBSD.org>
# $FreeBSD$
PORTNAME= numdiff
PORTVERSION= 5.6.1
CATEGORIES= math textproc
MASTER_SITES= SAVANNAH
MAINTAINER= ports@FreeBSD.org
COMMENT= Compare putatively similar files, ignoring small numeric differences
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --prefix=${PREFIX} \
--mandir=${PREFIX}/man \
--exec-prefix=${PREFIX} \
--infodir=${PREFIX}/${INFO_PATH} \
--disable-nls
LIBS+= -lm
USES= gmake
INFO= numdiff
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MDOCS}
CONFIGURE_ARGS+= --docdir=${WRKDIR}/doc
.endif
.include <bsd.port.mk>
|