mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
New port punkbuster version 0.0.956: Punkbuster is designed against
cheating at multiplayer online games
This commit is contained in:
parent
7e375cec3b
commit
ec1ecd4eb4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=47289
7 changed files with 138 additions and 0 deletions
|
@ -310,6 +310,7 @@
|
|||
SUBDIR += priss
|
||||
SUBDIR += proxy
|
||||
SUBDIR += proxy-suite
|
||||
SUBDIR += punkbuster
|
||||
SUBDIR += punkbuster-data
|
||||
SUBDIR += pvm
|
||||
SUBDIR += pvm++
|
||||
|
|
93
net/punkbuster/Makefile
Normal file
93
net/punkbuster/Makefile
Normal file
|
@ -0,0 +1,93 @@
|
|||
# New ports collection makefile for: punkbuster anti cheat server
|
||||
# Date created: 29 Mar 2001
|
||||
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= punkbuster
|
||||
PORTVERSION= 0.0.956
|
||||
CATEGORIES= net linux
|
||||
MASTER_SITES= http://www.punkbuster.com/downloads/
|
||||
DISTNAME= pbsv${PORTVERSION:E}
|
||||
DIST_SUBDIR= punkbuster
|
||||
|
||||
MAINTAINER= lioux@FreeBSD.org
|
||||
|
||||
RUN_DEPENDS= ${LINUXBASE}${PUNKBUSTER_DIR}${PUNKBUSTER_DATA}:${PUNKBUSTER_DATA_PORT}
|
||||
|
||||
NO_PACKAGE= the software terms do not allow non-standard\
|
||||
${PORTNAME} distributions
|
||||
|
||||
USE_LINUX_PREFIX= yes
|
||||
NO_WRKSUBDIR= yes
|
||||
NO_BUILD= yes
|
||||
PLIST_SUB= PUNKBUSTER_DIR="${PUNKBUSTER_DIR:S/^\///}" \
|
||||
PUNKBUSTER_DOC_DIR="${PUNKBUSTER_DOC_DIR}"
|
||||
|
||||
INSTALL_DIR= ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
||||
SORT?= /usr/bin/sort
|
||||
STRIP_LINUX= ${LINUXBASE}/usr/bin/strip
|
||||
|
||||
PUNKBUSTER_DIR= /usr/games/punkbuster/
|
||||
PUNKBUSTER_PROGRAM= pb
|
||||
PUNKBUSTER_DATA_PORT= ../punkbuster-data
|
||||
PUNKBUSTER_DATA!= cd ${PUNKBUSTER_DATA_PORT} && ${MAKE} -V PUNKBUSTER_DATA
|
||||
PUNKBUSTER_DATA_DISTFILES!= cd ${PUNKBUSTER_DATA_PORT} && ${MAKE} -V DISTFILES
|
||||
PUNKBUSTER_DOC_DIR= usr/doc/${PKGNAME}/
|
||||
|
||||
pre-everything: pkgmessage-output
|
||||
|
||||
post-extract:
|
||||
.for file in ${PUNKBUSTER_DATA_DISTFILES}
|
||||
@${RM} ${WRKSRC}/${file}
|
||||
.endfor
|
||||
|
||||
post-patch:
|
||||
.for extension in cfg htm ini pbq txt
|
||||
@${PERL} -pi -ne "s!\r\n!\n!" ${WRKSRC}/*.${extension}
|
||||
.endfor
|
||||
@${PERL} -pi -ne "s!\r\n!\n!" ${WRKSRC}/README
|
||||
|
||||
install-parse-plist: generate-plist
|
||||
@${PERL} -e 'open(FHANDLER,"${TMPPLIST}");' \
|
||||
-e 'open(FDIR,">${WRKDIR}/dirs.sh.tmp");' \
|
||||
-e 'open(FFILES,">${WRKDIR}/files.sh");' \
|
||||
-e 'while (!eof(FHANDLER)) {' \
|
||||
-e 'chop($$file = <FHANDLER>);' \
|
||||
-e '$$dir = $$file_partial = $$file;' \
|
||||
-e '$$file_partial =~ s!^(${PUNKBUSTER_DIR:S/^\///}|${PUNKBUSTER_DOC_DIR})!!;' \
|
||||
-e 'print FDIR "${INSTALL_DIR}", \
|
||||
" ", "\"${PREFIX}/$$dir\"", \
|
||||
"\n" if $$dir =~ s!(^\@dirrm\s+)!!;' \
|
||||
-e 'print FFILES "${INSTALL_DATA}", \
|
||||
" ", "\"${WRKSRC}/$$file_partial\"", \
|
||||
" ", "\"${PREFIX}/$$file\" || true", \
|
||||
"\n" if ($$file !~ m!^\@!);' \
|
||||
-e '}' \
|
||||
-e 'close(FFILES);' \
|
||||
-e 'close(FDIR);' \
|
||||
-e 'close(FHANDLER);'
|
||||
|
||||
install-scripts:
|
||||
@${INSTALL_DIR} ${PREFIX}${PUNKBUSTER_DIR}
|
||||
@${SORT} ${WRKDIR}/dirs.sh.tmp > ${WRKDIR}/dirs.sh
|
||||
@${SH} ${WRKDIR}/dirs.sh
|
||||
@${SH} ${WRKDIR}/files.sh 2>/dev/true
|
||||
|
||||
pkgmessage-output:
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
do-install: install-parse-plist install-scripts pkgmessage-output
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
@${INSTALL_DATA} ${WRKSRC}/pbsvhl.cfg \
|
||||
${PREFIX}${PUNKBUSTER_DIR}/pbsvhl.cfg.sample
|
||||
.if !exists(${PREFIX}${PUNKBUSTER_DIR}/pbsvhl.cfg)
|
||||
@${INSTALL_DATA} ${WRKSRC}/pbsvhl.cfg ${PREFIX}${PUNKBUSTER_DIR}
|
||||
.endif
|
||||
# humm, can we strip or the program will complain that the checksum changed?
|
||||
@${STRIP_LINUX} ${PREFIX}${PUNKBUSTER_DIR}${PUNKBUSTER_PROGRAM}
|
||||
@${CHMOD} ${BINMODE} ${PREFIX}${PUNKBUSTER_DIR}${PUNKBUSTER_PROGRAM}
|
||||
|
||||
.include <bsd.port.mk>
|
1
net/punkbuster/distinfo
Normal file
1
net/punkbuster/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (punkbuster/pbsv956.tar.gz) = f1861ac3469b81102e42b5614422bb4c
|
1
net/punkbuster/pkg-comment
Normal file
1
net/punkbuster/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Punkbuster is designed against cheating at multiplayer online games
|
13
net/punkbuster/pkg-descr
Normal file
13
net/punkbuster/pkg-descr
Normal file
|
@ -0,0 +1,13 @@
|
|||
[from developer's web site]
|
||||
PunkBuster is a client/server software system that is designed to
|
||||
provide an online countermeasures system against cheating at
|
||||
multiplayer online games - specifically, games and mods based on
|
||||
the Half-Life engine by VALVe software.
|
||||
|
||||
Additionally, PunkBuster has a global Clan Tag Registry system
|
||||
built in to allow Clans to register their Clan Tags for protection
|
||||
on monitored servers. This prevents people from wearing their clan
|
||||
tag who aren't really in the clan. The list of registered tags is
|
||||
stored on our publicly accessible Internet website.
|
||||
|
||||
WWW: http://www.punkbuster.com/
|
6
net/punkbuster/pkg-message
Normal file
6
net/punkbuster/pkg-message
Normal file
|
@ -0,0 +1,6 @@
|
|||
ATTENTIONATTENTION:
|
||||
|
||||
DO NOT forget to read Punkbuster Software Terms.
|
||||
Ignorance is not an excuse. :-)
|
||||
|
||||
http://www.punkbuster.com/softwareterms.html
|
23
net/punkbuster/pkg-plist
Normal file
23
net/punkbuster/pkg-plist
Normal file
|
@ -0,0 +1,23 @@
|
|||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%README
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%clreadme.txt
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%cstags.htm
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%dodtags.htm
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%fatags.htm
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%flftags.htm
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%hltags.htm
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%master.htm
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%readme.txt
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%tfctags.htm
|
||||
%%PORTDOCS%%%%PUNKBUSTER_DOC_DIR%%wiztags.htm
|
||||
%%PUNKBUSTER_DIR%%pb
|
||||
%%PUNKBUSTER_DIR%%pb.ini
|
||||
%%PUNKBUSTER_DIR%%pbclhl.dll
|
||||
%%PUNKBUSTER_DIR%%pbclhl.so
|
||||
%%PUNKBUSTER_DIR%%pbsvhl.cfg
|
||||
%%PUNKBUSTER_DIR%%pbsvhl.so
|
||||
%%PUNKBUSTER_DIR%%sample.pbq
|
||||
@unexec cmp -s %D/%%PUNKBUSTER_DIR%%/pbsvhl.cfg.sample %D/%%PUNKBUSTER_DIR%%/pbsvhl.cfg && rm -f %D/%%PUNKBUSTER_DIR%%/pbsvhl.cfg ; || echo "If you are permanently removing this port, you should also do an \`\`rm ${PKG_PREFIX}/%%PUNKBUSTER_DIR%%/pbsvhl.cfg'' to remove any configuration files left." | fmt
|
||||
%%PUNKBUSTER_DIR%%pbsvhl.cfg.sample
|
||||
@exec [ -f %D/%%PUNKBUSTER_DIR%%/pbsvhl.cfg ] || cp -p %D/%%PUNKBUSTER_DIR%%/pbsvhl.cfg.sample %D/%%PUNKBUSTER_DIR%%/pbsvhl.cfg
|
||||
@unexec rmdir %D/%%PUNKBUSTER_DIR%% 2>/dev/null || echo "If you are permanently removing this port, you should also do an \`\`rm -Rf ${PKG_PREFIX}/%%PUNKBUSTER_DIR%%'' to remove any data files left. DO NOT forget to remove the punkbuster-data port first." | fmt
|
||||
%%PORTDOCS%%@dirrm %%PUNKBUSTER_DOC_DIR%%
|
Loading…
Add table
Reference in a new issue