diff options
author | Johann Visagie <wjv@FreeBSD.org> | 2001-08-13 10:26:44 +0000 |
---|---|---|
committer | Johann Visagie <wjv@FreeBSD.org> | 2001-08-13 10:26:44 +0000 |
commit | 102c91c252d8fac90294df5af4c5566fd95f55de (patch) | |
tree | fba8b90d6547b5383a6af46cb080a94411d7efcc /biology/p5-bioperl/Makefile | |
parent | 98311ec109ca947a7ff251a991f279821e290bce (diff) |
- Properly list run-time dependencies in RUN_DEPENDS in Makefile.
- Deploy %%PERL_VER%% and %%PERL_ARCH%% pragmas consistently throughout
pkg-plist. (Ouch, that was embarrassing.)
- Bump PORTREVISION due to the above.
- Update my email address and the project's URL in pkg-descr.
Notes
Notes:
svn path=/head/; revision=46170
Diffstat (limited to 'biology/p5-bioperl/Makefile')
-rw-r--r-- | biology/p5-bioperl/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/biology/p5-bioperl/Makefile b/biology/p5-bioperl/Makefile index 650a028aa69c..256e1b4acc5a 100644 --- a/biology/p5-bioperl/Makefile +++ b/biology/p5-bioperl/Makefile @@ -7,6 +7,7 @@ PORTNAME= bioperl PORTVERSION= 0.7.1 +PORTREVISION= 1 CATEGORIES= biology perl5 MASTER_SITES= ftp://bioperl.org/pub/DIST/ \ http://bioperl.org/Core/Latest/ \ @@ -17,6 +18,8 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= wjv@FreeBSD.org +# These are all run-time dependencies, but listing them in ${BUILD_DEPENDS} +# prevents a flood of build-time warnings. BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Ace.pm:${PORTSDIR}/biology/p5-AcePerl \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp \ @@ -27,6 +30,7 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Ace.pm: ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/XML/Node.pm:${PORTSDIR}/textproc/p5-XML-Node \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/XML/Parser/PerlSAX.pm:${PORTSDIR}/textproc/p5-libxml \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/XML/Writer.pm:${PORTSDIR}/textproc/p5-XML-Writer +RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= YES @@ -44,9 +48,11 @@ EXT_WRKSRC= ${WRKDIR}/bioperl-ext-06/Bio/Ext/Align .if defined(WITH_CORBA_CLIENT) BUILD_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/CORBA/ORBit.pm:${PORTSDIR}/devel/p5-ORBit +RUN_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/CORBA/ORBit.pm:${PORTSDIR}/devel/p5-ORBit .endif .if defined(WITH_CORBA_SERVER) BUILD_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/CORBA/ORBit.pm:${PORTSDIR}/devel/p5-ORBit +RUN_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/CORBA/ORBit.pm:${PORTSDIR}/devel/p5-ORBit .endif .if defined(WITH_GUI) RUN_DEPENDS+= ptksh:${PORTSDIR}/x11-toolkits/p5-Tk |