mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 03:46:30 -04:00
32 lines
773 B
Makefile
32 lines
773 B
Makefile
PORTNAME= eject
|
|
PORTVERSION= 1.5
|
|
PORTREVISION= 5
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ports.jp.FreeBSD.org/pub/FreeBSD-jp/OD/ \
|
|
ftp://ftp4.jp.FreeBSD.org/pub/FreeBSD-jp/OD/ \
|
|
ftp://ftp.ics.es.osaka-u.ac.jp/pub/mirrors/FreeBSD-jp/OD/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Utility for ejecting media from CD or optical disk drive
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USES= uidfix
|
|
PLIST_FILES= sbin/eject \
|
|
share/man/man1/eject.1.gz
|
|
PORTDOCS= README README-J
|
|
MAKE_ARGS= BINOWN=${BINOWN} \
|
|
MANDIR="${PREFIX}/share/man/man"
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,4555,555,' ${WRKSRC}/Makefile
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|