forked from Lainports/freebsd-ports
to be configured differently and they're always a PITA when you first install and each and every time they upgrade. Test::Database provides a simple way for test authors to request a test database, without worrying about environment variables or the test host configuration. WWW: http://search.cpan.org/dist/Test-Database/ PR: ports/133273 Submitted by: Wen Heping <wenheping at gmail.com>
33 lines
921 B
Makefile
33 lines
921 B
Makefile
# New ports collection makefile for: p5-Test-Database
|
|
# Date created: 2 April, 2009
|
|
# Whom: Wen Heping <wenheping@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Test-Database
|
|
PORTVERSION= 0.99
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= wenheping@gmail.com
|
|
COMMENT= Database handles ready for testing
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/mach/DBI.pm:${PORTSDIR}/databases/p5-DBI \
|
|
${SITE_PERL}/Test/Builder/Module.pm:${PORTSDIR}/devel/p5-Test-Simple \
|
|
p5-File-HomeDir>=0.84:${PORTSDIR}/devel/p5-File-HomeDir \
|
|
p5-version>=0.76:${PORTSDIR}/devel/p5-version
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Test::Database.3 Test::Database::Driver.3 \
|
|
Test::Database::Driver::CSV.3 \
|
|
Test::Database::Driver::DBM.3 \
|
|
Test::Database::Driver::SQLite2.3 \
|
|
Test::Database::Driver::mysql.3 \
|
|
Test::Database::Handle.3 \
|
|
Test::Database::Driver::SQLite.3
|
|
|
|
.include <bsd.port.mk>
|