mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
34 lines
768 B
Makefile
34 lines
768 B
Makefile
# Created by: Alexey Dokuchaev <danfe@regency.nsu.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wmqstat
|
|
PORTVERSION= 0.0.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= games windowmaker
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/wmQStat%20${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Dockapp for monitoring of various Internet game servers
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= qstat:${PORTSDIR}/games/qstat
|
|
|
|
USE_XORG= xpm x11 xext
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
# Unbreak the build against Clang
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's, inline,,' ${WRKSRC}/wmgeneral/list.h
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|