d47bba1170
- Enable poll(2) support [1] - Better port description Idea from PR: ports/113948 [1] Submitted by: Gary Stanley [1]
38 lines
1 KiB
Makefile
38 lines
1 KiB
Makefile
# New ports collection makefile for: QStat
|
|
# Date created: 28 May 1998
|
|
# Whom: Daniel O'Connor <darius@dons.net.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qstat
|
|
PORTVERSION= 2.11
|
|
CATEGORIES= games net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= A command line program to query game servers on the net
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
post-extract:
|
|
@${MV} ${WRKSRC}/qstat.cfg ${WRKSRC}/qstat.cfg.default
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|\(qstat\.cfg\)|\1\.default|' \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|OpenBSD|FreeBSD|' ${WRKSRC}/qstat.c
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}/info ${DOCSDIR}/template
|
|
${INSTALL_DATA} ${WRKSRC}/qstatdoc.html ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/template/*.html ${WRKSRC}/template/*.txt \
|
|
${DOCSDIR}/template
|
|
${INSTALL_DATA} ${WRKSRC}/info/*.txt ${DOCSDIR}/info
|
|
.endif
|
|
@[ -f ${PREFIX}/etc/qstat.cfg ] || \
|
|
${CP} ${PREFIX}/etc/qstat.cfg.default ${PREFIX}/etc/qstat.cfg
|
|
|
|
.include <bsd.port.mk>
|