mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 01:46:55 -04:00
Simplify expressions for FreeBSD 13.X Reviewed by: many Differential Revision: https://reviews.freebsd.org/D46601
24 lines
501 B
Makefile
24 lines
501 B
Makefile
PORTNAME= gstopd
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= LOCAL/mr
|
|
|
|
MAINTAINER= mr@FreeBSD.org
|
|
COMMENT= GEOM stop daemon
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
PLIST_FILES= sbin/gstopd share/man/man8/gstopd.8.gz
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD
|
|
CFLAGS+= -Wno-error=unused-but-set-variable
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gstopd ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/gstopd.8 ${STAGEDIR}${PREFIX}/share/man/man8
|
|
|
|
.include <bsd.port.mk>
|