diff options
author | Stanislav Sedov <stas@FreeBSD.org> | 2008-11-27 21:17:43 +0000 |
---|---|---|
committer | Stanislav Sedov <stas@FreeBSD.org> | 2008-11-27 21:17:43 +0000 |
commit | 7f5396f9045d3805f38533690f46158ce8d2e1ca (patch) | |
tree | dfe81d09740b515eac658288a53e781caf83260d /audio/cuetools/Makefile | |
parent | 86cd9787064088334776af097c8b2fd2e5ec3f22 (diff) | |
download | ports-7f5396f9045d3805f38533690f46158ce8d2e1ca.tar.gz ports-7f5396f9045d3805f38533690f46158ce8d2e1ca.zip |
- Install additional examples.
- Take maintainership.
- Bump PORTREVISION.
Notes
Notes:
svn path=/head/; revision=223468
Diffstat (limited to 'audio/cuetools/Makefile')
-rw-r--r-- | audio/cuetools/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/audio/cuetools/Makefile b/audio/cuetools/Makefile index 369719ae5817..97764c88c6e3 100644 --- a/audio/cuetools/Makefile +++ b/audio/cuetools/Makefile @@ -7,10 +7,11 @@ PORTNAME= cuetools PORTVERSION= 1.3.1 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://download.berlios.de/cuetools/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= stas@FreeBSD.org COMMENT= A set of utilities for working with cue files and toc files USE_GMAKE= yes @@ -18,12 +19,17 @@ GNU_CONFIGURE= yes MAN1= cuebreakpoints.1 cueconvert.1 cueprint.1 PORTDOCS= README +PORTEXAMPLES= cuetag.sh PLIST_FILES= bin/cuebreakpoints bin/cueconvert bin/cueprint post-install: .if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + @${MKDIR} ${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/ +.endif +.if !defined(NOPORTEXAMPLES) + @${MKDIR} ${EXAMPLESDIR}/ + ${INSTALL_SCRIPT} ${WRKSRC}/extras/cuetag.sh ${EXAMPLESDIR}/ .endif .include <bsd.port.mk> |