blob: 2f62ac9daa05357929efc6663a92e1da809c129a (
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: Hu-Go!
# Date created: 18 May 2006
# Whom: Li-Lun Wang <llwang@infor.org>
#
# $FreeBSD$
#
PORTNAME= hugo
PORTVERSION= 2.12
PORTREVISION= 8
CATEGORIES= emulators
MASTER_SITES= http://www.zeograd.com/download/
MAINTAINER= llwang@infor.org
COMMENT= A PC Engine (TurboGrafx 16) emulator
BUILD_DEPENDS= ${LOCALBASE}/include/argp.h:${PORTSDIR}/devel/argp-standalone
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_SDL= sdl
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ENV+= SDL_CONFIG="${SDL_CONFIG}" LDFLAGS="${LDFLAGS}"
.if !defined(WITHOUT_NETPLAY)
USE_SDL+= net
.else
CONFIGURE_ARGS+= --enable-netplay=no
.endif
.if defined(WITHOUT_GUI)
CONFIGURE_ARGS+= --enable-gui=no --disable-gtktest
.else
USE_GNOME= gtk20
.endif
.if defined(WITH_OGG_SUPPORT)
LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis
WITH_SDL_MIXER= yes
CONFIGURE_ARGS+= --with-ogg-support
.endif
.if defined(WITH_SDL_MIXER)
USE_SDL+= mixer
CONFIGURE_ARGS+= --with-sdl-mixer
.endif
MAKE_ENV+= DOCSDIR="${DOCSDIR}"
.if defined(NOPORTDOCS)
MAKE_ENV+= PORTDOCS=false
.else
MAKE_ENV+= PORTDOCS=true
.endif
post-patch:
@${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}|' ${WRKSRC}/configure
.include <bsd.port.mk>
|