blob: e3e6d9b25a445331b7ddffec3bc3597db1528ab3 (
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
57
58
59
|
# New ports collection makefile for: guichan
# Date created: 2005-10-03
# Whom: Tobias Gion <freebsd@gionet.de>
#
# $FreeBSD$
#
PORTNAME= guichan
PORTVERSION= 0.7.1
PORTREVISION= 1
CATEGORIES= devel games
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= mva@sysfault.org
COMMENT= A small, efficient C++ GUI library designed for games
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_GCC= 3.2+
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
OPTIONS= SDL "Enable SDL support" On \
ALLEGRO "Enable Allegro support" Off \
GL "Enable OpenGL support" On
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_SDL)
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 defined(WITH_ALLEGRO)
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 !defined(WITHOUT_GL)
USE_GL= yes
CONFIGURE_ARGS+=--enable-opengl
PLIST_SUB+= GL=""
.else
CONFIGURE_ARGS+=--disable-opengl
PLIST_SUB+= GL="@comment "
.endif
.include <bsd.port.post.mk>
|