mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
be6d8373ba
allows the loading of credentials from a file. The actual code itself would only need to know about the name used in the configuration file. This aims to make it simpler for operations teams to manage database credentials. WWW: http://search.cpan.org/dist/DBIx-Class-Schema-Config/ PR: ports/173650 (based on) Submitted by: Espen Tagestad <espen@tagestad.no>
29 lines
793 B
Makefile
29 lines
793 B
Makefile
# Created by: Espen Tagestad <espen@tagestad.no>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= DBIx-Class-Schema-Config
|
|
PORTVERSION= 0.001008
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= espen@tagestad.no
|
|
COMMENT= Credential Management for DBIx::Class
|
|
|
|
LICENSE= ART10 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= p5-Config-Any>=0.23:${PORTSDIR}/devel/p5-Config-Any \
|
|
p5-DBIx-Class>=0.08100:${PORTSDIR}/databases/p5-DBIx-Class \
|
|
p5-File-HomeDir>0:${PORTSDIR}/devel/p5-File-HomeDir
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
TEST_DEPENDS= p5-Config-Any>=0.23:${PORTSDIR}/devel/p5-Config-Any \
|
|
p5-DBD-SQLite>0:${PORTSDIR}/databases/p5-DBD-SQLite \
|
|
p5-Test-MockObject>=1.09:${PORTSDIR}/devel/p5-Test-MockObject
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= DBIx::Class::Schema::Config.3
|
|
|
|
.include <bsd.port.mk>
|