aboutsummaryrefslogtreecommitdiffstats
path: root/emulators/generator/Makefile
blob: ca431f180fa394abea5dfdf20cf11ab863ac9dab (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# New ports collection makefile for:   generator
# Date created:        16 April 2001
# Whom:                Yukihiro Nakai <nakai@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   generator
PORTVERSION=    0.35
PORTREVISION=   8
CATEGORIES= emulators
MASTER_SITES=   http://www.squish.net/generator/files/

MAINTAINER= alepulver@FreeBSD.org
COMMENT=    SEGA Genesis emulator

LIB_DEPENDS=    jpeg.9:${PORTSDIR}/graphics/jpeg

USE_GNOME=  gtk12
USE_SDL=    sdl
USE_GMAKE=  yes

GNU_CONFIGURE=  yes
CONFIGURE_TARGET=   --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include" \
        LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS+=--with-gtk

MAKE_ARGS=  ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
        AUTOHEADER="${TRUE}"

OPTIONS=    OPTIMIZED_CFLAGS "Enable compilation optimizations" on \
        RAZE "Use RAZE z80 emulation (only for i386)" on \
        SDL_AUDIO "Use SDL for audio" off

PLIST_FILES=    bin/${PORTNAME}-gtk

.include <bsd.port.pre.mk>

.if ${ARCH} != "amd64" && ${ARCH} != "i386"
post-patch:
# These architectures do not support "-minline-all-stringops"
    @${REINPLACE_CMD} -e 's|-minline-all-stringops||g' \
        ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
.   if ${ARCH} == "alpha"
# "-ffast-math" does not work on alpha
    @${REINPLACE_CMD} -e 's|-ffast-math||g' \
        ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
.   endif
.endif

# Generator does not automatically determine the GCC version.
.if !defined(WITHOUT_OPTIMIZED_CFLAGS)
.   if ${OSVERSION} < 500035
CONFIGURE_ARGS+=--with-gcc=2
.   elif ${OSVERSION} >= 500035
CONFIGURE_ARGS+=--with-gcc=3
.   endif
.else
CONFIGURE_ARGS+=--without-gcc
.endif

.if !defined(WITHOUT_RAZE) && ${ARCH} == "i386"
BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm
CONFIGURE_ARGS+=--with-raze
.else
CONFIGURE_ARGS+=--with-cmz80
.endif

.if defined(WITH_SDL_AUDIO)
CONFIGURE_ARGS+=--with-sdl-audio
.endif

post-install:
    @${ECHO_CMD}
    @${CAT} ${PKGMESSAGE}
    @${ECHO_CMD}

.include <bsd.port.post.mk>