diff options
author | mat <mat@FreeBSD.org> | 2016-07-19 19:04:13 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-07-19 19:04:13 +0800 |
commit | 363acdd313a37f491e4b2d6b9a807df489cfc5d9 (patch) | |
tree | be6eebf3e77ddf9fcf383081091d8b8b336dd71c /biology | |
parent | 64a47229a8791073130cac02039b944cc8102750 (diff) | |
download | freebsd-ports-graphics-363acdd313a37f491e4b2d6b9a807df489cfc5d9.tar.gz freebsd-ports-graphics-363acdd313a37f491e4b2d6b9a807df489cfc5d9.tar.zst freebsd-ports-graphics-363acdd313a37f491e4b2d6b9a807df489cfc5d9.zip |
When there is a do-install target, do not use a post-install target, do
everything at once. Sometime, rename post-install into a options helper
target.
I did not fix ports that were such a mess that I could not figure out
what they really wanted to do. I also did not change ports that had
some version of an auto-plist code in post-install, for the same reason.
With hat: portmgr
Sponsored by: Absolight
Diffstat (limited to 'biology')
-rw-r--r-- | biology/biojava/Makefile | 1 | ||||
-rw-r--r-- | biology/recombine/Makefile | 2 | ||||
-rw-r--r-- | biology/seqan1/Makefile | 6 |
3 files changed, 5 insertions, 4 deletions
diff --git a/biology/biojava/Makefile b/biology/biojava/Makefile index 45d22d8cb54..de1403f37d3 100644 --- a/biology/biojava/Makefile +++ b/biology/biojava/Makefile @@ -51,7 +51,6 @@ do-install: @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} demos ${STAGEDIR}${EXAMPLESDIR}) @${ECHO_MSG} " [ DONE ]" -post-install: .if !defined(BATCH) @${ECHO_MSG} "" @${ECHO_MSG} "Libraries installed at: ${JAVAJARDIR}" diff --git a/biology/recombine/Makefile b/biology/recombine/Makefile index 7889cad023b..0cb9d919acf 100644 --- a/biology/recombine/Makefile +++ b/biology/recombine/Makefile @@ -26,7 +26,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/filetran ${STAGEDIR}${PREFIX}/bin -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/recombine.txt ${STAGEDIR}${DOCSDIR} diff --git a/biology/seqan1/Makefile b/biology/seqan1/Makefile index d5222cac07b..a256864ec0d 100644 --- a/biology/seqan1/Makefile +++ b/biology/seqan1/Makefile @@ -3,7 +3,7 @@ PORTNAME= seqan PORTVERSION= 1.3.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= biology MASTER_SITES= http://ftp.seqan.de/releases/ PKGNAMESUFFIX= 1 @@ -19,12 +19,14 @@ NO_BUILD= yes CONFLICTS= seqan-[2-9]* +OPTIONS_DEFINE= DOCS + do-install: ${MKDIR} ${STAGEDIR}/${PREFIX}/include/${PORTNAME} cd ${WRKSRC} && ${COPYTREE_SHARE} ./${PORTNAME} ${STAGEDIR}/${PREFIX}/include cd ${WRKSRC} && ${INSTALL_DATA} ./${PORTNAME}.h ${STAGEDIR}/${PREFIX}/include -post-install: +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/docs && ${COPYTREE_SHARE} ./ ${STAGEDIR}${DOCSDIR} |