Index: head/databases/p5-DBD-SQLite2/files/patch-dbdimp.c =================================================================== --- head/databases/p5-DBD-SQLite2/files/patch-dbdimp.c (revision 119056) +++ head/databases/p5-DBD-SQLite2/files/patch-dbdimp.c (nonexistent) @@ -1,22 +0,0 @@ ---- dbdimp.c.orig Sun Feb 15 02:36:38 2004 -+++ dbdimp.c Fri Jun 11 22:32:17 2004 -@@ -1,4 +1,4 @@ --/* $Id: dbdimp.c,v 1.44 2004/02/14 17:36:38 matt Exp $ */ -+/* $Id: dbdimp.c,v 1.45 2004/03/16 19:08:22 matt Exp $ */ - - #include "SQLiteXS.h" - -@@ -294,8 +294,11 @@ - char * - sqlite_decode(imp_dbh_t *imp_dbh, char *input, size_t *len) - { -- char *ret = malloc(*len); -- char *swit = ret; -+ char *ret; -+ char *swit; -+ -+ New(1, ret, *len, char); -+ swit = ret; - - while (*input) { - switch (*input) { Property changes on: head/databases/p5-DBD-SQLite2/files/patch-dbdimp.c ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/databases/p5-DBD-SQLite2/Makefile =================================================================== --- head/databases/p5-DBD-SQLite2/Makefile (revision 119056) +++ head/databases/p5-DBD-SQLite2/Makefile (revision 119057) @@ -1,33 +1,36 @@ # New ports collection makefile for: p5-DBD-SQLite # Date created: 2002/03/30 # Whom: nork@cityfujisawa.ne.jp # # $FreeBSD$ # -PORTNAME= DBD-SQLite -PORTVERSION= 0.31 -PORTREVISION= 1 +PORTNAME= DBD-SQLite2 +PORTVERSION= 0.33 +PORTREVISION= 0 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= DBD PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provides access to SQLite2 databases through the DBI PERL_CONFIGURE= yes -MAN3= DBD::SQLite.3 +MAN3= DBD::SQLite2.3 .include .if ${PERL_LEVEL} < 500600 BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI-137 RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI-137 .else BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI .endif + +post-extract: + ${RM} -f ${WRKSRC}/getsqlite.pl .include Property changes on: head/databases/p5-DBD-SQLite2/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.17 \ No newline at end of property +1.18 \ No newline at end of property Index: head/databases/p5-DBD-SQLite2/distinfo =================================================================== --- head/databases/p5-DBD-SQLite2/distinfo (revision 119056) +++ head/databases/p5-DBD-SQLite2/distinfo (revision 119057) @@ -1,2 +1,2 @@ -MD5 (DBD-SQLite-0.31.tar.gz) = 4aa99c39104b7cd39129aec548e7d3e4 -SIZE (DBD-SQLite-0.31.tar.gz) = 357902 +MD5 (DBD-SQLite2-0.33.tar.gz) = babd83fd5eb9ba7560ad4bab4c76c0eb +SIZE (DBD-SQLite2-0.33.tar.gz) = 363277 Property changes on: head/databases/p5-DBD-SQLite2/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property Index: head/databases/p5-DBD-SQLite2/pkg-descr =================================================================== --- head/databases/p5-DBD-SQLite2/pkg-descr (revision 119056) +++ head/databases/p5-DBD-SQLite2/pkg-descr (revision 119057) @@ -1,15 +1,15 @@ -DBD::SQLite -=========== +DBD::SQLite2 +============ SQLite is a small fast embedded SQL database engine. -DBD::SQLite embeds that database engine into a DBD driver, so if +DBD::SQLite2 embeds that database engine into a DBD driver, so if you want a relational database for your project, but don't want to install a large RDBMS system like MySQL or PostgreSQL, then -DBD::SQLite may be just what you need. +DBD::SQLite2 may be just what you need. It supports quite a lot of features, such as transactions (atomic commit and rollback), indexes, DBA-free operation, a large subset of SQL92 supported, and more. WWW: http://www.sqlite.org/ Property changes on: head/databases/p5-DBD-SQLite2/pkg-descr ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/databases/p5-DBD-SQLite2/pkg-plist =================================================================== --- head/databases/p5-DBD-SQLite2/pkg-plist (revision 119056) +++ head/databases/p5-DBD-SQLite2/pkg-plist (revision 119057) @@ -1,8 +1,7 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/DBD/SQLite.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBD/getsqlite.pl -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLite/SQLite.bs -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLite/SQLite.so -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLite/.packlist -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLite 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/DBD 2>/dev/null || true +%%SITE_PERL%%/%%PERL_ARCH%%/DBD/SQLite2.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLite2/SQLite2.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLite2/SQLite2.so +%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLite2/.packlist +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLite2 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/DBD 2>/dev/null || true Property changes on: head/databases/p5-DBD-SQLite2/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property