97f54a0c87
Added backwards compatiblity: both SQL::Statement and SQL::Parser now work in perl version 5.004 and above. Changed defaults for DBD::CSV so it now accepts new SQL without adding extra flags to scripts Added support for SQL comments Fixed bugs in qualified column names (e.g. tableA.*), and in joins using ON or WHERE Fixed bug in UPDATE that caused the new value to be a hash rather than a scalar. New features: Explicit and implicit joins Table name aliases Set functions String functions String concatenation Numeric expressions IN predicate BETWEEN predicate Alphabetic comparison in WHERE clauses Ordering of text that looks like a number Verbose error messages for both Parsing and Execution errors Pure perl, new maintainer.
21 lines
531 B
Makefile
21 lines
531 B
Makefile
# $NetBSD: Makefile,v 1.8 2002/02/14 16:02:50 mjl Exp $
|
|
#
|
|
|
|
DISTNAME= SQL-Statement-1.002
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5sqs
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=SQL/}
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
# HOMEPAGE= http://
|
|
COMMENT= small, abstract SQL engine
|
|
|
|
USE_BUILDLINK_ONLY= YES
|
|
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/SQL/Statement/.packlist
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
|
|
|
|
.include "../../lang/perl5/buildlink.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|