d9a20699a7
* lib/DBD/CSV.pm (fetch_row): Now cleaning $! before calling $csv->getline(). Seems to return false errors otherwise in some cases. * Made Makefile.PL CPAN conformant. * Removed unnecessary stuff in Makefile.PL which verified the DBI installation. * lib/DBD/File.pm (STORE): Changed croak to die. * Minor fix in the docs * Minor compatibility fixes in the test suite for Perl 5.6.
23 lines
671 B
Makefile
23 lines
671 B
Makefile
# $NetBSD: Makefile,v 1.4 2001/03/21 17:30:28 mjl Exp $
|
|
#
|
|
|
|
DISTNAME= DBD-CSV-0.1025
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
# HOMEPAGE= http://
|
|
COMMENT= Access CSV files via DBI
|
|
|
|
DEPENDS+= p5-DBI>=1.13:../../databases/p5-DBI
|
|
DEPENDS+= p5-SQL-Statement>=0.1016:../../databases/p5-SQL-Statement
|
|
DEPENDS+= p5-Text-CSV_XS>=0.20:../../textproc/p5-Text-CSV_XS
|
|
|
|
USE_PERL5= # defined
|
|
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/DBD/CSV/.packlist
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|