Remove expired port games/hlserver-tsc

This commit is contained in:
Renato Botelho 2006-02-14 17:46:49 +00:00
parent 489c4edaf7
commit 2e5ee2c6b4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=156045
7 changed files with 1 additions and 166 deletions

1
MOVED
View File

@ -2183,3 +2183,4 @@ ftp/ftp4all||2006-02-14|Remove expired port
ftp/ftpsearch||2006-02-14|Remove expired port
emulators/linux_base-src-rh-8||2006-02-14|Remove expired port
emulators/linux_base-src-rh-7.3||2006-02-14|Remove expired port
games/hlserver-tsc||2006-02-14|Remove expired port

View File

@ -283,7 +283,6 @@
SUBDIR += hlserver-psychostats
SUBDIR += hlserver-si
SUBDIR += hlserver-ts
SUBDIR += hlserver-tsc
SUBDIR += hlserver-vs
SUBDIR += hlserver-wasteland
SUBDIR += hlserver-wizwars

View File

@ -1,34 +0,0 @@
# New ports collection makefile for: TSC Server
# Date created: Mon Nov 12 13:19:17 BRST 2001
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= tsc
PORTVERSION= 0.2.5.3.b
PORTREVISION= 1
MASTER_SITES= http://tsc.austin2600.org/ \
http://www.mystwalker.de/cs/
DISTNAME= ${PORTNAME}${PORTVERSION:S/^0.//:S/.b$/beta/}
MAINTAINER= ports@FreeBSD.org
COMMENT= Half-Life mod Counter-Strike with TSC modifications
BROKEN= "mastersite disappeared, no longer maintained by author"
DEPRECATED= "${BROKEN}"
EXPIRATION_DATE= 2006-02-13
BUILD_DEPENDS+= ${LINUXBASE}${HLDSDIR}cstrike/liblist.gam:${HALFLIFE_COUNTERSTRIKE_MASTER}
NO_WRKSUBDIR= yes
USE_ZIP= yes
PKGDEINSTALL= ${PKGINSTALL}
slaveport-post-install:
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} \
${PKGINSTALL} ${PKGNAME} POST-INSTALL
HALFLIFE_PORT_MASTER= ${.CURDIR}/../hlserver-flf
.include "${HALFLIFE_PORT_MASTER}/Makefile"

View File

@ -1,2 +0,0 @@
MD5 (tsc2.5.3beta.zip) = c8eb29d05f30572f67a814f102b1d2ec
SIZE (tsc2.5.3beta.zip) = 676684

View File

@ -1,19 +0,0 @@
This package contains the files to run a FreeBSD Half-Life
Counter-Strike server under Linux emulation with the TSC modification
[from developer's site]
TSC is a server side modification to CS and the half life server
system. It adds more features and effects to the CS experience.
Features included in this release are:
-AIMBOT PROTECTION - USERS WILL BE DISCONNECTED!!! [automatically
enabled]
-Optional model and sprite enforcement controlls with various
enforcement levels.
- OGC 5.0a blocked
- lots more
Visit these following web pages for more information:
WWW: http://tsc.austin2600.org/

View File

@ -1,105 +0,0 @@
#!/bin/sh
# $FreeBSD$
# based on original from op port, written by Cyrille Lefevre
# <clefevre@citeweb.net>
[ $# != 2 ] && exit 1
PKGNAME=$1
ACTION=$2
HLDSDIR=/usr/games/hlds_l/
CONF_DIR=${PKG_PREFIX}/${HLDSDIR}/cstrike
CONF_FILE=liblist.gam
CONF_OWN=root
CONF_GRP=wheel
CONF_MODE=444
SAMP_SUFX=.old
INSTALL=install
CMP=cmp
FMT=fmt
GREP=grep
PERL=perl
RM=rm
RMDIR=rmdir
WWW="http://www.tsc.austin2600.org/"
INSTALL_DIR="${INSTALL} -d -o root -g wheel -m 755"
INSTALL_DATA="install -c -o root -g wheel -m 444"
AUDIO_FILES="gasp1.wav gasp2.wav"
case "$ACTION" in
POST-INSTALL)
for file in ${AUDIO_FILES}
do
${INSTALL_DATA} ${PKG_PREFIX}/${HLDSDIR}dmc/sound/player/${file} \
${PKG_PREFIX}${HLDSDIR}cstrike/sound/player/
done
echo "$PKGNAME: ======> <======"
if [ -f ${CONF_DIR}/${CONF_FILE} ]
then
IS_IT_THERE=`${GREP} -E -e '^gamedll_linux.*\"dlls\/cs_i386.so\"$' ${CONF_DIR}/${CONF_FILE}`
fi
if [ -n "${IS_IT_THERE}" ]
then
${PERL} -pi -ne 's|^(gamedll_linux.*\"dlls\/)cs_i386(.so\"\s*)$|\1tsc\2|' \
${CONF_DIR}/${CONF_FILE}
echo "$PKGNAME: Modified ${CONF_DIR}/${CONF_FILE}. It now uses TSC."
echo "$PKGNAME: If you want admin mod or metamod, check TSC's site (${WWW}) for installation instructions." | ${FMT}
else
echo "$PKGNAME: ERROR: Existing ${CONF_DIR}/${CONF_FILE} configuration file was modified by hand." | ${FMT}
echo "$PKGNAME: You probably edited it by hand. Therefore, I can't automatically modify it."
echo "$PKGNAME: There is no problem."
echo "$PKGNAME: Just go to developer's site (${WWW}) and check installation instructions."
fi
echo "$PKGNAME: ======> <======"
;;
DEINSTALL)
for file in ${AUDIO_FILES}
do
${RM} ${PKG_PREFIX}/${HLDSDIR}cstrike/sound/player/${file}
done
echo "$PKGNAME: ======> <======"
if [ -f ${CONF_DIR}/${CONF_FILE} ]
then
IS_IT_THERE=`${GREP} -E -e '^gamedll_linux.*\"dlls\/tsc.so\"$' ${CONF_DIR}/${CONF_FILE}`
fi
if [ -n "${IS_IT_THERE}" ]
then
${PERL} -pi -ne 's|^(gamedll_linux.*\"dlls\/)tsc(.so\"\s*)$|\1cs_i386\2|' \
${CONF_DIR}/${CONF_FILE}
echo "$PKGNAME: Modified ${CONF_DIR}/${CONF_FILE}. It no longer uses TSC."
echo "$PKGNAME: If added admin mod or metamod to TSC, check TSC's site (${WWW}) for deinstallation (do installation backwards) instructions." | ${FMT}
else
echo "$PKGNAME: ERROR: Existing ${CONF_DIR}/${CONF_FILE} configuration file was modified by hand." | ${FMT}
echo "$PKGNAME: You probably edited it by hand. Therefore, I can't automatically modify it."
echo "$PKGNAME: There is no problem."
echo "$PKGNAME: Just go to developer's site (${WWW}) and check deinstallation (do installation backwards) instructions." | ${FMT}
fi
echo "$PKGNAME: ======> <======"
;;
PRE-INSTALL|POST-DEINSTALL)
;;
*)
exit 1
;;
esac
exit

View File

@ -1,5 +0,0 @@
%%HLDSDIR%%cstrike/dlls/tsc.so
%%PORTDOCS%%%%HLDSDIR%%cstrike/readme.txt
%%PORTDOCS%%%%HLDSDIR%%cstrike/sound/player/sound readme.txt
%%HLDSDIR%%cstrike/sound/welcome.wav
%%HLDSDIR%%cstrike/tsc.ini