openbsd-ports/games/wesnoth/Makefile

67 lines
1.4 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.15 2007/10/18 09:13:21 sturm Exp $
BROKEN= some hidden BUILD_DEPENDS, nobody wants to fix
COMMENT= fantasy turn-based strategy game
DISTNAME= wesnoth-1.2.6
CATEGORIES= games x11
HOMEPAGE= http://www.wesnoth.org/
MAINTAINER= Vlad Glagolev <stelzy@gmail.com>
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=wesnoth/}
EXTRACT_SUFX= .tar.bz2
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= X11 Xext c freetype m stdc++ pthread usbhid z
USE_LIBTOOL= Yes
LIB_DEPENDS= SDL::devel/sdl \
SDL_image::devel/sdl-image \
SDL_net::devel/sdl-net \
SDL_mixer::devel/sdl-mixer \
fribidi::devel/fribidi
# png is only required for the tools, which we don't build yet.
RUN_DEPENDS= :desktop-file-utils-*:devel/desktop-file-utils
MODULES= devel/gettext
2006-11-13 05:08:12 -05:00
USE_X11= Yes
FLAVORS= lite tinygui
FLAVOR?=
.if ${FLAVOR:L:Mlite}
CONFIGURE_ARGS+=--enable-lite
.endif
.if ${FLAVOR:L:Mtinygui}
BUILD_DEPENDS+= ::graphics/pngmeta \
:ImageMagick-*:graphics/ImageMagick
CONFIGURE_ARGS+=--enable-tinygui
.endif
CONFIGURE_STYLE=gnu
2005-10-03 09:40:14 -04:00
CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \
LDFLAGS=-L${LOCALBASE}/lib
CONFIGURE_ARGS+=--enable-server \
--enable-campaign-server \
--enable-editor \
--with-gnome \
--with-kde \
2005-10-04 15:24:16 -04:00
--with-fifodir=/var/run
MAKE_FLAGS= LIBINTL="-L${LOCALBASE}/lib -lintl -liconv"
.include <bsd.port.mk>