mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-08 12:01:56 +00:00
![Juraj Lutter](/assets/img/avatar_default.png)
Changelog: - SECURITY FIX [CVE-2020-35573]: PostSRSd could be tricked into consuming a lot of CPU time with an SRS address that has a very long time stamp tag - Fixed a bug where PostSRSd would occasionally create invalid SRS addresses if the used secret is extremely long PR: 252007 Submitted by: ports@bsdserwis.com Reviewed by: osa (mentor) Approved by: osa (mentor) Security: eb2845c4-43ce-11eb-aba5-00a09858faf5 Differential Revision: https://reviews.freebsd.org/D27702
36 lines
684 B
Makefile
36 lines
684 B
Makefile
# Created by: Krzysztof Stryjek <ports@bsdserwis.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= postsrsd
|
|
PORTVERSION= 1.10
|
|
CATEGORIES= mail
|
|
|
|
MAINTAINER= ports@bsdserwis.com
|
|
COMMENT= Postfix Sender Rewriting Scheme daemon
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= help2man:misc/help2man
|
|
|
|
USES= cmake pkgconfig
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= roehling
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
CMAKE_ARGS= --no-warn-unused-cli \
|
|
-DCMAKE_INCLUDE_PATH="${LOCALBASE}/include" \
|
|
-DCMAKE_LIBRARY_PATH="${LOCALBASE}/lib"
|
|
|
|
PLIST_FILES= man/man8/postsrsd.8.gz \
|
|
sbin/postsrsd
|
|
|
|
PORTDOCS= README.md README_UPGRADE.md main.cf.ex
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DOCS_CMAKE_BOOL= ENABLE_DOCS
|
|
|
|
.include <bsd.port.mk>
|