The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
22 lines
483 B
Makefile
22 lines
483 B
Makefile
# Created by: Mario S F Ferreira <lioux@FreeBSD.org>
|
|
|
|
PORTNAME= qmail
|
|
PORTVERSION= ${QMAIL_VERSION}.${MYSQL_PATCH_VERSION}
|
|
PORTREVISION= 3
|
|
CATEGORIES= mail
|
|
PKGNAMESUFFIX= -mysql
|
|
|
|
COMMENT= Secure, reliable, and fast MTA for UNIX systems with MySQL support
|
|
|
|
CONFLICTS= *qmail qmail-ldap qmail-spamcontrol *qmail-tls
|
|
|
|
MYSQL_PATCH_VERSION= 1.1.15
|
|
|
|
SLAVE_MYSQL= yes
|
|
|
|
USES= compiler:c11 mysql
|
|
|
|
MASTERDIR= ${.CURDIR}/../qmail
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
|
|
.include "${MASTERDIR}/Makefile"
|