This module follow the semantics used in the reference document: * A dump is a collection of records (SVN::Dump::Record objects). * A record is composed of a set of headers (a SVN::Dump::Headers object), a set of properties (a SVN::Dump::Property object) and an optional bloc of text (a SVN::Dump::Text object). * Some special records (delete records with a Node-kind header) recursively contain included records. WWW: http://search.cpan.org/dist/SVN-Dump/
26 lines
511 B
Makefile
26 lines
511 B
Makefile
# New ports collection makefile for: devel/p5-SVN-Dump
|
|
# Date created: Aug 8 2008
|
|
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= SVN-Dump
|
|
PORTVERSION= 0.03
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= clsung@FreeBSD.org
|
|
COMMENT= Perl interface to Subversion dumps
|
|
|
|
PERL_MODBUILD= yes
|
|
|
|
MAN3= SVN::Dump.3 \
|
|
SVN::Dump::Headers.3 \
|
|
SVN::Dump::Property.3 \
|
|
SVN::Dump::Reader.3 \
|
|
SVN::Dump::Record.3 \
|
|
SVN::Dump::Text.3
|
|
|
|
.include <bsd.port.mk>
|