aboutsummaryrefslogtreecommitdiffstats
path: root/games/mangband/Makefile
blob: 986620f2ee74b512b8c48019362096d46771dc28 (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
# New ports collection makefile for:   mangband
# Date created:        30 Dec 1998
#
# $FreeBSD$
#

PORTNAME=       mangband
PORTVERSION=    0.5.4
CATEGORIES= games
MASTER_SITES=   http://www.umr.edu/~keldon/MAngband/
DISTNAME=       mangband-054

MAINTAINER=     ache@freebsd.org

WRKSRC=         ${WRKDIR}/mangband/src
ALL_TARGET=     install

USE_XLIB=       yes

MALIB=          ${PREFIX}/lib/mangband

do-install:
    ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 555 ${MALIB}
    cd ${WRKSRC}/../lib; ${CP} -R -p * ${MALIB}; \
       cd ${MALIB}; \
       ${TOUCH} file/wizards.txt; \
       ${CHMOD} 750 *; ${CHOWN} -R root.games *; \
       ${CHMOD} 755 user;
    cd ${WRKSRC}; \
       ${INSTALL_PROGRAM} -o root -g games -m 2550 \
        mangband ${PREFIX}/bin; \
       ${INSTALL_PROGRAM} -o root -g games -m 550 \
        mangconsole ${PREFIX}/bin; \
       ${INSTALL_PROGRAM} mangclient ${PREFIX}/bin

.include <bsd.port.mk>