mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
3c3e220fdb
connection and transaction management. Connecting to a database can be expensive; you don't want your application to re-connect every time you need to run a query. The efficient thing to do is to hang on to a database handle to maintain a connection to the database in order to minimize that overhead. DBIx::Connector lets you do that without having to worry about dropped or corrupted connections. WWW: http://search.cpan.org/dist/DBIx-Connector/
32 lines
720 B
Makefile
32 lines
720 B
Makefile
# New ports collection makefile for: DBIx::Connector
|
|
# Date created: 16 Oct 2010
|
|
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= DBIx-Connector
|
|
PORTVERSION= 0.40
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Perl extension for fast, safe DBI connection management
|
|
|
|
RUN_DEPENDS= \
|
|
p5-DBI>=1.605:${PORTSDIR}/databases/p5-DBI
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
PERL_MODBUILD= yes
|
|
|
|
MAN3= DBIx::Connector.3 \
|
|
DBIx::Connector::Driver.3 \
|
|
DBIx::Connector::Driver::MSSQL.3 \
|
|
DBIx::Connector::Driver::Oracle.3 \
|
|
DBIx::Connector::Driver::Pg.3 \
|
|
DBIx::Connector::Driver::SQLite.3 \
|
|
DBIx::Connector::Driver::mysql.3
|
|
|
|
.include <bsd.port.mk>
|