9e00ce3f62
- Remove dependencies in core - Put testing depends in TEST_DEPENDS - Remove unnecessary bsd.port.options.mk inclusions - Remove checks for Perl versions that no longer exist in the ports tree - Sort plists, some of which were so jumbled that I have to assume the plist was randomized before committing A lot of the plist changes in this commit are moving PERL5_MAN3 after SITE_PERL. It's repo churn now, but it makes updating the ports later far easier.
36 lines
798 B
Makefile
36 lines
798 B
Makefile
# Created by: James FitzGibbon <jfitz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= DBI
|
|
PORTVERSION= 1.633
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Perl5 Database Interface, required for DBD::* modules
|
|
|
|
LICENSE= ART10 GPLv1
|
|
LICENSE_COMB= dual
|
|
|
|
OPTIONS_DEFINE= PROXY DOCS
|
|
PROXY_DESC= Build DBI::Proxy
|
|
|
|
CONFLICTS= p5-DBI-1.3*
|
|
|
|
USES= perl5 shebangfix
|
|
USE_PERL5= configure
|
|
|
|
PORTDOCS= Changes
|
|
|
|
SHEBANG_FILES= dbixs_rev.pl
|
|
|
|
PROXY_BUILD_DEPENDS= p5-PlRPC>=0.2001:${PORTSDIR}/net/p5-PlRPC
|
|
PROXY_RUN_DEPENDS= p5-PlRPC>=0.2001:${PORTSDIR}/net/p5-PlRPC
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
|
|
|
.include <bsd.port.mk>
|