View | Details | Raw Unified | Return to bug 62001
Collapse All | Expand All

(-)wolf3d-new/Makefile (-1 / +5 lines)
Lines 7-19 Link Here
7
7
8
PORTNAME=	wolf3d
8
PORTNAME=	wolf3d
9
PORTVERSION=	20011028
9
PORTVERSION=	20011028
10
PORTREVISION=	1
10
CATEGORIES=	games
11
CATEGORIES=	games
11
MASTER_SITES=	http://www.icculus.org/wolf3d/:wolf \
12
MASTER_SITES=	http://www.icculus.org/wolf3d/:wolf \
12
		http://www.liquidx.org/distfiles/:wolfdata
13
		http://www.liquidx.org/distfiles/:wolfdata
13
DISTFILES=	wolf3d-20011028.tar.gz:wolf wolfdata.tar.gz:wolfdata
14
DISTFILES=	wolf3d-20011028.tar.gz:wolf wolfdata.tar.gz:wolfdata
14
15
15
MAINTAINER=	tlp@liquidx.org
16
MAINTAINER=	tlp@liquidx.org
16
COMMENT=	Wolfenstein 3D by Steven Fuller, based on 1992 id Software game
17
COMMENT=	"Wolfenstein 3D Linux" by Steven Fuller (1992)
17
18
18
USE_SDL=	yes
19
USE_SDL=	yes
19
USE_GZIP=	yes
20
USE_GZIP=	yes
Lines 42-46 Link Here
42
	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README
43
	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README
43
	${INSTALL_DATA} ${WRKSRC}/TODO ${DOCSDIR}/TODO
44
	${INSTALL_DATA} ${WRKSRC}/TODO ${DOCSDIR}/TODO
44
.endif
45
.endif
46
47
post-install:
48
	@${CAT} ${PKGMESSAGE}
45
49
46
.include <bsd.port.mk>
50
.include <bsd.port.mk>
(-)wolf3d-new/files/wolf3d.in (-1 / +29 lines)
Lines 3-8 Link Here
3
#
3
#
4
# 2004 Travis Poppe
4
# 2004 Travis Poppe
5
5
6
USERDIR=$HOME/.wolf3d
7
8
if [ -x $USERDIR ]; then
9
	echo "wolf3d appears to be installed to $USERDIR/"
10
	echo ""
11
	echo "Basic options:"
12
	echo ""
13
	echo "-nowait           Skips introduction"
14
	echo "-nojoy            Disables joystick"
15
	echo "-nomouse          Disables mouse"
16
	echo "-x2               Increases screen size by x2"
17
	echo "-x3               Increases screen size by x3"
18
	echo "-fullscreen       Enables fullscreen mode"
19
	echo "-demotest         Starts wolf3d in demonstration mode"
20
	echo "-version          Reports game version"
21
	echo ""
22
23
	cd $USERDIR
24
	./sdlwolf3d $*
25
	exit
26
fi
27
28
mkdir $USERDIR
29
ln -s %%PREFIX%%/libexec/wolf3d/* $USERDIR
30
31
echo "Installed wolf3d to $USERDIR/"
32
echo ""
6
echo "Basic options:"
33
echo "Basic options:"
7
echo ""
34
echo ""
8
echo "-nowait           Skips introduction"
35
echo "-nowait           Skips introduction"
Lines 14-18 Link Here
14
echo "-demotest         Starts wolf3d in demonstration mode"
41
echo "-demotest         Starts wolf3d in demonstration mode"
15
echo "-version          Reports game version"
42
echo "-version          Reports game version"
16
echo ""
43
echo ""
17
cd %%PREFIX%%/libexec/wolf3d
44
45
cd $USERDIR
18
./sdlwolf3d $*
46
./sdlwolf3d $*
(-)wolf3d-new/pkg-message (+8 lines)
Line 0 Link Here
1
-------------------------------------------------------------------------------
2
This port's wrapper script will install the wolf3d data to your home directory
3
the first time you run it. If for some odd reason you already have a directory
4
called .wolf3d in your home directory, you must (re)move it before this port 
5
will function correctly.
6
7
-tlp
8
-------------------------------------------------------------------------------

Return to bug 62001