mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
365795074e
Requested by: kris Apologies to: mi
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# New ports collection makefile for: milter-skem
|
|
# Date created: 14 July 2004
|
|
# Whom: Mikhail Teterin
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= skem
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://virtual-estates.net/skem/
|
|
|
|
MAINTAINER= mi@aldan.algebra.com
|
|
COMMENT= Cache earlier sendmail's verdicts for the relays
|
|
|
|
USE_BZIP2= yes
|
|
|
|
PLIST_FILES= sbin/skem
|
|
MAN8= skem.8
|
|
MANCOMPRESSED= maybe
|
|
|
|
OPTIONS= SKEM_MILTER421 "Sendmail was built with -D_FFR_MILTER_421" off \
|
|
SKEM_NO_CLEANUP "Omit the auto-cleanup module" off \
|
|
SKEM_NO_LOGWATCHER "Omit the log-watching module" off \
|
|
SKEM_NETINET6 "Support IPv6 addresses (not tested)" off \
|
|
SKEM_NETINET "Support IPv4 addresses" on
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 700011
|
|
EXTRA_PATCHES= files/timet.patch
|
|
.endif
|
|
|
|
.if defined(PTHREAD_LIBS)
|
|
MAKE_ENV+= PTHREAD_LIBS="${PTHREAD_LIBS}"
|
|
.endif
|
|
.if defined(PTHREAD_CFLAGS)
|
|
MAKE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}"
|
|
.endif
|
|
|
|
.for o in ${OPTIONS:MSKEM_*}
|
|
. if defined(WITH_$o)
|
|
MAKE_ARGS+= -D$o
|
|
. endif
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|