Add p5-DBIx-DBSchema 0.21, an OO-interface to database schemas.
PR: 38013 Submitted by: Peter Avalos <pavalos@theshell.com>
This commit is contained in:
parent
a4ef4fdd95
commit
f5d155859d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=70759
6 changed files with 57 additions and 0 deletions
|
@ -85,6 +85,7 @@
|
|||
SUBDIR += p5-DBI
|
||||
SUBDIR += p5-DBIWrapper
|
||||
SUBDIR += p5-DBIx-AnyDBD
|
||||
SUBDIR += p5-DBIx-DBSchema
|
||||
SUBDIR += p5-DBIx-DataSource
|
||||
SUBDIR += p5-DBIx-Password
|
||||
SUBDIR += p5-DBIx-Recordset
|
||||
|
|
30
databases/p5-DBIx-DBSchema/Makefile
Normal file
30
databases/p5-DBIx-DBSchema/Makefile
Normal file
|
@ -0,0 +1,30 @@
|
|||
# New ports collection makefile for: databases/p5-DBIx-DBSchema
|
||||
# Date created: 21 September 2002
|
||||
# Whom: Peter Avalos <pavalos@theshell.com>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= DBIx-DBSchema
|
||||
PORTVERSION= 0.21
|
||||
CATEGORIES= databases perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= DBIx
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \
|
||||
${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/FreezeThaw.pm:${PORTSDIR}/devel/p5-FreezeThaw
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
MAN3= DBIx::DBSchema.3 DBIx::DBSchema::ColGroup.3 \
|
||||
DBIx::DBSchema::ColGroup::Index.3 DBIx::DBSchema::ColGroup::Unique.3 \
|
||||
DBIx::DBSchema::Column.3 DBIx::DBSchema::DBD.3 \
|
||||
DBIx::DBSchema::DBD::mysql.3 DBIx::DBSchema::DBD::Pg.3 \
|
||||
DBIx::DBSchema::DBD::Sybase.3 DBIx::DBSchema::Table.3
|
||||
|
||||
.include <bsd.port.mk>
|
1
databases/p5-DBIx-DBSchema/distinfo
Normal file
1
databases/p5-DBIx-DBSchema/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (DBIx-DBSchema-0.21.tar.gz) = 1f7c936b287d2895aee0ee17a24358bb
|
1
databases/p5-DBIx-DBSchema/pkg-comment
Normal file
1
databases/p5-DBIx-DBSchema/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
An OO-interface to database schemas
|
7
databases/p5-DBIx-DBSchema/pkg-descr
Normal file
7
databases/p5-DBIx-DBSchema/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
This module implements an OO-interface to database schemas. Using this module,
|
||||
you can create a database schema with an OO Perl interface. You can read the
|
||||
schema from an existing database. You can save the schema to disk and restore
|
||||
it in a different process. Most importantly, DBIx::DBSchema can write SQL
|
||||
CREATE statements for different databases from a single source.
|
||||
|
||||
WWW: http://www.420.am/dbix-dbschema/
|
17
databases/p5-DBIx-DBSchema/pkg-plist
Normal file
17
databases/p5-DBIx-DBSchema/pkg-plist
Normal file
|
@ -0,0 +1,17 @@
|
|||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBIx/DBSchema/.packlist
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/ColGroup.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/ColGroup/Unique.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/ColGroup/Index.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/Column.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/DBD.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/DBD/Pg.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/DBD/Sybase.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/DBD/mysql.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/Table.pm
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/DBIx/DBSchema
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/ColGroup
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema/DBD
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/DBIx/DBSchema
|
||||
@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
|
Loading…
Reference in a new issue