aboutsummaryrefslogtreecommitdiffstats
path: root/lang/huc/Makefile
blob: 8bfcdfe4e263aed54cf98af28c46e5b7b1419496 (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
# Ports collection makefile for:    huc
# Date created:         1 December 2003
# Whom:             Frederic Cambus
#
# $FreeBSD$
#

PORTNAME=   huc
PORTVERSION=    3.21
DISTVERSIONSUFFIX=  -src
CATEGORIES= lang emulators
MASTER_SITES=   http://www.zeograd.com/download/

MAINTAINER= ports@FreeBSD.org
COMMENT=    PC Engine C compiler which can create ROMs (hucard) or CD images

OPTIONS_DEFINE= DOCS

NO_WRKSUBDIR=   yes

USE_ZIP=    yes
USE_GMAKE=  yes
MAKE_ARGS=  CC="${CC}" LD="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
MAKE_JOBS_SAFE= yes

.include <bsd.port.options.mk>

do-install:
.for file in huc isolink nesasm pceas pcxtool
    ${INSTALL_PROGRAM} ${WRKSRC}/bin/${file} ${PREFIX}/bin
.endfor
    @${MKDIR} ${PREFIX}/include/${PORTNAME}
    @(cd ${WRKSRC}/include \
        && ${COPYTREE_SHARE} . ${PREFIX}/include/${PORTNAME})
.if ${PORT_OPTIONS:MDOCS}
    @${MKDIR} ${DOCSDIR}
    @(cd ${WRKSRC}/doc \
        && ${COPYTREE_SHARE} . ${DOCSDIR})
.endif
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>