diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-01-03 15:26:06 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-01-03 15:26:06 +0000 |
commit | 49bf36d52771ccccdeacb84f6e4f3406a8814618 (patch) | |
tree | bc69c025c1ff53d7dce410b1f29dea3232181f67 /audio/spiralsynth | |
parent | 0b5b09713e8ecc1ea80101553be41f5e7f4fbd2a (diff) | |
download | ports-49bf36d52771ccccdeacb84f6e4f3406a8814618.tar.gz ports-49bf36d52771ccccdeacb84f6e4f3406a8814618.zip |
Notes
Diffstat (limited to 'audio/spiralsynth')
-rw-r--r-- | audio/spiralsynth/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/spiralsynth/Makefile b/audio/spiralsynth/Makefile index 8a99b6e1bd9b..e42cdca963c7 100644 --- a/audio/spiralsynth/Makefile +++ b/audio/spiralsynth/Makefile @@ -23,6 +23,8 @@ WRKSRC= ${WRKDIR}/${DISTNAME} DOC_FILES= CHANGES COPYING README +.include <bsd.port.options.mk> + post-patch: .for ii in \ Makefile.in \ @@ -66,7 +68,7 @@ pre-install: .else ${ECHO_CMD} bin/SpiralSynth > ${PLIST} .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} .for ii in ${DOC_FILES} ${ECHO_CMD} share/doc/spiralsynth/${ii} >> ${PLIST} .endfor @@ -80,7 +82,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/SpiralSynth ${PREFIX}/bin .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} .for ii in ${DOC_FILES} ${INSTALL_DATA} ${WRKSRC}/${ii} ${DOCSDIR} |