freebsd-ports/sysutils/duplicity/Makefile
Edwin Groothuis 699007ee35 [PATCH] sysutils/duplicity: update to 0.4.12
New in v0.4.12 (2008/07/22)
	---------------------------
	Dan Muresan created a patch to minimize the number of password
	prompts. To do so, it sometimes requests a password once without
	confirmation; if later it turns out that a full backup is needed,
	the user is prompted for confirmation.

	bug #23540: doc bug in man page (environment FTP_PASSWORD)
	https://savannah.nongnu.org/bugs/index.php?23540

	bug #23362: Documentation for --version, --time-separator <char>
	https://savannah.nongnu.org/bugs/index.php?23362

	bug #23283: interactive passphrase query is suboptimal
	https://savannah.nongnu.org/bugs/index.php?23283

	bug #23066 was not actually applied to 0.4.11. Its here now.
	https://savannah.nongnu.org/bugs/index.php?23066

	bug #22826: regressions caused by boto 1.1c
	https://savannah.nongnu.org/bugs/index.php?22826

	New in v0.4.11 (2008/05/05)
	---------------------------
	Changes applied to allow duplicity to run under Python 2.3 again.

	patch #6485: Reinstate patch #6340 with a detailed explanation.
	https://savannah.nongnu.org/patch/index.php?6485

	bug #23066: ssh uris with given portnumbers are not handled correctly
	https://savannah.nongnu.org/bugs/index.php?23066

PR:		ports/125987
Submitted by:	peter.schuller@infidyne.com
Approved by:	maintainer timeout
2008-08-15 01:09:21 +00:00

49 lines
1.2 KiB
Makefile

# New ports collection makefile for: duplicity
# Date created: Wed Jun 11 19:53:46 CEST 2003
# Whom: Gerhard Häring <gh@ghaering.de>
#
# $FreeBSD$
#
PORTNAME= duplicity
PORTVERSION= 0.4.12
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= vd@FreeBSD.org
COMMENT= Untrusted backup using rsync algorithm
LIB_DEPENDS= rsync.1:${PORTSDIR}/net/librsync
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg \
${PYTHON_SITELIBDIR}/GnuPGInterface.py:${PORTSDIR}/security/py-gnupg
PEXPECT_DIR= misc/py-pexpect
OPTIONS= PEXPECT "Depend on ${PEXPECT_DIR}, needed for ssh backend" On
USE_PYTHON= 2.4+
USE_PYDISTUTILS=yes
MAN1= duplicity.1 rdiffdir.1
DOCFILES= CHANGELOG COPYING README
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_PEXPECT)
PEXPECT_DEP= ${PYTHON_SITELIBDIR}/pexpect.py:${PORTSDIR}/${PEXPECT_DIR}
BUILD_DEPENDS+= ${PEXPECT_DEP}
RUN_DEPENDS+= ${PEXPECT_DEP}
.endif
post-install:
${INSTALL_MAN} ${WRKSRC}/duplicity.1 ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/rdiffdir.1 ${PREFIX}/man/man1
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for file in ${DOCFILES}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>