aboutsummaryrefslogtreecommitdiff
path: root/emulators/stella/Makefile
blob: b83dcbef5a2e9018bd174ac586a77062599a81f6 (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
# New ports collection makefile for:   	stella-1.1
# Version required:			1.1
# Date created:				March 4, 1999
# Whom:					Jacques Vidrine <nectar@FreeBSD.ORG>
#
# $FreeBSD$
#

DISTNAME=	stella-1.1-src
PKGNAME=	stella-1.1
CATEGORIES=	emulators
MASTER_SITES=	ftp://ftp.eos.ncsu.edu/pub/bsvc/stella/1.1/ \
		http://www.nectar.com/distfiles/

MAINTAINER=	nectar@FreeBSD.ORG

USE_XLIB=	yes

PORTTOP=	${WRKDIR}/${PKGNAME}
WRKSRC=		${PORTTOP}/src/build
MAKEFILE=	makefile
ALL_TARGET=	freebsd-x

USE_XLIB=	yes

ROMSDIR=	${PREFIX}/share/stella/roms
ROMS=		ELK.BIN OKIEDOKE.BIN OYSTR29.BIN TEST.BIN TPS.BIN
DOCSDIR=	${PREFIX}/share/doc/stella
DOCS=		docs/Stella.pdf games/docs/elk.doc games/docs/okiedoke.doc \
		games/docs/oystron.doc games/docs/tps.doc

post-build:
	@(cd ${PORTTOP}/src/ui/sound && \
		${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
		${MAKE_ARGS} oss)

do-install:
.for exe in src/build/xstella src/ui/sound/stella-sound
	${INSTALL_PROGRAM} ${PORTTOP}/${exe} ${PREFIX}/bin/
.endfor
	${MKDIR} ${ROMSDIR}
.for rom in ${ROMS}
	${INSTALL_DATA} ${PORTTOP}/games/ROMS/${rom} ${ROMSDIR}/
.endfor
	${INSTALL_DATA} ${PORTTOP}/src/emucore/stella.pro \
		${PREFIX}/share/stella/
.if !defined(NOPORTDOCS)
	${MKDIR} ${DOCSDIR}
.for doc in ${DOCS}
	${INSTALL_DATA} ${PORTTOP}/${doc} ${DOCSDIR}/
.endfor
.endif

.include <bsd.port.mk>