- set pod tests

- doesnt need groff. mandoc handled fine those manpages
- set RUN_DEPENDS (textproc/p5-Text-CSV_XS)
This is an optional dependency, just to speed up Text::CSV.
Since that the new dependency is SHARED_ONLY, add a proper conditional treatment
so doesn't break it on NO_SHARED_LIBS arch.
- adjust pkg/DESCR, bump REVISION

ok jasper@, tweaks and ok sthen@
This commit is contained in:
gsoares 2011-05-10 03:08:17 +00:00
parent 7e0cfe1020
commit cac773aa4d
2 changed files with 8 additions and 4 deletions

View File

@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.8 2011/03/17 12:12:10 jasper Exp $
# $OpenBSD: Makefile,v 1.9 2011/05/10 03:08:17 gsoares Exp $
COMMENT= comma-separated values manipulation routines
MODULES= cpan
DISTNAME= Text-CSV-1.21
REVISION= 0
CATEGORIES= textproc
USE_GROFF = Yes
# Perl
PERMIT_PACKAGE_CDROM= Yes
@ -13,4 +13,10 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MAKE_ENV+= TEST_POD=1
.include <bsd.port.mk>
.if ${NO_SHARED_LIBS:L} == "no"
RUN_DEPENDS= textproc/p5-Text-CSV_XS
.endif

View File

@ -1,5 +1,3 @@
Text::CSV provides facilities for the composition and decomposition of
comma-separated values. An instance of the Text::CSV class can combine
fields into a CSV string and parse a CSV string into fields.
Install textproc/p5-Text-CSV_XS (>=0.72) to speed up Text::CSV.