diff options
author | Felippe de Meirelles Motta <lippe@FreeBSD.org> | 2009-10-18 20:17:50 +0000 |
---|---|---|
committer | Felippe de Meirelles Motta <lippe@FreeBSD.org> | 2009-10-18 20:17:50 +0000 |
commit | 37f7876f585ed5d28a1bf928a2c96d5f8c1387a8 (patch) | |
tree | 3e8e16a03132a54b520c669ca00f02b2030e3c3b /audio/toolame | |
parent | a2a35e5790ca076afb1ff5ec26b68b36522c99a2 (diff) | |
download | ports-37f7876f585ed5d28a1bf928a2c96d5f8c1387a8.tar.gz ports-37f7876f585ed5d28a1bf928a2c96d5f8c1387a8.zip |
Notes
Diffstat (limited to 'audio/toolame')
-rw-r--r-- | audio/toolame/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/audio/toolame/Makefile b/audio/toolame/Makefile index d3564d45b23a..7c9af6d302a2 100644 --- a/audio/toolame/Makefile +++ b/audio/toolame/Makefile @@ -13,7 +13,7 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%200.2/${PORTNAME}%2002l DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//} EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= scjamorim@bsd.com.br COMMENT= Optimized mpeg 1/2 layer 2 audio encoder USE_GMAKE= yes @@ -26,9 +26,11 @@ PORTDOCS= FUTURE HISTORY LGPL.txt README .include <bsd.port.pre.mk> do-install: -.ifndef(NOPORTDOCS) +.if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} - @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} +.for docs in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR} +.endfor .endif @${INSTALL_PROGRAM} ${WRKSRC}/toolame ${PREFIX}/bin |