641ff1a31f
running the Half-life servers as root - Enable this message in all mod slave ports Submitted by: maintainer
94 lines
2.9 KiB
Makefile
94 lines
2.9 KiB
Makefile
# New ports collection makefile for: Counter Strike Server
|
|
# Date created: Sat Mar 10 16:40:06 EST 2001
|
|
# Whom: pat@databits.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME?= cs
|
|
PORTVERSION?= 1.1c
|
|
CATEGORIES= games linux
|
|
MASTER_SITES?= http://games.velocity.net/files/Counter-Strike/ \
|
|
ftp://ftp.pipex.net/uunet/games/counterstrike/linux/ \
|
|
ftp://ftp.icsmedia.de/pub/games/halflife/counter_strike/linux_server/ \
|
|
ftp://ftp.phil.uni-erlangen.de/pub/hl/mods/ \
|
|
http://fileplanet.games-world.net/dl/ftp1.gamespy.com/fpnew/action/half-life/modifications/cstrike/ \
|
|
ftp://ftp.fasta.fh-dortmund.de/gdi/halflife/counterstrike/ \
|
|
http://ftp2.gamespy.com/pub/cdrom/counter-strike/
|
|
PKGNAMEPREFIX= hlserver-
|
|
.ifndef(DISTNAME)
|
|
DISTFILES?= cs_11b_full.tar.gz cs_11c_up.tar.gz
|
|
.endif
|
|
|
|
MAINTAINER?= pat@databits.net
|
|
|
|
RUN_DEPENDS= ${LINUXBASE}${HLDSDIR}${HL_PROGRAM}:${HALFLIFESERVER_PORT}
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_LINUX_PREFIX= yes
|
|
NO_CDROM= "Size; the data set is much too big"
|
|
NO_BUILD= yes
|
|
.if (${PORTNAME}==cs)
|
|
WRKSRC?= ${WRKDIR}/cstrike
|
|
.else
|
|
WRKSRC?= ${WRKDIR}/${PORTNAME}
|
|
.endif
|
|
PLIST_SUB+= ${PLIST_SUB_MASTER}
|
|
|
|
INSTALL_DIR= ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
|
SORT?= /usr/bin/sort
|
|
|
|
HALFLIFESERVER_PORT= ${.CURDIR}/../halflifeserver
|
|
HLDSDIR!= cd ${HALFLIFESERVER_PORT} && ${MAKE} -V HLDSDIR
|
|
HL_PROGRAM!= cd ${HALFLIFESERVER_PORT} && ${MAKE} -V HL_PROGRAM
|
|
PLIST_SUB_MASTER!= cd ${HALFLIFESERVER_PORT} && ${MAKE} -V PLIST_SUB_FOR_THIS_PORT
|
|
PKGMESSAGE!= cd ${HALFLIFESERVER_PORT} && ${MAKE} -V PKGMESSAGE
|
|
|
|
pre-patch:
|
|
# remove trailing ^M
|
|
@find -E ${WRKSRC} -type f \
|
|
-iregex ".*\.(bat|cfg|gam|htm|html|inf|ini|lst|sc|scr|txt)" \
|
|
-exec ${PERL} -pi -ne 's!\r\n!\n!' {} 1>/dev/null 2>&1 \;
|
|
|
|
# if you change the PLIST, please re-think the following
|
|
# Parses PLIST
|
|
# creates dirs from @dirrm entries
|
|
# copies files from non ^@ entries
|
|
do-install: install-parse-plist install-run-scripts
|
|
# scan libraries
|
|
@( cd ${HALFLIFESERVER_PORT} ; ${MAKE} scan-libs )
|
|
|
|
# kaboom, ashes to ashes, .... The problem is dead :)
|
|
# Contributed by <lioux@FreeBSD.org>
|
|
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!^${HLDSDIR:S!^/!!}!!;' \
|
|
-e 'print FDIR "${INSTALL_DIR}", \
|
|
" ", "\"${PREFIX}/$$dir\"", \
|
|
"\n" if $$dir =~ s!(^\@dirrm\s+)!!;' \
|
|
-e 'print FFILES "${INSTALL_DATA}", \
|
|
" ", "\"${WRKDIR}/$$file_partial\"", \
|
|
" ", "\"${PREFIX}/$$file\"", \
|
|
"\n" if ($$file !~ m!^\@!);' \
|
|
-e '}' \
|
|
-e 'close(FFILES);' \
|
|
-e 'close(FDIR);' \
|
|
-e 'close(FHANDLER);'
|
|
# we want it sorted
|
|
@${SORT} ${WRKDIR}/dirs.sh.tmp > ${WRKDIR}/dirs.sh
|
|
|
|
install-run-scripts:
|
|
.for script in dirs files
|
|
@${SH} ${WRKDIR}/${script}.sh
|
|
.endfor
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|