diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2005-05-08 07:44:30 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2005-05-08 07:44:30 +0000 |
commit | 8d870e03c6884f1a621a054d651d1f6fe22da194 (patch) | |
tree | 1936c23543bea8c10c3d5b1fde5b1dde87ba2768 /databases/postgresql_autodoc | |
parent | 30487c3ac1a8ee4b3003025a6b9eca59b296b85f (diff) | |
download | ports-8d870e03c6884f1a621a054d651d1f6fe22da194.tar.gz ports-8d870e03c6884f1a621a054d651d1f6fe22da194.zip |
Notes
Diffstat (limited to 'databases/postgresql_autodoc')
-rw-r--r-- | databases/postgresql_autodoc/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/databases/postgresql_autodoc/Makefile b/databases/postgresql_autodoc/Makefile index c611ca7c0c36..a104c09b2b82 100644 --- a/databases/postgresql_autodoc/Makefile +++ b/databases/postgresql_autodoc/Makefile @@ -14,8 +14,14 @@ DIST_SUBDIR= postgresql MAINTAINER= olgeni@FreeBSD.org COMMENT= Automatic documentation generator for postgresql databases -BUILD_DEPENDS= ${SITE_PERL}/HTML/Template.pm:${PORTSDIR}/www/p5-HTML-Template \ - ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg +.include <bsd.port.pre.mk> + +BUILD_DEPENDS= ${SITE_PERL}/HTML/Template.pm:${PORTSDIR}/www/p5-HTML-Template +.if ${PERL_LEVEL} < 500600 +BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg-13 +.else +BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg +.endif GNU_CONFIGURE= yes USE_GMAKE= yes @@ -24,4 +30,4 @@ CONFIGURE_ARGS+= --datadir=${DATADIR} WRKSRC= ${WRKDIR}/postgresql_autodoc -.include <bsd.port.mk> +.include <bsd.port.post.mk> |