29692c1c01
Iter Vehemens ad Necem (IVAN) is a graphical roguelike game. It features advanced bodypart and material handling, multi-colored lighting and, above all, deep gameplay. - thanks to Martynas Venckus <martynas at altroot dot org> and steven@ for their patches to make this work under amd64. - note that this game does not work under sparc64. "looks reasonable" steven@
41 lines
785 B
Makefile
41 lines
785 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/02/04 18:56:38 ajacoutot Exp $
|
|
|
|
.if ${MACHINE_ARCH} == "sparc64"
|
|
BROKEN= "SIGBUS on sparc64 when starting"
|
|
.endif
|
|
|
|
COMMENT= "graphical roguelike game"
|
|
|
|
DISTNAME= ivan-0.50
|
|
CATEGORIES= games
|
|
|
|
HOMEPAGE= http://ivan.sourceforge.net/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ivan/}
|
|
|
|
WANTLIB= X11 Xext c m pthread stdc++ usbhid
|
|
|
|
LIB_DEPENDS= SDL.>=6::devel/sdl
|
|
|
|
VMEM_WARNING= Yes
|
|
|
|
USE_X11= Yes
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE=gnu
|
|
|
|
CONFIGURE_ARGS= --localstatedir=/var/games
|
|
|
|
post-install:
|
|
${INSTALL_DATA} /dev/null \
|
|
${PREFIX}/share/ivan/ivan-highscore.scores
|
|
|
|
.include <bsd.port.mk>
|