b22714bd90
Armagetron is a multiplayer game in 3d that attempts to emulate and expand on the lightcycle sequence from the movie Tron. It's an old school arcade game slung into the 21st century. Highlights include a customizable playing arena, HUD, unique graphics, and AI bots. For the more advanced player there are new game modes and a wide variety of physics settings to tweak as well. ok jeremy@ kirby@
42 lines
923 B
Makefile
42 lines
923 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/10/12 18:13:38 bentley Exp $
|
|
|
|
COMMENT = 3D light cycle game
|
|
|
|
DISTNAME = armagetronad-0.2.8.3.2.src
|
|
PKGNAME = ${DISTNAME:S/.src//}
|
|
|
|
CATEGORIES = games
|
|
|
|
HOMEPAGE = http://armagetronad.org/
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += GL GLU SDL SDL_image SDL_mixer c jpeg m png pthread
|
|
WANTLIB += stdc++ xml2 z
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=armagetronad/}
|
|
|
|
MODULES = converters/libiconv
|
|
BUILD_DEPENDS = shells/bash
|
|
LIB_DEPENDS = devel/sdl-image \
|
|
devel/sdl-mixer \
|
|
textproc/libxml
|
|
|
|
USE_GMAKE = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += --enable-games=no \
|
|
--enable-uninstall=no \
|
|
--disable-useradd \
|
|
--disable-initscripts \
|
|
--disable-sysinstall \
|
|
--disable-binreloc \
|
|
--enable-music
|
|
|
|
WRKDIST = ${WRKDIR}/${DISTNAME:S/.src//}
|
|
|
|
.include <bsd.port.mk>
|