mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
40 lines
904 B
Makefile
40 lines
904 B
Makefile
# Created by: Konstantin Reznichenko <kot@premierbank.dp.ua>
|
|
|
|
PORTNAME= fileschanged
|
|
PORTVERSION= 0.6.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Utility that reports when files have been altered
|
|
|
|
LIB_DEPENDS= libargp.so:devel/argp-standalone
|
|
BUILD_DEPENDS= help2man:misc/help2man
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= fam gmake localbase
|
|
CONFIGURE_ARGS= --datadir=${PREFIX}/share/doc --disable-nls
|
|
|
|
LIBS+= -largp
|
|
|
|
INFO= fileschanged
|
|
PORTDOCS= AUTHORS ChangeLog INSTALL NEWS README
|
|
PLIST_FILES= bin/fileschanged man/man1/fileschanged.1.gz
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's| -Werror||' ${WRKSRC}/src/Makefile.in
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for DOCFILE in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${DOCFILE} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|