fc652a2fca
the DBI database interface. It provides the lowest level of functionality needed by any program wanting to access databases via the DBI. Currently, DBIWrapper is only aware of Pg (PostgreSQL), mysql (MySQL) and ODBC DBD modules and how to work with them correctly. Support for transactions on MySQL is now checked for and if found to be available, the AutoCommit flag is turned off so that transactions will be used. PR: ports/28563 Submitted by: Pete Fritchman
27 lines
590 B
Makefile
27 lines
590 B
Makefile
# New ports collection makefile for: dbiwrapper
|
|
# Date Created: 30 June 2001
|
|
# Whom: Pete Fritchman <petef@databits.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dbiwrapper
|
|
PORTVERSION= 0.11
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= dbi_wrapper-${PORTVERSION}
|
|
|
|
MAINTAINER= petef@databits.net
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
USE_PERL5= yes
|
|
|
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
|
MAN3= DBIWrapper.3
|
|
|
|
.include <bsd.port.mk>
|