diff options
author | vanilla <vanilla@FreeBSD.org> | 2003-11-15 01:55:57 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2003-11-15 01:55:57 +0800 |
commit | 9791d35ea84be2e2959418f1045c6bee6a62b3bc (patch) | |
tree | aa0c2828d1f3be0c00c243fe59c89c246a85bc1b | |
parent | ba18f34a57fcf559535c688493d529bdbef016af (diff) | |
download | freebsd-ports-gnome-9791d35ea84be2e2959418f1045c6bee6a62b3bc.tar.gz freebsd-ports-gnome-9791d35ea84be2e2959418f1045c6bee6a62b3bc.tar.zst freebsd-ports-gnome-9791d35ea84be2e2959418f1045c6bee6a62b3bc.zip |
Add p5-DBD-File 0.22, it's Base class for writing DBI drivers for plain files
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/p5-DBD-File/Makefile | 36 | ||||
-rw-r--r-- | databases/p5-DBD-File/distinfo | 1 | ||||
-rw-r--r-- | databases/p5-DBD-File/pkg-descr | 7 | ||||
-rw-r--r-- | databases/p5-DBD-File/pkg-plist | 5 |
5 files changed, 50 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 829a9d348639..8adf6c86916c 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -106,6 +106,7 @@ SUBDIR += p5-Class-DBI-mysql SUBDIR += p5-DBD-CSV SUBDIR += p5-DBD-Excel + SUBDIR += p5-DBD-File SUBDIR += p5-DBD-InterBase SUBDIR += p5-DBD-LDAP SUBDIR += p5-DBD-ODBC diff --git a/databases/p5-DBD-File/Makefile b/databases/p5-DBD-File/Makefile new file mode 100644 index 000000000000..2a3e37487f54 --- /dev/null +++ b/databases/p5-DBD-File/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: p5-DBD-File +# Date created: Nov 15 2003 +# Whom: vanilla +# +# $FreeBSD$ +# + +PORTNAME= DBD-File +PORTVERSION= 0.22 +PORTREVISION= 0 +CATEGORIES= databases perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= DBD +PKGNAMEPREFIX= p5- + +MAINTAINER= ports@freebsd.org +COMMENT= Base class for writing DBI drivers for plain files + +BUILD_DEPENDS= ${SITE_PERL}/SQL/Statement.pm:${PORTSDIR}/databases/p5-SQL-Statement +RUN_DEPENDS= ${SITE_PERL}/SQL/Statement.pm:${PORTSDIR}/databases/p5-SQL-Statement + +PERL_CONFIGURE= yes + +MAN3= DBD::File.3 + +.include <bsd.port.pre.mk> + +.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 + +.include <bsd.port.post.mk> diff --git a/databases/p5-DBD-File/distinfo b/databases/p5-DBD-File/distinfo new file mode 100644 index 000000000000..86da44abe9bf --- /dev/null +++ b/databases/p5-DBD-File/distinfo @@ -0,0 +1 @@ +MD5 (DBD-File-0.22.tar.gz) = c291878232ae0d5a7d060df4cc7a68f9 diff --git a/databases/p5-DBD-File/pkg-descr b/databases/p5-DBD-File/pkg-descr new file mode 100644 index 000000000000..6e1c1ec0c826 --- /dev/null +++ b/databases/p5-DBD-File/pkg-descr @@ -0,0 +1,7 @@ +README FILE FOR MODULE DBD::File + +This module is currently not directly usable, rather it is a base subclass +for modules like DBD::CSV and DBD::AnyData. +See documentation for those modules. + +WWW: http://search.cpan.org/dist/DBD-File diff --git a/databases/p5-DBD-File/pkg-plist b/databases/p5-DBD-File/pkg-plist new file mode 100644 index 000000000000..183b074d1f70 --- /dev/null +++ b/databases/p5-DBD-File/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/DBD/File.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/File/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/File +@unexec rmdir %D/%%SITE_PERL%%/%PERL_ARCH%%/auto/DBD 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/DBD 2>/dev/null || true |