43650f1440
DBIx::DataModel is a wrapper framework for building Perl abstractions (classes, objects and datastructures) that interact with relational database management systems (RDBMS). Of course the ubiquitous DBI module is used as a basic layer for communicating with databases; on top of that, DBIx::DataModel provides facilities for generating SQL queries, joining tables automatically, navigating through the results, converting values, and building complex datastructures so that other modules can conveniently exploit the data. ok sthen@
27 lines
562 B
Makefile
27 lines
562 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/22 19:43:40 simon Exp $
|
|
|
|
COMMENT= classes and UML-style associations on top of DBI
|
|
|
|
MODULES= cpan
|
|
DISTNAME= DBIx-DataModel-0.35
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= Simon Bertrang <simon@openbsd.org>
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
RUN_DEPENDS= ::databases/p5-DBI \
|
|
::databases/p5-SQL-Abstract
|
|
REGRESS_DEPENDS=::databases/p5-DBD-Mock
|
|
|
|
CONFIGURE_STYLE=modbuild
|
|
|
|
pre-configure:
|
|
mv ${WRKSRC}/Build.pl ${WRKSRC}/Build.PL
|
|
|
|
.include <bsd.port.mk>
|