1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/audio/autocd/Makefile
John Marino 2c4da57ad2 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.
2014-03-01 21:13:14 +00:00

35 lines
871 B
Makefile

# Created by: Dmitry Afanasiev <KOT@MATPOCKuH.Ru>
# $FreeBSD$
PORTNAME= autocd
PORTVERSION= 3.02.12b
PORTREVISION= 2
CATEGORIES= audio sysutils
MASTER_SITES= ftp://kot.spb.ru/pub/src/projects/autocd/
MAINTAINER= KOT@MATPOCKuH.Ru
COMMENT= Compact disc control utility
GNU_CONFIGURE= yes
PORTDOCS= README.rus.html
USE_RC_SUBR= autocd
OPTIONS_DEFINE= DOCS
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}
.include <bsd.port.mk>