mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
4f5544a38b
Tested by: poudriere Approved by: portmgr (bapt)
29 lines
695 B
Makefile
29 lines
695 B
Makefile
# Created by: Thierry Thomas (<thierry@pompo.net>)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Mail
|
|
DISTVERSION= 1.2.0
|
|
PORTEPOCH= 1
|
|
CATEGORIES= mail www pear
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= PEAR class that provides multiple interfaces for sending emails
|
|
|
|
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
|
|
RUN_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
|
|
|
|
PEAR_AUTOINSTALL= yes
|
|
|
|
LATEST_LINK= pear-${PORTNAME}
|
|
OPTIONS_DEFINE= PEAR_NET_SMTP
|
|
PEAR_NET_SMTP_DESC= PEAR::Net_SMTP support
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MPEAR_NET_SMTP}
|
|
RUN_DEPENDS+= ${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP
|
|
.endif
|
|
|
|
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
|
|
.include <bsd.port.mk>
|