95a1b73e93
Add SHA256 [1] Fix CONFLICTS [2] PR: 89625 [2], 89626 [1] Submitted by: Vasil Dimov <vd@datamax.bg> Approved by: maintainer
39 lines
842 B
Makefile
39 lines
842 B
Makefile
# New ports collection makefile for: rdiff-backup
|
|
# Date created: Wed Jun 11 19:53:46 CEST 2003
|
|
# Whom: Gerhard Häring <gh@ghaering.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rdiff-backup
|
|
PORTVERSION?= 1.0.3
|
|
PORTEPOCH?= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER?= steve@ion.lu
|
|
COMMENT= Local/remote mirroring+incremental backup
|
|
|
|
LIB_DEPENDS= rsync.1:${PORTSDIR}/net/librsync
|
|
|
|
CONFLICTS?= rdiff-backup-devel-[0-9]*
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
|
|
MAN1= rdiff-backup.1
|
|
|
|
DOCFILES= CHANGELOG README COPYING FAQ.html
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/rdiff-backup.1 ${PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOCFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|