mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
60fe37eec7
PostSRSd provides the Sender Rewriting Scheme (SRS) via TCP-based lookup tables for Postfix. SRS is needed if your mail server acts as forwarder. WWW: https://github.com/roehling/postsrsd PR: ports/191292 Submitted by: Krzysztof Stryjek <ports@bsdserwis.com>
35 lines
753 B
Makefile
35 lines
753 B
Makefile
# Created by: Krzysztof Stryjek <ports@bsdserwis.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= postsrsd
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= mail
|
|
|
|
MAINTAINER= ports@bsdserwis.com
|
|
COMMENT= Postfix Sender Rewriting Scheme daemon
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS+= help2man:${PORTSDIR}/misc/help2man \
|
|
base64:${PORTSDIR}/converters/base64
|
|
RUN_DEPENDS+= base64:${PORTSDIR}/converters/base64
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= roehling
|
|
GH_COMMIT= 4a3349d
|
|
|
|
USES= cmake pkgconfig
|
|
CMAKE_ARGS+= --no-warn-unused-cli \
|
|
-DCMAKE_INCLUDE_PATH="${LOCALBASE}/include" \
|
|
-DCMAKE_LIBRARY_PATH="${LOCALBASE}/lib"
|
|
USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
PORTDOCS= README.md main.cf.ex
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DOCS_CMAKE_ON= -DENABLE_DOCS:STRING="ON"
|
|
|
|
.include <bsd.port.mk>
|