svn commit: r332630 - head/sysutils/duplicity

Jase Thew jase at FreeBSD.org
Sun Nov 3 17:22:38 UTC 2013


Author: jase
Date: Sun Nov  3 17:22:37 2013
New Revision: 332630
URL: http://svnweb.freebsd.org/changeset/ports/332630

Log:
  - Add STAGE support
  - Limit use of Python to <= 2.7
  - Correct include of bsd.port.options.mk

Modified:
  head/sysutils/duplicity/Makefile
  head/sysutils/duplicity/pkg-plist

Modified: head/sysutils/duplicity/Makefile
==============================================================================
--- head/sysutils/duplicity/Makefile	Sun Nov  3 17:13:12 2013	(r332629)
+++ head/sysutils/duplicity/Makefile	Sun Nov  3 17:22:37 2013	(r332630)
@@ -3,6 +3,7 @@
 
 PORTNAME=	duplicity
 PORTVERSION=	0.6.22
+PORTREVISION=	1
 CATEGORIES=	sysutils
 MASTER_SITES=	http://launchpad.net/duplicity/0.6-series/${PORTVERSION}/+download/
 
@@ -16,7 +17,7 @@ FETCH_ARGS=	-pRr
 
 CONFLICTS=	duplicity-0.5.* duplicity-devel-[0-9]*
 
-USE_PYTHON=	2.5+
+USE_PYTHON=	-2.7
 USE_PYDISTUTILS=yes
 USE_LDCONFIG=	yes
 
@@ -31,8 +32,7 @@ S3_DESC=	Install Amazon S3 backend
 SSH_DESC=	Install SSH/SCP/SFTP backend
 U1_DESC=	Install Ubuntu One backend
 
-NO_STAGE=	yes
-.include "bsd.port.options.mk"
+.include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MNLS}
 USES+=		gettext
@@ -141,9 +141,9 @@ DOCFILES=	COPYING \
 
 post-install:
 .if ${PORT_OPTIONS:MDOCS}
-	${MKDIR} ${DOCSDIR}
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for file in ${DOCFILES}
-	${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
 .endfor
 .endif
 

Modified: head/sysutils/duplicity/pkg-plist
==============================================================================
--- head/sysutils/duplicity/pkg-plist	Sun Nov  3 17:13:12 2013	(r332629)
+++ head/sysutils/duplicity/pkg-plist	Sun Nov  3 17:22:37 2013	(r332630)
@@ -1,5 +1,7 @@
 bin/duplicity
 bin/rdiffdir
+man/man1/duplicity.1.gz
+man/man1/rdiffdir.1.gz
 %%PYTHON_SITELIBDIR%%/duplicity/__init__.py
 %%PYTHON_SITELIBDIR%%/duplicity/__init__.pyc
 %%PYTHON_SITELIBDIR%%/duplicity/__init__.pyo


More information about the svn-ports-head mailing list