diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-01-10 23:19:50 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-01-10 23:19:50 +0000 |
commit | a96e72de15a58ab684f0b5cfa30c240b5198674d (patch) | |
tree | 13fe0dc239bf034b220fe4650293b7acb87b8ccc /audio/sbagen/Makefile | |
parent | 56fa31c3b0eb59181d403d4a923457bb743b6b9d (diff) | |
download | ports-a96e72de15a58ab684f0b5cfa30c240b5198674d.tar.gz ports-a96e72de15a58ab684f0b5cfa30c240b5198674d.zip |
Notes
Diffstat (limited to 'audio/sbagen/Makefile')
-rw-r--r-- | audio/sbagen/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/audio/sbagen/Makefile b/audio/sbagen/Makefile index 61d940054e78..40671c6f2800 100644 --- a/audio/sbagen/Makefile +++ b/audio/sbagen/Makefile @@ -6,18 +6,16 @@ # PORTNAME= sbagen -PORTVERSION= 1.4.3 +PORTVERSION= 1.4.4 CATEGORIES= audio -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITES= SF EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= A sequenced binaural wave generator -PORTDOCS= COPYING.txt ChangeLog.txt README.txt SBAGEN.txt \ - focus.txt holosync.txt mk-msvc.txt readme-windows.txt \ - theory.txt theory2.txt wave.txt +DOC_FILES= ChangeLog.txt README.txt SBAGEN.txt TODO.txt focus.txt \ + focus2.txt holosync.txt theory.txt theory2.txt wave.txt post-patch: @${REINPLACE_CMD} -e 's,linux/soundcard.h,sys/soundcard.h,g' \ @@ -28,13 +26,15 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/sbagen ${PREFIX}/bin - ${MKDIR} ${DATADIR} - ${INSTALL_SCRIPT} ${WRKSRC}/*.sbg ${DATADIR} .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} -.for D in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/$D ${DOCSDIR} + @${MKDIR} ${DOCSDIR} +.for file in ${DOC_FILES} + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif +.if !defined(NOPORTEXAMPLES) + @${MKDIR} ${EXAMPLESDIR} + (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) +.endif .include <bsd.port.mk> |