audio/autocd: Complete stage support

The vendor makefile doesn't contain the word "DESTDIR" so it's pretty
clear why the first attempt at staging this port failed.   Complete
staging by using the do-install target to install everything.
This commit is contained in:
John Marino 2014-03-01 21:13:14 +00:00
parent 41106d5474
commit 2c4da57ad2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=346720

View file

@ -3,7 +3,7 @@
PORTNAME= autocd
PORTVERSION= 3.02.12b
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= audio sysutils
MASTER_SITES= ftp://kot.spb.ru/pub/src/projects/autocd/
@ -18,7 +18,16 @@ USE_RC_SUBR= autocd
OPTIONS_DEFINE= DOCS
post-install:
do-install:
@(cd ${WRKSRC} && ${INSTALL_PROGRAM} acdplay cdctl \
${STAGEDIR}${PREFIX}/bin/)
${INSTALL_PROGRAM} ${WRKSRC}/autocd ${STAGEDIR}${PREFIX}/sbin
@(cd ${STAGEDIR}${PREFIX}/bin && \
ln -s cdctl pause && \
ln -s cdctl eject)
@(cd ${WRKSRC} && ${INSTALL_MAN} acdplay.1 cdctl.1 \
${STAGEDIR}${PREFIX}/man/man1/)
${INSTALL_MAN} ${WRKSRC}/autocd.8 ${STAGEDIR}${PREFIX}/man/man8/
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}