mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
5005b67362
OPTIONS_DEFINE. This policy has been implemented only recently that's why we have many ports violating this policy. This patch adds the default options specified in the Porter's Handbook to OPTIONS_DEFINE where they are being used. Ports maintained by gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded. Approved by: portmgr (bapt)
34 lines
697 B
Makefile
34 lines
697 B
Makefile
# Created by: Dmitry Afanasiev <KOT@MATPOCKuH.Ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= autocd
|
|
PORTVERSION= 3.02.12b
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio sysutils
|
|
MASTER_SITES= ftp://kot.spb.ru/pub/src/projects/autocd/
|
|
|
|
MAINTAINER= KOT@MATPOCKuH.Ru
|
|
COMMENT= Compact disc control utility
|
|
|
|
NO_STAGE= yes
|
|
GNU_CONFIGURE= yes
|
|
MAN1= cdctl.1 acdplay.1
|
|
MAN8= autocd.8
|
|
MLINKS= cdctl.1 eject.1 cdctl.1 pause.1
|
|
PLIST_FILES= sbin/autocd bin/acdplay bin/cdctl bin/pause bin/eject
|
|
PORTDOCS= README.rus.html
|
|
|
|
USE_RC_SUBR= autocd
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|