diff options
author | bapt <bapt@FreeBSD.org> | 2012-12-31 22:19:07 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-12-31 22:19:07 +0800 |
commit | 207b5fedd5d6a338c3a90e94857c54248f82f9f9 (patch) | |
tree | 3b96311cbbaccbc0a4bc256196a12b3d813cd48f /audio | |
parent | 25780096cd8720748ca0808ad2016aaece89104f (diff) | |
download | freebsd-ports-gnome-207b5fedd5d6a338c3a90e94857c54248f82f9f9.tar.gz freebsd-ports-gnome-207b5fedd5d6a338c3a90e94857c54248f82f9f9.tar.zst freebsd-ports-gnome-207b5fedd5d6a338c3a90e94857c54248f82f9f9.zip |
Use PORT_OPTIONS:MDOCS instead of NOPORTDOCS
Remove useless use of pre.mk/post.mk
Trim headers
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> |