diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-03-16 06:03:42 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-03-16 06:03:42 +0800 |
commit | a6c5ddc500ddbed753f9226a59314be576044fb3 (patch) | |
tree | d72ad8a21ce169d4163dc3bde69207c34ac21e0d /mail/qmail | |
parent | 77880fbd9bd309254c57bcff0847732e9eb159c5 (diff) | |
download | freebsd-ports-gnome-a6c5ddc500ddbed753f9226a59314be576044fb3.tar.gz freebsd-ports-gnome-a6c5ddc500ddbed753f9226a59314be576044fb3.tar.zst freebsd-ports-gnome-a6c5ddc500ddbed753f9226a59314be576044fb3.zip |
- Convert USE_QMAIL_RUN, USE_QMAIL_BUILD and WANT_QMAIL into USES feature
bapt contributed to the qmail.mk as well
- Trim headers
USES= qmail:run will add qmail into RUN_DEPENDS
USES= qmail:build will add qmail into BUILD_DEPENDS
USES= qmail[:both] will add qmail into both RUN and BUILD DEPENDS
USES= qmail:vars will set QMAIL_PREFIX
With hat: portmgr
Diffstat (limited to 'mail/qmail')
-rw-r--r-- | mail/qmail/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/qmail/Makefile b/mail/qmail/Makefile index 8f12ab673fd9..9884e4c870de 100644 --- a/mail/qmail/Makefile +++ b/mail/qmail/Makefile @@ -18,6 +18,9 @@ DIST_SUBDIR= qmail CONFLICTS?= qmail-ldap-[0-9]* qmail-mysql-[0-9]* qmail-spamcontrol-[0-9]* qmail-tls-[0-9]* CONFLICTS+= qmail-vida-[0-9]* +USES= qmail:vars +PREFIX?= ${QMAIL_PREFIX} + MAKE_JOBS_UNSAFE= yes PORTSCOUT= skipv:1.04 @@ -150,7 +153,6 @@ PATCHFILES+= qmail-1.03-tls-${TLS_PATCH_DATE}-renato_v2.patch:tls PATCH_SITES+= ${MASTER_SITE_LOCAL:S/$/:dns,sendmail_flagf,rfc2821,ldap,mysql,tls,quota,blockexec,doublebounce,spf,localtime,qmtpc_outgoingip/} PATCH_SITE_SUBDIR+= garga/qmail/:dns,sendmail_flagf,rfc2821,ldap,mysql,tls,quota,blockexec,doublebounce,spf,localtime,qmtpc_outgoingip -PREFIX?= ${QMAIL_PREFIX} QMAIL_VERSION?= 1.03 .if !defined(BARRIER_SMTP_AUTH_PATCH) @@ -336,8 +338,6 @@ BOOTFILES= home home+df proc proc+df binm1 binm1+df \ CONFIGUREPROGRAMS= install dnsfq hostname dnsip ipmeprint dnsptr CONFIGURESCRIPTS= config config-fast -WANT_QMAIL= yes - .include <bsd.port.options.mk> .if defined(SLAVE_LDAP) && ${PORT_OPTIONS:MTLS} |