2f62e89795
user modifiable files (like score, bone and save files). Add pkg/INSTALL and pkg/DEINSTALL to manage them. Also, sync the installation with the way zangband does it. Instead of "No", specify that the license is unclear for distribution rights on CDROM.
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.10 2001/08/11 17:18:50 lebel Exp $
|
|
# Original from: Robert Ruehlmann
|
|
|
|
COMMENT= "rogue-like game with X11 support"
|
|
COMMENT-no_x11= "rogue-like game"
|
|
|
|
DISTNAME= angband-2.9.3
|
|
CATEGORIES= games
|
|
NEED_VERSION= 1.433
|
|
|
|
HOMEPAGE= http://thangorodrim.angband.org/
|
|
|
|
MAINTAINER= Carsten Ilchmann <ci2@gmx.net>
|
|
|
|
PERMIT_PACKAGE_CDROM= "unclear license"
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= "unclear license"
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://clockwork.dementia.org/angband/Source/ \
|
|
ftp://ftp.sunet.se/pub/games/Angband/Source/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-setgid=games
|
|
CONFIGURE_ENV= TRUEPREFIX="${TRUEPREFIX}"
|
|
|
|
FLAVORS= no_x11
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mno_x11}
|
|
CONFIGURE_ARGS+= --without-x
|
|
.else
|
|
USE_X11= Yes
|
|
CONFIGURE_ARGS+= --with-x
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/angband
|
|
(cd ${WRKDIST}/lib && tar -cf - * ) | \
|
|
(cd ${PREFIX}/share/angband && tar -xf - )
|
|
@chown -R ${SHAREOWN}:games ${PREFIX}/share/angband
|
|
@find ${PREFIX} \( -name Makefile\* -o -name delete.me \) \
|
|
-exec rm "{}" \;
|
|
${INSTALL} -s -o ${BINOWN} -g games -m 2555 ${WRKSRC}/src/angband \
|
|
${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|