openbsd-ports/textproc/p5-Text-CSV/Makefile
gsoares cac773aa4d - 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@
2011-05-10 03:08:17 +00:00

23 lines
432 B
Makefile

# $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
# Perl
PERMIT_PACKAGE_CDROM= Yes
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