c82a470219
Obtained from: 8702eba5c0
.patch
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
# Created by: Matthew Hunt <mph@pobox.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= angband
|
|
PORTVERSION= 4.1.3
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://rephial.org/downloads/${PORTVERSION:R}/
|
|
|
|
PATCH_SITES= https://github.com/angband/angband/commit/
|
|
PATCHFILES= 8702eba5c070a157dfc8e9d7c2106f679b7845c2.patch:-p1
|
|
|
|
MAINTAINER= andrew@merenbach.com
|
|
COMMENT= Rogue-like game with color, X11 support
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= autoreconf gmake ncurses
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= ac_cv_path_NCURSES_CONFIG=${TRUE}
|
|
CONFIGURE_ARGS= --localstatedir=/var
|
|
|
|
CPPFLAGS+= -I${NCURSESINC}
|
|
LDFLAGS+= -L${NCURSESLIB} -lncursesw
|
|
|
|
OPTIONS_DEFINE= SDL X11 DOCS
|
|
OPTIONS_DEFAULT=X11
|
|
|
|
DOCS_BUILD_DEPENDS= rst2html:textproc/py-docutils
|
|
SDL_USES= sdl
|
|
SDL_USE= SDL=image,mixer,ttf,sdl
|
|
SDL_CONFIGURE_ENABLE= sdl
|
|
X11_USES= xorg
|
|
X11_USE= XORG=ice,sm,x11
|
|
X11_RUN_DEPENDS= xorg-fonts-miscbitmaps>=0:x11-fonts/xorg-fonts-miscbitmaps
|
|
X11_CONFIGURE_ENABLE= x11
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/-Wno-missing-field-initializers/,/fi$$/d ; \
|
|
s|/games$$|/bin|' ${WRKSRC}/configure.ac
|
|
@${REINPLACE_CMD} -e \
|
|
's|.SILENT:||' ${WRKSRC}/mk/buildsys.mk.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|-O0||' ${WRKSRC}/src/Makefile
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/angband
|
|
.for i in user/save user/scores
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/${i}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|