mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
2a789c8379
which is set appropriately by the b.p.m when `pkg-message' appears on the SUB_FILES list.
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# Created by: clive
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nullmailer
|
|
PORTVERSION= 1.13
|
|
PORTREVISION= 3
|
|
PORTEPOCH= 1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://untroubled.org/nullmailer/ \
|
|
http://untroubled.org/nullmailer/archive/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= MTA for hosts which relay to a fixed set of smart relays
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LOCALSTATEDIR= /var/spool
|
|
|
|
.if defined(MAINTAINER_MODE)
|
|
UID_FILES+= ../../UIDs
|
|
GID_FILES+= ../../GIDs
|
|
.endif
|
|
USERS= nullmail
|
|
GROUPS= nullmail
|
|
NULLMAIL_UID= 522
|
|
NULLMAIL_GID= 522
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--localstatedir=${LOCALSTATEDIR}
|
|
|
|
USE_SUBMAKE= yes
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
SUB_FILES+= pkg-install pkg-deinstall pkg-message
|
|
|
|
PLIST_SUB+= LOCALSTATEDIR=${LOCALSTATEDIR} NULLMAIL_USER=${USERS}
|
|
SUB_LIST+= LOCALSTATEDIR=${LOCALSTATEDIR} NULLMAIL_USER=${USERS}
|
|
|
|
OPTIONS_DEFINE= GNUTLS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MGNUTLS}
|
|
LIB_DEPENDS+= libgnutls.so:security/gnutls
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lgnutls
|
|
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS+=--enable-tls
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-tls
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA} -c ${FILESDIR}/remotes.sample ${STAGEDIR}${ETCDIR}
|
|
${ECHO} 'hostname' > ${STAGEDIR}${ETCDIR}/me.sample
|
|
|
|
.include <bsd.port.mk>
|