mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
58 lines
1.5 KiB
Makefile
58 lines
1.5 KiB
Makefile
# Created by: Jaap Akkerhuis <jaap@NLnetLabs.nl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= opendmarc
|
|
PORTVERSION= 1.3.1
|
|
CATEGORIES= mail security
|
|
MASTER_SITES= SF/${PORTNAME} \
|
|
SF/${PORTNAME}/Previous%20Releases
|
|
|
|
MAINTAINER= freebsd@gushi.org
|
|
COMMENT= DMARC library and milter implementation
|
|
|
|
LICENSE= BSD3CLAUSE SENDMAIL
|
|
LICENSE_COMB= multi
|
|
|
|
LICENSE_FILE_SENDMAIL= ${WRKSRC}/LICENSE.Sendmail
|
|
LICENSE_GROUPS_SENDMAIL= FSF OSI
|
|
LICENSE_NAME_SENDMAIL= Sendmail Open Source License
|
|
LICENSE_PERMS_SENDMAIL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
.if !exists( /usr/include/libmilter/mfapi.h )
|
|
BUILD_DEPENDS+= ${LOCALBASE}/include/libmilter/mfapi.h:${PORTSDIR}/mail/sendmail
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
.endif
|
|
|
|
USES= libtool shebangfix
|
|
SHEBANG_FILES= reports/opendmarc-expire.in \
|
|
reports/opendmarc-import.in \
|
|
reports/opendmarc-params.in \
|
|
reports/opendmarc-reports.in
|
|
|
|
USE_RC_SUBR= opendmarc
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= SPF
|
|
OPTIONS_DEFAULT= SPF
|
|
SPF_DESC= Include direct SPF checking support
|
|
|
|
SPF_BUILD_DEPENDS+= libspf2>=1.2.5:${PORTSDIR}/mail/libspf2
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSPF}
|
|
CONFIGURE_ARGS+= --with-spf --with-spf2-include=${LOCALBASE}/include/spf2 --with-spf2-lib=${LOCALBASE}/lib
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/mail
|
|
${INSTALL_DATA} \
|
|
${WRKSRC}/opendmarc/opendmarc.conf.sample ${STAGEDIR}${PREFIX}/etc/mail
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libopendmarc.so.2
|
|
|
|
.include <bsd.port.mk>
|