819f25b36d
The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
23 lines
508 B
Makefile
23 lines
508 B
Makefile
PORTNAME= mcweject
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://acadix.biz/Ports/distfiles/
|
|
|
|
MAINTAINER= jwb@FreeBSD.org
|
|
COMMENT= Removable media eject
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
CONFLICTS= eject
|
|
|
|
USES= tar:xz
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/eject.allow ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/eject ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/eject.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|