diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2002-06-08 23:43:05 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2002-06-08 23:43:05 +0000 |
commit | 1a03f043473d0f2d5842bd520ae55ca533640ea3 (patch) | |
tree | 419c7ff077d0ab0dc62d59b4f334da2374e38867 | |
parent | 973518b38a11909bca59ca6031d7216fdfabc7b0 (diff) | |
download | ports-1a03f043473d0f2d5842bd520ae55ca533640ea3.tar.gz ports-1a03f043473d0f2d5842bd520ae55ca533640ea3.zip |
Add p5-DBIx-Table 0.04, class used to represent DBI database tables.
PR: 33429
Submitted by: Seamus Venasse <svenasse@polaris.ca>
Notes
Notes:
svn path=/head/; revision=60920
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/p5-DBIx-Table/Makefile | 22 | ||||
-rw-r--r-- | databases/p5-DBIx-Table/distinfo | 1 | ||||
-rw-r--r-- | databases/p5-DBIx-Table/pkg-comment | 1 | ||||
-rw-r--r-- | databases/p5-DBIx-Table/pkg-descr | 11 | ||||
-rw-r--r-- | databases/p5-DBIx-Table/pkg-plist | 5 |
6 files changed, 41 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index c58fdf5d903b..17ee62ea314d 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -81,6 +81,7 @@ SUBDIR += p5-DBIx-Password SUBDIR += p5-DBIx-Recordset SUBDIR += p5-DBIx-SearchBuilder + SUBDIR += p5-DBIx-Table SUBDIR += p5-DBIx-XHTML_Table SUBDIR += p5-DBIx-XML_RDB SUBDIR += p5-DBZ_File diff --git a/databases/p5-DBIx-Table/Makefile b/databases/p5-DBIx-Table/Makefile new file mode 100644 index 000000000000..a0ecaabd2ed5 --- /dev/null +++ b/databases/p5-DBIx-Table/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: DBIx::Table +# Date created: 31 Dec 2001 +# Whom: Seamus Venasse <svenasse@polaris.ca> +# +# $FreeBSD$ +# + +PORTNAME= DBIx-Table +PORTVERSION= 0.04 +CATEGORIES= databases perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= DBIx +PKGNAMEPREFIX= p5- + +MAINTAINER= svenasse@polaris.ca + +PERL_CONFIGURE= yes + +MAN3= DBIx::Table.3 +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +.include <bsd.port.mk> diff --git a/databases/p5-DBIx-Table/distinfo b/databases/p5-DBIx-Table/distinfo new file mode 100644 index 000000000000..5d278c3317c1 --- /dev/null +++ b/databases/p5-DBIx-Table/distinfo @@ -0,0 +1 @@ +MD5 (DBIx-Table-0.04.tar.gz) = 82757c208b63ef2e3b6dad59892c2c7c diff --git a/databases/p5-DBIx-Table/pkg-comment b/databases/p5-DBIx-Table/pkg-comment new file mode 100644 index 000000000000..9a82da89f950 --- /dev/null +++ b/databases/p5-DBIx-Table/pkg-comment @@ -0,0 +1 @@ +Class used to represent DBI database tables diff --git a/databases/p5-DBIx-Table/pkg-descr b/databases/p5-DBIx-Table/pkg-descr new file mode 100644 index 000000000000..4c6b56d6c53d --- /dev/null +++ b/databases/p5-DBIx-Table/pkg-descr @@ -0,0 +1,11 @@ +DBIx::Table is a class designed to act as an abstraction layer +around a fairly large subset of SQL queries. It is called 'Table' +because it is primarily designed such that a single subclass provides +an object-oriented interface to a single database table. The module +is flexible enough, though, that it can be used to abstract most +any schema in a way that is comfortable to the perl coder who is +not familiar with the underlying schema, or even SQL. + +WWW: http://search.cpan.org/search?dist=DBIx-Table + +Seamus Venasse <svenasse@polaris.ca> diff --git a/databases/p5-DBIx-Table/pkg-plist b/databases/p5-DBIx-Table/pkg-plist new file mode 100644 index 000000000000..ee47e5d4431b --- /dev/null +++ b/databases/p5-DBIx-Table/pkg-plist @@ -0,0 +1,5 @@ +lib/perl5/site_perl/%%PERL_VER%%/DBIx/Table.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBIx/Table/.packlist +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBIx/Table 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBIx 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/DBIx 2>/dev/null || true |