mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
a139f147ac
- Take maintainership - Remove now empty files/ - Do not use SUB_FILES for pkg-message as there is nothing to substitute - Set LICENSE and LICENSE_FILE - Sort variables - Do not set WRKSRC as it is not necessary - Reword pkg-message - Use @sample for a sample configuration file and bump port revision Reviewed by: krion Approved by: krion (mentor) Differential Revision: https://reviews.freebsd.org/D17669
26 lines
565 B
Makefile
26 lines
565 B
Makefile
# Created by: dominik karczmarski <dominik@karczmarski.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fswatch
|
|
DISTVERSION= 0.02beta5
|
|
PORTREVISION= 1
|
|
CATEGORIES= security sysutils
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-0.02beta5
|
|
|
|
MAINTAINER= 0mp@FreeBSD.org
|
|
COMMENT= File system checksum checker
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--enable-regex \
|
|
--enable-stflags
|
|
GNU_CONFIGURE= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} '/INSTALL/ s|prefix)|DESTDIR)$$(&|' \
|
|
${WRKSRC}/examples/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|