aboutsummaryrefslogtreecommitdiffstats
path: root/games/utserver/Makefile
blob: efd86c88671237e215c2f8e4473a929ccd67b26b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# New ports collection makefile for:    Unreal Tournament Dedicated Server
# Date created:             Thu Oct 4 23:38:00 CEST 2001
# Whom:         Martin Matuska <martin@tradex.sk> et al
#
# $FreeBSD$
#

PORTNAME=   utserver
PORTVERSION=    436
PORTREVISION=   3
CATEGORIES= games linux
MASTER_SITES=   http://public.planetmirror.com/pub/lokigames/installers/ut/ \
        http://fileserver.talkware.net/ut/
DISTNAME=   ut-server-${PORTVERSION}

MAINTAINER= ports@FreeBSD.org
COMMENT=    Unreal Tournament Dedicated Server for Linux

RUN_DEPENDS=    ${LINUXBASE}/usr/lib/libSDL-1.2.so.0:${PORTSDIR}/devel/linux-sdl12
BUILD_DEPENDS=  ${RUN_DEPENDS}

ONLY_FOR_ARCHS= i386
USE_LINUX_PREFIX=   yes
USE_PERL5=  yes
NO_CDROM=   "Size; the data set is much too big"
NO_BUILD=   yes
WRKSRC=     ${WRKDIR}/ut-server

UTDIR=      usr/games/ut-server/
PLIST_SUB=  UTDIR="${UTDIR}"
EXTRA_PATCHES=  ${WRKDIR}/patch-ngstatsut
INSTALL_DIR=    ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755
INSTALL_MY_DATA=    ${INSTALL} -o ${SHAREOWN} -g ${SHAREGRP} -m 644
SORT?=      /usr/bin/sort

# files which should be installed with executable perms
EXECUTABLES=    ucc ucc-bin ngStatsUT ngStatsUT.exe ngWorldStats \
        bgWorldStats ngWorldStats.exe

pre-patch:
# remove trailing ^M
    @${FIND} -E ${WRKSRC} -type f \
        -iregex ".*\.(bat|cfg|gam|htm|html|inf|ini|int|lst|pl|pm|sc|sh|scr|txt|url|uhtm)" \
        -exec ${PERL} -pi -ne 's!\r\n!\n!' {} 1>/dev/null 2>&1 \;
    @${SED} -e "s!%%LOCALBASE%%!${LOCALBASE}!" \
        -e "s!%%LINUXBASE%%!${LINUXBASE}!" \
        -e "s!%%UTDIR%%!${UTDIR}!" \
        ${FILESDIR}/template-patch-ngstatsut > \
        ${WRKDIR}/patch-ngstatsut

do-install: install-parse-plist install-run-scripts

# 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!^${UTDIR}!!;' \
            -e 'print FDIR "${INSTALL_DIR}", \
                " ", "\"${PREFIX}/$$dir\"", \
                "\n" if $$dir =~ s!(^\@dirrm\s+)!!;' \
            -e 'if ($$file !~ m!^\@!) {' \
                -e '$$program_flag = 0;' \
                -e 'if ("${EXECUTABLES}" ne "") {' \
                    -e 'foreach $$program_pattern \
                        (split (/\s+/,"${EXECUTABLES}")) {' \
                        -e '($$program_flag = 1 , break) \
                            if ($$file =~ /$$program_pattern$$/);' \
                    -e '}' \
                -e '}' \
                -e 'print FFILES ($$program_flag == 0) ? \
                    "${INSTALL_MY_DATA}" : "${INSTALL_SCRIPT}", \
                    " ", "\"${WRKSRC}/$$file_partial\"", \
                    " ", "\"${PREFIX}/$$file\"", \
                    "\n";' \
            -e '}' \
        -e '}' \
        -e 'close(FFILES);' \
        -e 'close(FDIR);' \
        -e 'close(FHANDLER);'
    @${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>