mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
4a4ec28d37
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
64 lines
1.5 KiB
Makefile
64 lines
1.5 KiB
Makefile
# $FreeBSD$
|
|
#
|
|
# Feature: qmail
|
|
# Usage: USES=qmail or USES=qmail:ARGS
|
|
# Valid ARGS: both (default, implicit), run, build, vars
|
|
#
|
|
# Ports can use the following vars:
|
|
#
|
|
# QMAIL_PREFIX - Define it if qmail is installed in a different PREFIX.
|
|
# Default: /var/qmail
|
|
#
|
|
# QMAIL_SLAVEPORT - Define it if you install a slaveport of qmail, to
|
|
# prevent stale dependencies. Valid slaveports are:
|
|
# ldap, mysql, spamcontrol and tls.
|
|
#
|
|
# MAINTAINER= bdrewery@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_QMAIL_MK)
|
|
_INCLUDE_QMAIL_MK= yes
|
|
|
|
QMAIL_PREFIX?= /var/qmail
|
|
|
|
.if !defined(qmail_ARGS)
|
|
qmail_ARGS= both
|
|
.endif
|
|
|
|
.if ${qmail_ARGS} == "build"
|
|
BUILD_DEPENDS+= ${_QMAIL_DEPENDS}
|
|
.elif ${qmail_ARGS} == "run"
|
|
RUN_DEPENDS+= ${_QMAIL_DEPENDS}
|
|
.elif ${qmail_ARGS} == "both"
|
|
BUILD_DEPENDS+= ${_QMAIL_DEPENDS}
|
|
RUN_DEPENDS+= ${_QMAIL_DEPENDS}
|
|
.elif ${qmail_ARGS} == "vars"
|
|
.else
|
|
IGNORE= USES=qmail - invalid args: [${qmail_ARGS}] specified
|
|
.endif
|
|
|
|
.if ${qmail_ARGS} != "vars"
|
|
|
|
_QMAIL_VALID_SLAVEPORTS= ldap mysql spamcontrol tls
|
|
|
|
. if defined(QMAIL_SLAVEPORT)
|
|
. for slave in ${_QMAIL_VALID_SLAVEPORTS}
|
|
. if ${QMAIL_SLAVEPORT:tl} == ${slave}
|
|
_QMAIL_SLAVEPORT_OKAY= true
|
|
. endif
|
|
. endfor
|
|
|
|
. if !defined(_QMAIL_SLAVEPORT_OKAY)
|
|
IGNORE= Invalid QMAIL_SLAVEPORT value. Only one can be set, valid values are: ${_QMAIL_VALID_SLAVEPORTS}
|
|
. endif
|
|
. endif
|
|
|
|
. if defined(QMAIL_SLAVEPORT)
|
|
_QMAIL_DEPENDS= ${QMAIL_PREFIX}/bin/qmail-send:${PORTSDIR}/mail/qmail-${QMAIL_SLAVEPORT:tl}
|
|
. else
|
|
_QMAIL_DEPENDS= ${QMAIL_PREFIX}/bin/qmail-send:${PORTSDIR}/mail/qmail
|
|
. endif
|
|
|
|
.endif
|
|
|
|
.endif
|