mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
35 lines
669 B
Makefile
35 lines
669 B
Makefile
# Created by: Cheng-Lung Sung <clsung@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= numdiff
|
|
PORTVERSION= 5.6.1
|
|
CATEGORIES= math textproc
|
|
MASTER_SITES= SAVANNAH
|
|
|
|
MAINTAINER= clsung@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} \
|
|
LIBS=-lm \
|
|
--disable-nls
|
|
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>
|