1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/games/angband/Makefile
Matthew Hunt ac7b5b17c7 Install angband non-sgid, with the following side effects:
- Two directories are mode 1777; the user is alerted to
	  this during "make install".

	- High score reporting doesn't work, to avoid having a
	  world-writable file.

	- It is presumably possible for one user to prevent another
	  from playing by creating bogus savefiles in the mode 1777
	  directories.  Frankly, I'm not going to devote my time to
	  solving game-play DoS attacks.

Previously, certain files (lib/data) were generated the first time
angband was run.  These files are now obtained from my directory on
www.freebsd.org and are installed during "make install".

Several cleanups also, while I'm here.

This port is no longer BROKEN.
1999-12-02 19:19:03 +00:00

44 lines
1.3 KiB
Makefile

# New ports collection makefile for: angband
# Version required: 2.8.3
# Date created: 21 Feb 1997
# Whom: Matthew Hunt <mph@pobox.com>
#
# $FreeBSD$
#
DISTNAME= angband-283
PKGNAME= angband-2.8.3
CATEGORIES= games
MASTER_SITES= ftp://export.andrew.cmu.edu/angband/Source/ \
http://www.freebsd.org/~mph/distfiles/
DISTFILES= angband-283.tar.gz ext-x11-283.tar.gz angband-data.tar.gz
MAINTAINER= mph@freebsd.org
USE_X_PREFIX= yes
DIST_SUBDIR= angband
EXTRACT_ONLY= angband-283.tar.gz ext-x11-283.tar.gz
EXTSRC= ${WRKDIR}/ext-x11-283
pre-patch:
${CP} ${WRKSRC}/src/Makefile.std ${WRKSRC}/src/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/angband ${PREFIX}/bin/angband
${MKDIR} ${PREFIX}/lib/X11/angband
(cd ${WRKSRC}/lib && ${TAR} cf - * ) | (cd ${PREFIX}/lib/X11/angband && tar xf - )
(cd ${PREFIX} && ${TAR} xzf ${DISTDIR}/${DIST_SUBDIR}/angband-data.tar.gz)
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/X11/angband
(cd ${PREFIX}/lib/X11/angband && \
${CHMOD} 555 apex bone data edit file help info xtra ; \
${CHMOD} 1777 save user \
)
${INSTALL} -o ${SHAREOWN} -g ${SHAREGRP} -m 555 /dev/null ${PREFIX}/lib/X11/angband/apex/scores.raw
${INSTALL_DATA} ${EXTSRC}/lib/xtra/tiles.raw \
${PREFIX}/lib/X11/angband/xtra
@${CAT} ${PKGDIR}/MESSAGE
.include <bsd.port.mk>