aboutsummaryrefslogtreecommitdiffstats
path: root/devel/guichan/Makefile
blob: 0e6a2f6d52ce4ec6c3ad41fbbfb2c15604f81baf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Created by: Tobias Gion <freebsd@gionet.de>
# $FreeBSD$

PORTNAME=   guichan
PORTVERSION=    0.8.2
PORTREVISION=   7
CATEGORIES= devel games
MASTER_SITES=   ${MASTER_SITE_GOOGLE_CODE}

MAINTAINER= mva@FreeBSD.org
COMMENT=    Small, efficient C++ GUI library designed for games

USE_AUTOTOOLS=  libtool
USE_GMAKE=  yes
GNU_CONFIGURE=  yes
USE_LDCONFIG=   yes
USES=   pathfix

CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib

OPTIONS_DEFINE=     SDL ALLEGRO OPENGL
OPTIONS_DEFAULT=    SDL OPENGL
ALLEGRO_DESC=   Allegro support

NO_STAGE=   yes
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MSDL}
USE_SDL+=   sdl image
CONFIGURE_ARGS+=--enable-sdl --enable-sdlimage
PLIST_SUB+= SDL=""
.else
CONFIGURE_ARGS+=--disable-sdl --disable-sdlimage
PLIST_SUB+= SDL="@comment "
.endif

.if ${PORT_OPTIONS:MALLEGRO}
LIB_DEPENDS+=   alleg.42:${PORTSDIR}/devel/allegro
CONFIGURE_ARGS+=--enable-allegro
PLIST_SUB+= ALLEGRO=""
.else
CONFIGURE_ARGS+=--disable-allegro
PLIST_SUB+= ALLEGRO="@comment "
.endif

.if ${PORT_OPTIONS:MOPENGL}
USE_GL=     yes
CONFIGURE_ARGS+=--enable-opengl
PLIST_SUB+= GL=""
.else
CONFIGURE_ARGS+=--disable-opengl
PLIST_SUB+= GL="@comment "
.endif

.include <bsd.port.mk>