openbsd-ports/games/zangband/Makefile
ajacoutot a08f3919de Sanitize some @unexec/@extraunexec calls to rm: move them up in the
PLIST and delete everything under the @sample'd directory instead of the
directory itself to prevent a warning from pkg_delete(1) trying to
remove a non existing directory and to help preventing left-over files
and directories.
2011-05-11 06:56:42 +00:00

60 lines
1.6 KiB
Makefile

# $OpenBSD: Makefile,v 1.20 2011/05/11 06:56:43 ajacoutot Exp $
COMMENT= Zangband (Zelazny Angband) with color, X11 support
VERSION= 2.6.2
DISTNAME= zangband-${VERSION}
REVISION = 4
CATEGORIES= games
MASTER_SITES= ftp://ftp.sunet.se/pub/games/Angband/Variant/ZAngband/ \
ftp://ftp.planetmirror.com/pub/angband/Variant/ZAngband/ \
ftp://clockwork.dementia.org/angband/Variant/ZAngband/
PERMIT_PACKAGE_CDROM= not-for-profit redistribution only
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= not-for-profit redistribution only
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c ncurses
HOMEPAGE= http://www.zangband.org/
USE_GMAKE= Yes
MAKE_ENV= CC="${CC}" CFLAGS="${CFLAGS}"
AUTOCONF_VERSION= 2.54
AUTOMAKE_VERSION= 1.4
CONFIGURE_STYLE= autoconf automake
CONFIGURE_ENV= TRUEPREFIX="${TRUEPREFIX}"
WRKDIST= ${WRKDIR}/zangband
FLAVORS= no_x11
FLAVOR?=
.if !${FLAVOR:L:Mno_x11}
CONFIGURE_ARGS+= --with-x
WANTLIB+= ICE SM X11 Xaw Xmu Xt pthread-stubs xcb
.else
CONFIGURE_ARGS+= --without-x
.endif
post-patch:
@cd ${WRKSRC}; AUTOMAKE_VERSION=${AUTOMAKE_VERSION} aclocal
pre-configure:
@cd ${WRKSRC}; AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
automake --foreign --add-missing --copy
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/zangband
(cd ${WRKDIST}/lib && tar -cf - * ) | \
(cd ${PREFIX}/share/zangband && tar -xf - )
@chown -R ${SHAREOWN}:games ${PREFIX}/share/zangband
@find ${PREFIX} \( -name Makefile\* -o -name delete.me \) \
-exec rm "{}" \;
${INSTALL} -s -o ${BINOWN} -g games -m 2555 ${WRKSRC}/src/zangband \
${PREFIX}/bin
.include <bsd.port.mk>