blob: fc38ed36d9851924815881bdd5c71f05df6a5b5d (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# New ports collection makefile for: py-twisted
# Date created: 16 August 2001
# Whom: Johann Visagie <wjv@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= twisted
PORTVERSION= 9.0.0
CATEGORIES= devel net python
MASTER_SITES= # empty
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTFILES= # none
MAINTAINER= python@FreeBSD.org
COMMENT= Metaport of Twisted, an event-driven networking engine
NO_BUILD= yes
USE_PYTHON= yes
PYDISTUTILS_NOEGGINFO= yes
WRKSRC= ${WRKDIR}/Twisted-${PORTVERSION}
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/twisted:${PORTSDIR}/devel/py-twistedCore
OPTIONS= CONCH "SSH and SFTP protocol" on \
LORE "Documentation generator" on \
MAIL "SMTP, IMAP and POP protocol" on \
NAMES "DNS protocol" on \
NEWS "NNTP protocol" on \
RUNNER "Process management" on \
WEB "HTTP protocol" on \
WEB2 "HTTP/1.1 Server Framework" on \
WORDS "Chat and Instant Messaging" on
do-install:
${DO_NADA}
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_CONCH)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/conch/__init__.py:${PORTSDIR}/security/py-twistedConch
.endif
.if !defined(WITHOUT_FLOW)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/flow/__init__.py:${PORTSDIR}/devel/py-twistedFlow
.endif
.if !defined(WITHOUT_MAIL)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/mail/__init__.py:${PORTSDIR}/mail/py-twistedMail
.endif
.if !defined(WITHOUT_NAMES)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/names/__init__.py:${PORTSDIR}/dns/py-twistedNames
.endif
.if !defined(WITHOUT_NEWS)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/news/__init__.py:${PORTSDIR}/news/py-twistedNews
.endif
.if !defined(WITHOUT_PAIR)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/pair/__init__.py:${PORTSDIR}/net/py-twistedPair
.endif
.if !defined(WITHOUT_RUNNER)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/runner/__init__.py:${PORTSDIR}/devel/py-twistedRunner
.endif
.if !defined(WITHOUT_LORE)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/lore/__init__.py:${PORTSDIR}/textproc/py-twistedLore
.endif
.if !defined(WITHOUT_WEB)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/web/__init__.py:${PORTSDIR}/www/py-twistedWeb
.endif
.if !defined(WITHOUT_WEB2)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/web2/__init__.py:${PORTSDIR}/www/py-twistedWeb2
.endif
.if !defined(WITHOUT_WORDS)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/twisted/words/__init__.py:${PORTSDIR}/net-im/py-twistedWords
.endif
.include <bsd.port.post.mk>
|