forked from Lainports/freebsd-ports
In order to retain compatibility with Python 2, mail/py-python-slimta mandates an older version of mail/py-pysasl than what is in Ports. However, lang/python27 has expired so there should be no compatibility issues with FreeBSD. Reviewed by: 0mp (mentor) Approved by: 0mp (mentor) Differential Revision: https://reviews.freebsd.org/D28051
36 lines
1 KiB
Makefile
36 lines
1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= python-slimta
|
|
PORTVERSION= 4.1.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= nc@FreeBSD.org
|
|
COMMENT= Python libraries to send, receive, and queue email
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gevent>=1.1rc:devel/py-gevent@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pycares>=1:dns/py-pycares@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pysasl>=0.4.0:mail/py-pysasl@${PY_FLAVOR}
|
|
|
|
USES= python:3.6+
|
|
USE_PYTHON= autoplist distutils
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= BOTO REDIS SASL
|
|
OPTIONS_DEFAULT= SASL
|
|
|
|
BOTO_DESC= Support for Amazon Web Services
|
|
REDIS_DESC= Redis Support
|
|
SASL_DESC= SASL Support
|
|
|
|
BOTO_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto>0:devel/py-boto@${PY_FLAVOR}
|
|
REDIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis>0:databases/py-redis@${PY_FLAVOR}
|
|
SASL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyspf>0:mail/py-pyspf@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}py3dns>0:dns/py-py3dns@${PY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|