blob: 867badb2bdc7276af80b4c0db336339dc6d3e801 (
plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# Created by: Gerhard Häring <gh@ghaering.de>
# $FreeBSD$
PORTNAME= duplicity
PORTVERSION= 0.6.21
CATEGORIES= sysutils
MASTER_SITES= http://launchpad.net/duplicity/0.6-series/${PORTVERSION}/+download/
MAINTAINER= jase@FreeBSD.org
COMMENT= Backup tool that uses librsync and GnuPG
LIB_DEPENDS= rsync:${PORTSDIR}/net/librsync
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
FETCH_ARGS= -pRr
CONFLICTS= duplicity-0.5.* duplicity-devel-[0-9]*
USE_PYTHON= 2.5+
USE_PYDISTUTILS=yes
USE_LDCONFIG= yes
OPTIONS_DEFINE= NLS DOCS SSH FTP FTPS S3 GDOCS CLOUDFILES
OPTIONS_DEFAULT=SSH FTP FTPS S3
CLOUDFILES_DESC=Install CloudFiles backend
FTP_DESC= Install FTP backend
FTPS_DESC= Install FTPS backend
GDOCS_DESC= Install Google Docs backend
S3_DESC= Install Amazon S3 backend
SSH_DESC= Install SSH/SCP/SFTP backend
.include "bsd.port.options.mk"
.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.else
PLIST_SUB+= NLS="@comment "
.endif
.if ${PORT_OPTIONS:MSSH}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}paramiko>=1.7.7.1:${PORTSDIR}/security/py-paramiko
PLIST_SUB+= SSH=""
.else
PLIST_SUB+= SSH="@comment "
.endif
.if ${PORT_OPTIONS:MFTP}
RUN_DEPENDS+= ncftp>=3.2.2:${PORTSDIR}/ftp/ncftp3
PLIST_SUB+= FTP=""
.else
PLIST_SUB+= FTP="@comment "
.endif
.if ${PORT_OPTIONS:MFTPS}
RUN_DEPENDS+= lftp>=3.7.15:${PORTSDIR}/ftp/lftp
PLIST_SUB+= FTPS=""
.else
PLIST_SUB+= FTPS="@comment "
.endif
.if ${PORT_OPTIONS:MS3}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}boto>=1.6b:${PORTSDIR}/devel/py-boto
PLIST_SUB+= S3=""
.else
PLIST_SUB+= S3="@comment "
.endif
.if ${PORT_OPTIONS:MGDOCS}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}gdata>0:${PORTSDIR}/devel/py-gdata
PLIST_SUB+= GDOCS=""
.else
PLIST_SUB+= GDOCS="@comment "
.endif
.if ${PORT_OPTIONS:MCLOUDFILES}
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}cloudfiles>0:${PORTSDIR}/net/py-cloudfiles
PLIST_SUB+= CLOUDFILES=""
.else
PLIST_SUB+= CLOUDFILES="@comment "
.endif
post-patch:
.if empty(PORT_OPTIONS:MNLS)
@${REINPLACE_CMD} -e '54,62d' \
${WRKSRC}/setup.py
.endif
.if empty(PORT_OPTIONS:MSSH)
@${FIND} ${WRKSRC}/${PORTNAME}/backends -type f -depth 1 -name '*ssh*' -delete
.endif
.if empty(PORT_OPTIONS:MFTP)
@${RM} -f ${WRKSRC}/${PORTNAME}/backends/ftpbackend.py
.endif
.if empty(PORT_OPTIONS:MFTPS)
@${RM} -f ${WRKSRC}/${PORTNAME}/backends/ftpsbackend.py
.endif
.if empty(PORT_OPTIONS:MS3)
@${FIND} ${WRKSRC}/${PORTNAME}/backends -type f -depth 1 -name '*boto*' -delete
.endif
.if empty(PORT_OPTIONS:MGDOCS)
@${RM} -f ${WRKSRC}/${PORTNAME}/backends/gdocsbackend.py
.endif
.if empty(PORT_OPTIONS:MCLOUDFILES)
@${RM} -f ${WRKSRC}/${PORTNAME}/backends/cloudfilesbackend.py
.endif
MAN1= duplicity.1 rdiffdir.1
DOCFILES= COPYING \
README \
README-REPO \
README-LOG \
tarfile-LICENSE \
tarfile-CHANGES \
CHANGELOG
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
.for file in ${DOCFILES}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|