svn commit: r311864 - head/textproc/p5-Pod-Eventual

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Thu Feb 7 15:11:38 UTC 2013


Author: sunpoet
Date: Thu Feb  7 15:11:37 2013
New Revision: 311864
URL: http://svnweb.freebsd.org/changeset/ports/311864

Log:
  - Add LICENSE
  - Fix *_DEPENDS: Test::Deep is a test dependency
  - Bump PORTREVISION for dependency change
  - Cleanup Makefile header
  - Update pkg-descr

Modified:
  head/textproc/p5-Pod-Eventual/Makefile   (contents, props changed)
  head/textproc/p5-Pod-Eventual/pkg-descr   (contents, props changed)
  head/textproc/p5-Pod-Eventual/pkg-plist   (contents, props changed)

Modified: head/textproc/p5-Pod-Eventual/Makefile
==============================================================================
--- head/textproc/p5-Pod-Eventual/Makefile	Thu Feb  7 15:05:39 2013	(r311863)
+++ head/textproc/p5-Pod-Eventual/Makefile	Thu Feb  7 15:11:37 2013	(r311864)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	Pod-Eventual
-# Date created:		27 December 2009
-# Whom:			Andrey Kostenko <andrey at kostenko.name>
-#
+# Created by: Andrey Kostenko <andrey at kostenko.name>
 # $FreeBSD$
-#
 
 PORTNAME=	Pod-Eventual
 PORTVERSION=	0.093330
@@ -14,12 +10,16 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	perl at FreeBSD.org
 COMMENT=	Read a POD document as a series of trivial events
 
-BUILD_DEPENDS=	p5-Mixin-Linewise>=0.001:${PORTSDIR}/devel/p5-Mixin-Linewise \
-		p5-Test-Deep>=0:${PORTSDIR}/devel/p5-Test-Deep
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS=	p5-Mixin-Linewise>=0.001:${PORTSDIR}/devel/p5-Mixin-Linewise
 RUN_DEPENDS:=	${BUILD_DEPENDS}
+TEST_DEPENDS=	p5-Test-Deep>=0:${PORTSDIR}/devel/p5-Test-Deep
+
+PERL_CONFIGURE=	yes
 
-PERL_CONFIGURE=	YES
-MAN3=	Pod::Eventual.3\
+MAN3=		Pod::Eventual.3 \
 		Pod::Eventual::Simple.3
 
 .include <bsd.port.mk>

Modified: head/textproc/p5-Pod-Eventual/pkg-descr
==============================================================================
--- head/textproc/p5-Pod-Eventual/pkg-descr	Thu Feb  7 15:05:39 2013	(r311863)
+++ head/textproc/p5-Pod-Eventual/pkg-descr	Thu Feb  7 15:11:37 2013	(r311864)
@@ -1,3 +1,15 @@
-read a POD document as a series of trivial events
+POD is a pretty simple format to write, but it can be a big pain to deal with
+reading it and doing anything useful with it. Most existing POD parsers care
+about semantics, like whether a =item occurred after an =over but before a back,
+figuring out how to link a L<>, and other things like that.
+
+Pod::Eventual is much less ambitious and much more stupid. Fortunately, stupid
+is often better. (That's what I keep telling myself, anyway.)
+
+Pod::Eventual reads line-based input and produces events describing each POD
+paragraph or directive it finds. Once complete events are immediately passed to
+the handle_event method. This method should be implemented by Pod::Eventual
+subclasses. If it isn't, Pod::Eventual's own handle_event will be called, and
+will raise an exception.
 
 WWW: http://search.cpan.org/dist/Pod-Eventual/

Modified: head/textproc/p5-Pod-Eventual/pkg-plist
==============================================================================
--- head/textproc/p5-Pod-Eventual/pkg-plist	Thu Feb  7 15:05:39 2013	(r311863)
+++ head/textproc/p5-Pod-Eventual/pkg-plist	Thu Feb  7 15:11:37 2013	(r311864)
@@ -1,7 +1,7 @@
 %%SITE_PERL%%/Pod/Eventual.pm
 %%SITE_PERL%%/Pod/Eventual/Simple.pm
 %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod/Eventual/.packlist
- at dirrmtry %%SITE_PERL%%/Pod/Eventual
- at dirrmtry %%SITE_PERL%%/Pod
 @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod/Eventual
 @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod
+ at dirrmtry %%SITE_PERL%%/Pod/Eventual
+ at dirrmtry %%SITE_PERL%%/Pod


More information about the svn-ports-head mailing list