diff options
author | Greg Larkin <glarkin@FreeBSD.org> | 2008-10-24 19:56:03 +0000 |
---|---|---|
committer | Greg Larkin <glarkin@FreeBSD.org> | 2008-10-24 19:56:03 +0000 |
commit | 0ec6ec7040a29eae49868c21b3ebf564e185d5ab (patch) | |
tree | 344c510a879f56431225e65d1f7a44afd0076712 /devel | |
parent | a9423b452ca3166f8a0c00578eae96c6590b86b5 (diff) | |
download | ports-0ec6ec7040a29eae49868c21b3ebf564e185d5ab.tar.gz ports-0ec6ec7040a29eae49868c21b3ebf564e185d5ab.zip |
Notes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rsvndump/Makefile | 29 | ||||
-rw-r--r-- | devel/rsvndump/distinfo | 3 | ||||
-rw-r--r-- | devel/rsvndump/pkg-descr | 7 |
4 files changed, 40 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index a193664041e6..4ea346855e8e 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2326,6 +2326,7 @@ SUBDIR += rote SUBDIR += rpc2 SUBDIR += rpm-spec-mode.el + SUBDIR += rsvndump SUBDIR += rth SUBDIR += ruby-amstd SUBDIR += ruby-aspectr diff --git a/devel/rsvndump/Makefile b/devel/rsvndump/Makefile new file mode 100644 index 000000000000..3046a5c06c43 --- /dev/null +++ b/devel/rsvndump/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: rsvndump +# Date created: 2008-10-12 +# Whom: glarkin +# +# $FreeBSD$ +# + +PORTNAME= rsvndump +PORTVERSION= 0.4.2 +CATEGORIES= devel +MASTER_SITES= http://saubue.boolsoft.org/projects/rsvndump/ \ + LOCAL/glarkin + +MAINTAINER= glarkin@FreeBSD.org +COMMENT= Remote Subversion repository dumpfile generator + +GNU_CONFIGURE= yes + +MAN1= rsvndump.1 +PLIST_FILES+= bin/rsvndump + +.include <bsd.port.pre.mk> + +.if !exists(${APR_APU_DIR}/${APR_CONFIG}) +BUILD_DEPENDS+= apr-1-config:${PORTSDIR}/devel/apr +.endif + +LIB_DEPENDS+= svn_client-1:${PORTSDIR}/devel/subversion +.include <bsd.port.post.mk> diff --git a/devel/rsvndump/distinfo b/devel/rsvndump/distinfo new file mode 100644 index 000000000000..0831c9b4b22a --- /dev/null +++ b/devel/rsvndump/distinfo @@ -0,0 +1,3 @@ +MD5 (rsvndump-0.4.2.tar.gz) = b9e2a7b3461b1e330e470b2af819a4aa +SHA256 (rsvndump-0.4.2.tar.gz) = 344340ad214ff010f957c7b3e618c984c574d1a957e12220493bdaa34fe212ac +SIZE (rsvndump-0.4.2.tar.gz) = 123189 diff --git a/devel/rsvndump/pkg-descr b/devel/rsvndump/pkg-descr new file mode 100644 index 000000000000..c7e69646eaae --- /dev/null +++ b/devel/rsvndump/pkg-descr @@ -0,0 +1,7 @@ +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 an written by svnadmin dump, so the +data which is produced can easily be importerd into a new Subversion +repository. + +WWW: http://saubue.boolsoft.org/projects/rsvndump/ |