319b741973
Summary of Changes * percentage combat is refined to become an actually playable option * improvements to throwing * udate to town generation * a major update to the new blackguard class * several tweaks to the other new classes * many improvements to the MacOS front-end particularly, but also others * improvements to tiles * addition of fancy color-cycling of monsters * configurability of charecter sheet * inclusion of some new, rare level types * experimental Windows curses and SDL2 console ports added * many small bugs fixed and quality-of-life improvements made
37 lines
929 B
Text
37 lines
929 B
Text
# $NetBSD: Makefile.common,v 1.2 2020/07/07 13:17:46 nia Exp $
|
|
# used by games/angband-sdl/Makefile
|
|
# used by games/angband/Makefile
|
|
|
|
DISTNAME= angband-4.2.1
|
|
CATEGORIES= games
|
|
MASTER_SITES= https://rephial.org/downloads/4.2/
|
|
|
|
HOMEPAGE= https://rephial.org/
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_TOOLS+= autoconf automake aclocal autoheader
|
|
USE_TOOLS+= gmake
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../games/angband/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../games/angband/patches
|
|
|
|
# Installs executables to /games by default.
|
|
CONFIGURE_ARGS+= --bindir=${PREFIX}/bin
|
|
|
|
# Mostly game data...
|
|
CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/share
|
|
|
|
CONFIGURE_ARGS+= --without-x
|
|
|
|
SUBST_CLASSES+= nc
|
|
SUBST_STAGE.nc= pre-configure
|
|
SUBST_MESSAGE.nc= Fixing the ncursesw version number.
|
|
SUBST_FILES.nc+= acinclude.m4
|
|
SUBST_SED.nc+= -e 's|ncursesw5|ncursesw6|g'
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ./autogen.sh
|
|
|
|
.include "../../devel/ncursesw/buildlink3.mk"
|