1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/games/bsdgames/Makefile
Ulrich Spörlein 037d27a315 Fix battlestar(6), there was treachery afoot, see the newsflash.
*BATTLESTAR NEWSFLASH*BATTLESTAR NEWSFLASH*BATTLESTAR NEWSFLASH*

Battlestar Daily uncovers heinous sabotage scheme!
Leaked mission radio protocols show losing grip on reality.

In what flabbergasted experts describe as a 'highly efficient, covert
thingie'-scheme, members of our forces involved in highly classified operations
suffered a dramatic loss of vital sensorical capabilities, leading to
desastrous results.

From leaked radio recordings and its own sources involved in mission
preparation and conduct, BD learned shocking details of failed missions.

While sources insist, that missions parameters were in normal range at all
times, the recordings reveal disoriented operatives, sobbingly crawling floors
looking for gear like laser pistols, or panicking over loss of visuals after
battles in space.

'Odd.', one expert is quoted saying after reviewing detailed mission protocols,
clearly admitting to this being a deliberate act of sabotage.

'They need to adapt to this new threat.', says Vidad Gleirg, Battlestar senior
consultant with Anagram & Partners, 'Quickly.'.

BD has notified officials of the situation, and is awaiting responses.

PR:		ports/166319
Submitted by:	Marco Steinbach <coco@executive-computing.de>
Approved by:	beat (mentor)
2012-05-25 10:50:07 +00:00

107 lines
2.2 KiB
Makefile

# Ports collection makefile for: games
# Date created: 20 Nov 2002
# Whom: Mark Murray <markm@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= bsdgames
PORTVERSION= 2.4
PORTREVISION= 2
PORTEPOCH= 1
CATEGORIES= games
# Fetched from http://gitweb.dragonflybsd.org/dragonfly.git/tree/v2.4.0:/games
# Content is stable, but file timestamps differ. Bad gitweb, no cookie!
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= uqs
MAINTAINER= uqs@FreeBSD.org
COMMENT= Traditional BSD games taken from DragonFly BSD
WRKSRC= ${WRKDIR}/dragonfly
USE_BZIP2= yes
MAKE_ENV+= NO_WERROR=1
MAN6= adventure.6 \
arithmetic.6 \
atc.6 \
backgammon.6 \
battlestar.6 \
bs.6 \
canfield.6 \
cfscores.6 \
cribbage.6 \
fish.6 \
hack.6 \
hangman.6 \
hunt.6 \
huntd.6 \
larn.6 \
mille.6 \
phantasia.6 \
piano.6 \
pig.6 \
quiz.6 \
rain.6 \
robots.6 \
rogue.6 \
sail.6 \
snake.6 \
snscore.6 \
trek.6 \
wargames.6 \
worm.6 \
worms.6 \
wump.6
MANCOMPRESSED= maybe
# contain /usr/share/games
SHAREPATH_FILES=atc/atc.6 \
atc/pathnames.h \
cribbage/cribbage.6 \
cribbage/pathnames.h \
fish/pathnames.h \
larn/pathnames.h \
quiz/datfiles/index \
quiz/pathnames.h \
quiz/quiz.6 \
wump/pathnames.h
# contain /usr/games/*
GAMESPATH_FILES=backgammon/backgammon/backgammon.6 \
backgammon/common_source/init.c \
canfield/canfield/canfield.6 \
cribbage/cribbage.6 \
hunt/hunt/hunt.6 \
hunt/huntd/huntd.6 \
phantasia/pathnames.h \
wargames/wargames.sh
# These keep score in /var/games
SGID_BINARIES= atc battlestar canfield/canfield cribbage hack phantasia \
robots sail snake/snake
post-patch:
@for f in ${SHAREPATH_FILES}; do \
${REINPLACE_CMD} -e 's|/usr/share/games|${PREFIX}/share/games|g' \
${WRKSRC}/$${f}; \
done
@for f in ${GAMESPATH_FILES}; do \
${REINPLACE_CMD} -e 's|/usr/games|${PREFIX}/bin|g' \
${WRKSRC}/$${f}; \
done
@for f in ${SGID_BINARIES}; do \
${REINPLACE_CMD} -e 's/HIDEGAME/SGIDGAME/' \
${WRKSRC}/$${f}/Makefile; \
done
# Only useful for DESTDIR
VARDIR?= /var
pre-su-install:
${MKDIR} ${VARDIR}
mtree -deU -f ${FILESDIR}/var.mtree -p ${VARDIR}
mtree -deU -f ${FILESDIR}/share.mtree -p ${PREFIX}/share
.include <bsd.port.mk>