diff options
Diffstat (limited to 'audio/cuetools/Makefile')
-rw-r--r-- | audio/cuetools/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/audio/cuetools/Makefile b/audio/cuetools/Makefile index 933f1c8d783..678a0444738 100644 --- a/audio/cuetools/Makefile +++ b/audio/cuetools/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: cuetools -# Date created: 30 December 2003 -# Whom: Vincent Tantardini <vinc@FreeBSD-fr.org> -# +# Created by: Vincent Tantardini <vinc@FreeBSD-fr.org> # $FreeBSD$ -# PORTNAME= cuetools PORTVERSION= 1.3.1 @@ -25,12 +21,14 @@ PORTDOCS= README PORTEXAMPLES= cuetag.sh PLIST_FILES= bin/cuebreakpoints bin/cueconvert bin/cueprint +.include <bsd.port.options.mk> + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR}/ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/ .endif -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR}/ ${INSTALL_SCRIPT} ${WRKSRC}/extras/cuetag.sh ${EXAMPLESDIR}/ .endif |