4c40849426
rsvndump is a command line tool that is able to dump a subversion repository that resides on a remote server. All data is dumped in the format that can be read/written by svnadmin, so the data produced by rsvndump can easily be imported into a new subversion repository.
27 lines
558 B
Makefile
27 lines
558 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/10/10 11:02:52 sthen Exp $
|
|
|
|
COMMENT = remote svn repository dump
|
|
CATEGORIES = devel
|
|
|
|
DISTNAME = rsvndump-0.5.2
|
|
|
|
HOMEPAGE = http://rsvndump.sourceforge.net/
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=rsvndump/}
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c apr-1
|
|
|
|
MODULES = devel/gettext
|
|
|
|
LIB_DEPENDS = svn_client-1,svn_delta-1,svn_fs-1,svn_ra-1,svn_subr-1:subversion->=1.4:devel/subversion
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
.include <bsd.port.mk>
|