forked from Lainports/freebsd-ports
subclass of SQL::Abstract, fully compatible with the parent class, but it handles a few additional SQL constructs, and provides a different API with named parameters instead of positional parameters, so that various SQL fragments are more easily identified. This module was designed for the specific needs of DBIx::DataModel, but is published as a standalone distribution, because it may possibly be useful for other needs. WWW: http://search.cpan.org/dist/SQL-Abstract-More/ PR: ports/176883 Submitted by: Espen Tagestad <espen@tagestad.no>
26 lines
675 B
Makefile
26 lines
675 B
Makefile
# Created by: Espen Tagestad <espen@tagestad.no>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= SQL-Abstract-More
|
|
PORTVERSION= 1.15
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= espen@tagestad.no
|
|
COMMENT= Extension of SQL::Abstract with more constructs and more flexible API
|
|
|
|
LICENSE= ART10 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= p5-MRO-Compat>0:${PORTSDIR}/devel/p5-MRO-Compat \
|
|
p5-Params-Validate>0:${PORTSDIR}/devel/p5-Params-Validate \
|
|
p5-Scalar-Does>0:${PORTSDIR}/devel/p5-Scalar-Does \
|
|
p5-SQL-Abstract>=1.73:${PORTSDIR}/databases/p5-SQL-Abstract
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= SQL::Abstract::More.3
|
|
|
|
.include <bsd.port.mk>
|