diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2014-07-08 08:57:30 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2014-07-08 08:57:30 +0000 |
commit | e9cb2a590215223357ac10e4f34ecacef18d7e2c (patch) | |
tree | 1550ea16f04f6d0312ddf4c1415bb81b83dce272 /audio/pure-audio | |
parent | 0c65f94d0aa9b6fb6c1dbf68443136b7c8ae97a9 (diff) | |
download | ports-e9cb2a590215223357ac10e4f34ecacef18d7e2c.tar.gz ports-e9cb2a590215223357ac10e4f34ecacef18d7e2c.zip |
Notes
Diffstat (limited to 'audio/pure-audio')
-rw-r--r-- | audio/pure-audio/Makefile | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/audio/pure-audio/Makefile b/audio/pure-audio/Makefile index cfd69a3e1aae..fb874c75bc67 100644 --- a/audio/pure-audio/Makefile +++ b/audio/pure-audio/Makefile @@ -11,15 +11,14 @@ DIST_SUBDIR= pure MAINTAINER= ports@FreeBSD.org COMMENT= Digital audio interface for the Pure language -LICENSE= BSD +LICENSE= BSD3CLAUSE -LIB_DEPENDS= libportaudio.so:${PORTSDIR}/audio/portaudio2 \ +LIB_DEPENDS= libportaudio.so.2:${PORTSDIR}/audio/portaudio2 \ libsamplerate.so:${PORTSDIR}/audio/libsamplerate \ libsndfile.so:${PORTSDIR}/audio/libsndfile \ libfftw3.so:${PORTSDIR}/math/fftw3 USES= pure -NO_STAGE= yes post-patch: @${REINPLACE_CMD} \ @@ -28,22 +27,14 @@ post-patch: ${WRKSRC}/Makefile PORTDOCS= README - PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES -.include <bsd.port.options.mk> - post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif - -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include <bsd.port.mk> |