mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +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
60 lines
1.3 KiB
Makefile
60 lines
1.3 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/
|
|
|
|
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>
|