summaryrefslogtreecommitdiff
path: root/audio/squash
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2013-12-14 09:52:41 +0000
committerMatthias Andree <mandree@FreeBSD.org>2013-12-14 09:52:41 +0000
commitfe5a51933433af9d273a796d21975a6f42b1240c (patch)
treee36f00df1cfb8ec788a7c2b034d30cf0d0aabc7d /audio/squash
parent- Fix the usage of 'python' to get rid of the implicit lang/python (diff)
Convert to staging.
Notes
Notes: svn path=/head/; revision=336430
Diffstat (limited to 'audio/squash')
-rw-r--r--audio/squash/Makefile17
1 files changed, 8 insertions, 9 deletions
diff --git a/audio/squash/Makefile b/audio/squash/Makefile
index 7c359a487944..b0b3376971e4 100644
--- a/audio/squash/Makefile
+++ b/audio/squash/Makefile
@@ -19,7 +19,6 @@ LIB_DEPENDS+= libFLAC.so:${PORTSDIR}/audio/flac \
libao.so:${PORTSDIR}/audio/libao
RUN_DEPENDS= id3v2:${PORTSDIR}/audio/id3v2
-NO_STAGE= yes
USE_BZIP2= yes
USES= gmake
USE_RUBY= yes
@@ -41,18 +40,18 @@ post-patch:
${WRKSRC}/src/global.c
do-install:
- ${MKDIR} ${PREFIX}/bin
- ${INSTALL_PROGRAM} ${WRKSRC}/squash ${PREFIX}/bin
+ ${MKDIR} ${STAGEDIR}${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/squash ${STAGEDIR}${PREFIX}/bin
.for FILE in collect_info edit_tag export_music import_music joystick uncollect_info
- ${INSTALL_SCRIPT} ${WRKSRC}/extra/${FILE}.rb ${PREFIX}/bin
+ ${INSTALL_SCRIPT} ${WRKSRC}/extra/${FILE}.rb ${STAGEDIR}${PREFIX}/bin
.endfor
- ${MKDIR} ${RUBY_SITELIBDIR}
- ${INSTALL_DATA} ${WRKSRC}/extra/musicdb_lib.rb ${RUBY_SITELIBDIR}
- ${INSTALL_DATA} ${WRKSRC}/extra/squash.conf ${PREFIX}/etc/squash.conf.dist
+ ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}
+ ${INSTALL_DATA} ${WRKSRC}/extra/musicdb_lib.rb ${STAGEDIR}${RUBY_SITELIBDIR}
+ ${INSTALL_DATA} ${WRKSRC}/extra/squash.conf ${STAGEDIR}${PREFIX}/etc/squash.conf.dist
.if ${PORT_OPTIONS:MDOCS}
- ${MKDIR} ${DOCSDIR}
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}
.for i in README doc/FEATURES doc/LOCKS doc/INSTALL doc/USERS_GUIDE
- ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
.endfor
.endif