blob: 027087c7d67e43fd655114dba9c10980886a5bdb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Ports collection makefile for: pear-Net_SMTP
# Date created: 26 November 2002
# Whom: Thierry Thomas (<thierry@pompo.net>)
#
# $FreeBSD$
#
PORTNAME= Net_SMTP
PORTVERSION= 1.2.6
PORTREVISION= 1
CATEGORIES= net mail www pear
MAINTAINER= antonio@php.net
COMMENT= PEAR class that provides an implementation of the SMTP protocol
BUILD_DEPENDS= ${PEARDIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket
RUN_DEPENDS= ${BUILD_DEPENDS}
CATEGORY= Net
FILES= SMTP.php
DOCS= guide.txt
TESTS= auth.phpt basic.phpt config.php.dist
EXAMPLES= basic.php
_EXAMPLESDIR= docs/examples
LATEST_LINK= pear-Net_SMTP
OPTIONS= PEAR_AUTH_SASL "PEAR::Auth_SASL support" off
.include <bsd.port.pre.mk>
.if defined(WITH_PEAR_AUTH_SASL)
BUILD_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL
.endif
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>
|