26 lines
618 B
Makefile
26 lines
618 B
Makefile
|
COMMENT = greytrapping daemon to complement OpenBSD spamd
|
||
|
|
||
|
DISTNAME = greyscanner-2.01
|
||
|
CATEGORIES = mail
|
||
|
REVISION = 1
|
||
|
|
||
|
# BSD
|
||
|
PERMIT_PACKAGE = Yes
|
||
|
|
||
|
MASTER_SITES = https://github.com/gonzalo-/openbsd-distfiles/raw/main/greyscanner/
|
||
|
|
||
|
RUN_DEPENDS = mail/p5-Email-Valid \
|
||
|
net/p5-Net-DNS
|
||
|
|
||
|
NO_BUILD = Yes
|
||
|
NO_TEST = Yes
|
||
|
PKG_ARCH = *
|
||
|
|
||
|
do-install:
|
||
|
${INSTALL_SCRIPT} ${WRKSRC}/greyscanner ${PREFIX}/sbin
|
||
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/greyscanner
|
||
|
${INSTALL_DATA} ${WRKSRC}/greyscanner.conf ${PREFIX}/share/examples/greyscanner
|
||
|
${INSTALL_MAN} ${WRKSRC}/greyscanner.1 ${PREFIX}/man/man1
|
||
|
|
||
|
.include <bsd.port.mk>
|