mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
7946626b9e
PR: 148051 Pointyhat to: bapt
61 lines
1.4 KiB
Makefile
61 lines
1.4 KiB
Makefile
# Created by: clive
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nullmailer
|
|
PORTVERSION= 1.13
|
|
PORTREVISION= 2
|
|
PORTEPOCH= 1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://untroubled.org/nullmailer/ \
|
|
http://untroubled.org/nullmailer/archive/
|
|
MASTER_SITE_SUBDIR= ${PORTVERSION}
|
|
|
|
MAINTAINER= uffe@uffe.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
|
|
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
PKGMESSAGE= ${WRKDIR}/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:${PORTSDIR}/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>
|