freebsd-ports/games/freedroidrpg/Makefile

50 lines
1.2 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: freedroidrpg
# Date created: 18 Jul 2005
# Whom: Travis Poppe <tlp@liquidx.org>
#
# $FreeBSD$
#
PORTNAME= freedroidrpg
2011-03-06 18:41:07 +01:00
PORTVERSION= 0.14.1
CATEGORIES= games
2011-03-06 18:41:07 +01:00
MASTER_SITES= SF/freedroid/freedroidRPG/freedroidRPG-${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\\1/}/
2009-02-28 04:29:09 +01:00
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Modification of the classical Freedroid engine into an RPG
2009-04-10 01:53:51 +02:00
USE_SDL= sdl image mixer
GNU_CONFIGURE= yes
2009-04-10 01:53:51 +02:00
MAKE_JOBS_SAFE= yes
OPTIONS= BACKTRACE "Use backtrace() to generate nice bug reports" on \
2009-04-10 01:53:51 +02:00
OPENGL "Enable the OpenGL support (highly recommended!)" on \
VORBIS "Enable vorbis support (music)" on
2010-05-26 05:17:10 +02:00
.include <bsd.port.options.mk>
.if !defined(WITHOUT_BACKTRACE)
LIB_DEPENDS+= execinfo.1:${PORTSDIR}/devel/libexecinfo
CONFIGURE_ARGS+=--enable-backtrace
STRIP= #
.else
CONFIGURE_ARGS+=--disable-backtrace
.endif
.if !defined(WITHOUT_OPENGL)
USE_GL= yes
CONFIGURE_ARGS+=--enable-opengl
.else
CONFIGURE_ARGS+=--disable-opengl
.endif
2009-04-10 01:53:51 +02:00
.if !defined(WITHOUT_VORBIS)
LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis \
ogg.7:${PORTSDIR}/audio/libogg
2009-04-10 01:53:51 +02:00
CONFIGURE_ARGS+=--enable-vorbis
.else
CONFIGURE_ARGS+=--disable-vorbis
.endif
2010-05-26 05:17:10 +02:00
.include <bsd.port.mk>