a6531896cf
game servers and retrieves information like those available while browsing servers in the game. That means information like server name, game type and current map, names and scores of players, and much more. WWW: http://quaqut.sourceforge.net/ PR: ports/104698 Submitted by: Alexander Logvinov <ports@logvinov.com>
34 lines
796 B
Makefile
34 lines
796 B
Makefile
# New ports collection makefile for: quaqut
|
|
# Date created: 19 October 2006
|
|
# Whom: Alexander Logvinov <ports@logvinov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= quaqut
|
|
PORTVERSION= 0.2.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@logvinov.com
|
|
COMMENT= Queries information from Unreal Tournament 2004 game servers
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
MAN1= ${PORTNAME}.1
|
|
PORTDOCS= AUTHORS COPYING ChangeLog README
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|