aboutsummaryrefslogtreecommitdiffstats
path: root/emulators/stella/Makefile
blob: ee833e529e1043228cab5d2c9e10c27049846ba4 (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
# Created by: Jacques Vidrine <nectar@FreeBSD.org>
# $FreeBSD$

PORTNAME=   stella
PORTVERSION=    4.7.3
PORTREVISION=   2
CATEGORIES= emulators
MASTER_SITES=   https://github.com/stella-emu/stella/releases/download/release-${PORTVERSION}/
DISTNAME=   ${PORTNAME}-${PORTVERSION}-src

MAINTAINER= acm@FreeBSD.org
COMMENT=    Multi-platform Atari 2600 VCS emulator

LICENSE=    GPLv2+
LICENSE_FILE=   ${WRKSRC}/License.txt

LIB_DEPENDS=    libpng.so:graphics/png

BROKEN_aarch64=     fails to compile: Checking for compiler version... 5.0.0, bad; Please ensure you are using GCC 4.7 / Clang 3.4 or above
BROKEN_armv6=       fails to compile: Checking for compiler version... 5.0.0, bad; Please ensure you are using GCC 4.7 / Clang 3.4 or above
BROKEN_armv7=       fails to compile: Checking for compiler version... 5.0.0, bad; Please ensure you are using GCC 4.7 / Clang 3.4 or above
BROKEN_powerpc64=   fails to compile: CartDebug.cxx: 'snprintf' is not a member of 'std'

CONFLICTS_INSTALL=  rubygem-stella

WRKSRC=     ${WRKDIR}/${PORTNAME}-${PORTVERSION}

USE_SDL=    sdl2
USES=       compiler:c++11-lib gmake tar:xz
HAS_CONFIGURE=  yes

CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib

OPTIONS_DEFINE= DOCS

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/stella ${STAGEDIR}${PREFIX}/bin
    @${MKDIR} ${STAGEDIR}${DATADIR}
    ${INSTALL_DATA} ${WRKSRC}/src/emucore/stella.pro ${STAGEDIR}${DATADIR}

do-install-DOCS-on:
    @${MKDIR} ${STAGEDIR}${DOCSDIR}
    @cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}

.include <bsd.port.mk>