Tweak audio/cuetools version 1.3.1_3
[dports.git] / audio / cuetools / Makefile
1 # Created by: Vincent Tantardini <vinc@FreeBSD-fr.org>
2 # $FreeBSD: audio/cuetools/Makefile 327706 2013-09-20 14:36:35Z bapt $
3
4 PORTNAME=       cuetools
5 PORTVERSION=    1.3.1
6 PORTREVISION=   3
7 CATEGORIES=     audio
8 MASTER_SITES=   BERLIOS
9
10 MAINTAINER=     ports@FreeBSD.org
11 COMMENT=        Utilities for working with CUE and TOC files
12
13 LICENSE=        GPLv2
14
15 USES=           gmake
16 NO_STAGE=       yes
17 GNU_CONFIGURE=  yes
18
19 MAN1=           cuebreakpoints.1 cueconvert.1 cueprint.1
20 PORTDOCS=       README
21 PORTEXAMPLES=   cuetag.sh
22 PLIST_FILES=    bin/cuebreakpoints bin/cueconvert bin/cueprint
23
24 OPTIONS_DEFINE= DOCS EXAMPLES
25
26 .include <bsd.port.options.mk>
27
28 post-install:
29 .if ${PORT_OPTIONS:MDOCS}
30         @${MKDIR} ${DOCSDIR}
31         ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
32 .endif
33 .if ${PORT_OPTIONS:MEXAMPLES}
34         @${MKDIR} ${EXAMPLESDIR}
35         ${INSTALL_SCRIPT} ${WRKSRC}/extras/cuetag.sh ${EXAMPLESDIR}
36 .endif
37
38 .include <bsd.port.mk>