summaryrefslogtreecommitdiff
path: root/databases/p5-DBIx-Connector/Makefile
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2010-10-16 07:03:34 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2010-10-16 07:03:34 +0000
commit3c3e220fdbb8565ef3c8147457c94de34701104f (patch)
treef69f8aa02ab8e1f798e2d46a85c37a8cc41b8688 /databases/p5-DBIx-Connector/Makefile
parent- Upgrade to 0.44. (diff)
DBIx::Connector provides a simple interface for fast and safe DBI
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/
Notes
Notes: svn path=/head/; revision=263078
Diffstat (limited to 'databases/p5-DBIx-Connector/Makefile')
-rw-r--r--databases/p5-DBIx-Connector/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/databases/p5-DBIx-Connector/Makefile b/databases/p5-DBIx-Connector/Makefile
new file mode 100644
index 000000000000..38a52b29bfe7
--- /dev/null
+++ b/databases/p5-DBIx-Connector/Makefile
@@ -0,0 +1,31 @@
+# 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>