blob: a351d83ee8d9f9f40bf5a5fb6ec48bdbf1ad469a (
plain)
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
|
# New ports collection makefile for: gngb
# Date created: 16 April 2001
# Whom: Yukihiro Nakai <nakai@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= gngb
PORTVERSION= 20020111
CATEGORIES= emulators
MASTER_SITES= http://membres.lycos.fr/frogus/gngb/download/
DISTNAME= ${PORTNAME}-${PORTVERSION}
MAINTAINER= nakai@FreeBSD.org
COMMENT= GameBoy(tm) emulator
LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_XLIB= yes
USE_X_PREFIX= yes
CONFIGURE_ENV= CFLAGS="-I${X11BASE}/include" \
LDFLAGS="-L${X11BASE}/lib"
PORT_CFLAGS= -DSDL_YUV -I${LOCALBASE}/include -I${LOCALBASE}/include/SDL11 -I${X11BASE}/include
pre-everything::
.if !defined(WITH_OPTIMIZED_CFLAGS)
@${ECHO_MSG} "You can enable additional compilation optimizations"
@${ECHO_MSG} "by defining WITH_OPTIMIZED_CFLAGS"
.endif
.if defined(WITH_GL)
CONFIGURE_ARGS= --with-gl
PORT_CFLAGS+= -DSDL_GL
.else
@${ECHO_MSG}
@${ECHO_MSG} "You can enable OpenGL support by defining WITH_GL"
@${ECHO_MSG}
.endif
pre-configure:
@${PERL} -pi -e 's|sdl-config|sdl11-config|g' ${WRKSRC}/configure
@${PERL} -pi -e 's|-lSDL|-lSDL-1.1|g' ${WRKSRC}/configure
@${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
post-configure:
.if !defined(WITH_OPTIMIZED_CFLAGS)
@${PERL} -pi -e 's|(CFLAGS =).*|\1 ${PORT_CFLAGS} ${CFLAGS}|' ${WRKSRC}/src/Makefile
.endif
.include <bsd.port.mk>
|