diff options
author | erwin <erwin@FreeBSD.org> | 2003-08-08 22:21:02 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2003-08-08 22:21:02 +0800 |
commit | dbd10214d67b0d2b96f4ba9b7eb9bbe17cfefef9 (patch) | |
tree | 63a37e5ec1499873276c370e4f69ffa1906fcc02 /databases/p5-DBIx-SQLEngine/Makefile | |
parent | 6eebe5068c7e14d017e23c52f4f8eb80cca1e451 (diff) | |
download | freebsd-ports-gnome-dbd10214d67b0d2b96f4ba9b7eb9bbe17cfefef9.tar.gz freebsd-ports-gnome-dbd10214d67b0d2b96f4ba9b7eb9bbe17cfefef9.tar.zst freebsd-ports-gnome-dbd10214d67b0d2b96f4ba9b7eb9bbe17cfefef9.zip |
Add p5-DBIx-SQLEngine 0.009, extends DBI with high-level operations.
The DBIx::SQLEngine class provides an extended interface for DBI
database handles, adding methods that support ad-hoc SQL generation and
query execution in a single call.
PR: 55129
Submitted by: Hansjoerg Pehofer <hansjoerg.pehofer@uibk.ac.at>
Diffstat (limited to 'databases/p5-DBIx-SQLEngine/Makefile')
-rw-r--r-- | databases/p5-DBIx-SQLEngine/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/databases/p5-DBIx-SQLEngine/Makefile b/databases/p5-DBIx-SQLEngine/Makefile new file mode 100644 index 000000000000..369f4dd17324 --- /dev/null +++ b/databases/p5-DBIx-SQLEngine/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: DBIx::SQLEngine +# Date created: 31.7.2003 +# Whom: Hansjoerg Pehofer <hansjoerg.pehofer@uibk.ac.at> +# +# $FreeBSD$ +# + +PORTNAME= DBIx-SQLEngine +PORTVERSION= 0.009 +CATEGORIES= databases perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= DBIx +PKGNAMEPREFIX= p5- + +MAINTAINER= hansjoerg.pehofer@uibk.ac.at +COMMENT= Extends DBI with high-level operations + +BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \ + ${SITE_PERL}/DBIx/AnyDBD.pm:${PORTSDIR}/databases/p5-DBIx-AnyDBD \ + ${SITE_PERL}/Class/MakeMethods/Template.pm:${PORTSDIR}/devel/p5-Class-MakeMethods +RUN_DEPENDS= ${BUILD_DEPENDS} + +SITE_PERL= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} +PERL_CONFIGURE= yes + +MAN3= DBIx::SQLEngine::Criteria::StringEquality.3\ + DBIx::Changes.3\ + DBIx::SQLEngine::Criteria::Or.3\ + DBIx::SQLEngine::Criteria::And.3\ + DBIx::SQLEngine::ToDo.3\ + DBIx::SQLEngine::ReadMe.3\ + DBIx::SQLEngine::Criteria.3\ + DBIx::SQLEngine::Criteria::Compound.3\ + DBIx::SQLEngine::Criteria::NumericLesser.3\ + DBIx::SQLEngine::Criteria::Comparison.3\ + DBIx::SQLEngine::Criteria::Not.3\ + DBIx::SQLEngine::Changes.3\ + DBIx::SQLEngine::Criteria::LiteralSQL.3\ + DBIx::SQLEngine::Mixin::SeqTable.3\ + DBIx::SQLEngine.3 + +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +.include <bsd.port.mk> |