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 /graphics/libgltext | |
parent | 64a47229a8791073130cac02039b944cc8102750 (diff) | |
download | freebsd-ports-gnome-363acdd313a37f491e4b2d6b9a807df489cfc5d9.tar.gz freebsd-ports-gnome-363acdd313a37f491e4b2d6b9a807df489cfc5d9.tar.zst freebsd-ports-gnome-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 'graphics/libgltext')
-rw-r--r-- | graphics/libgltext/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/graphics/libgltext/Makefile b/graphics/libgltext/Makefile index 73856300d059..08fb5bb5154d 100644 --- a/graphics/libgltext/Makefile +++ b/graphics/libgltext/Makefile @@ -27,7 +27,6 @@ EXAMPLES_DESC= Compile examples, need libglut .if ${PORT_OPTIONS:MEXAMPLES} USE_GL+= glut USE_XORG= xmu -FLAG_EXAMPLES= true PLIST_SUB+= EXAMPLES="" .else PLIST_SUB+= EXAMPLES="@comment " @@ -45,13 +44,13 @@ do-install: @cd ${STAGEDIR}${PREFIX}/lib && \ ${LN} -s ${PORTNAME}.so.0 ${PORTNAME}.so -post-install: +post-install-DOCS-on: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/doc/tutorial.txt ${STAGEDIR}${DOCSDIR} .endif -.if defined(FLAG_EXAMPLES) +post-install-EXAMPLES-on: .for DIRE in alpha fps simple sizes @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/${DIRE} @cd ${WRKSRC}/examples && \ @@ -60,6 +59,5 @@ post-install: @${ECHO_MSG} "" @${ECHO_MSG} " Examples source and binary on ${STAGEDIR}${EXAMPLESDIR}" @${ECHO_MSG} "" -.endif .include <bsd.port.mk> |