diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-31 14:19:07 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-31 14:19:07 +0000 |
commit | 4debc1a0d4301489aa5a73622462259a5a1fbc33 (patch) | |
tree | 3b96311cbbaccbc0a4bc256196a12b3d813cd48f /audio | |
parent | 93c851b8837d401c5d884fabc46a89993237e087 (diff) | |
download | ports-4debc1a0d4301489aa5a73622462259a5a1fbc33.tar.gz ports-4debc1a0d4301489aa5a73622462259a5a1fbc33.zip |
Use PORT_OPTIONS:MDOCS instead of NOPORTDOCS
Remove useless use of pre.mk/post.mk
Trim headers
Notes
Notes:
svn path=/head/; revision=309750
Diffstat (limited to 'audio')
-rw-r--r-- | audio/HVSC-Update/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/audio/HVSC-Update/Makefile b/audio/HVSC-Update/Makefile index 5fd4c9b487bc..edfa1e058332 100644 --- a/audio/HVSC-Update/Makefile +++ b/audio/HVSC-Update/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: HVSC-Update -# Date created: 13 October 2002 -# Whom: Anders Nordby <anders@FreeBSD.org> -# +# Created by: Anders Nordby <anders@FreeBSD.org> # $FreeBSD$ -# PORTNAME= HVSC-Update PORTVERSION= 2.8.5 @@ -25,15 +21,15 @@ MAKE_JOBS_SAFE= yes PORTDOCS= HVSC_Update.txt SID_file_format.txt PLIST_FILES= bin/${PORTNAME} -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/Update ${PREFIX}/bin/${PORTNAME} -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for file in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |