6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
77 lines
1.8 KiB
Makefile
77 lines
1.8 KiB
Makefile
# New ports collection makefile for: generator
|
|
# Date created: 16 April 2001
|
|
# Whom: Yukihiro Nakai <nakai@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= generator
|
|
PORTVERSION= 0.35
|
|
PORTREVISION= 11
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://www.squish.net/generator/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= SEGA Genesis emulator
|
|
|
|
LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg
|
|
|
|
USE_GNOME= gtk12
|
|
USE_SDL= sdl
|
|
USE_GMAKE= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS+=--with-gtk
|
|
|
|
MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
|
|
AUTOHEADER="${TRUE}"
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
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 !defined(WITHOUT_OPTIMIZED_CFLAGS)
|
|
CONFIGURE_ARGS+=--with-gcc=3
|
|
.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-patch:
|
|
.if ${ARCH} != "amd64" && ${ARCH} != "i386"
|
|
# 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
|
|
@${REINPLACE_CMD} -e '/%define %1 @UNDERSCORE@%1 /d' \
|
|
${WRKSRC}/raze/raze.asm.in
|
|
|
|
post-install:
|
|
@${ECHO_CMD}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO_CMD}
|
|
|
|
.include <bsd.port.post.mk>
|