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
|
# Ports collection makefile for: cc65
# Date created: 8 May 2000
# Whom: Tim Vanderhoek <hoek@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= cc65
PORTVERSION= 2.11.0
CATEGORIES= devel
MASTER_SITES= ftp://ftp.musoftware.de/pub/uz/cc65/ \
http://www.funet.fi/pub/cbm/programming/cc65/ \
http://www.acc.umu.se/~arvid/cc65_mirror/ \
http://bj.spline.de/cc65/
DISTNAME= ${PORTNAME}-sources-${PORTVERSION}
MAINTAINER= stas@FreeBSD.org
COMMENT= Cross-compiler for 6502-based systems, includes 65816 assembler
USE_SUBMAKE= yes
USE_BZIP2= yes
USE_GMAKE= yes
WRKSRC= ${WRKDIR}/cc65-${PORTVERSION}
MAKEFILE= ${WRKSRC}/make/gcc.mak
SUB_FILES= pkg-message
post-patch:
#
# CFLAGS safety
#
@(${FIND} ${WRKSRC}/ -name gcc.mak -type f|${XARGS} ${REINPLACE_CMD} -E\
-e "s,=[[:space:]]*-g -O2 -Wall -W(.*),+=\1,"\
-e "s,=[[:space:]]*-g -O2 -Wall(.*),+=\1,"\
-e "s,=[[:space:]]*-O2 -g -Wall -W(.*),+=\1,"\
-e "s,CC[[:space:]]*=.*,#&,")
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -E -e "s,(install:.*)install-docs(.*)$,\1\2," \
${WRKSRC}/make/gcc.mak
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${EXAMPLESDIR}
@(cd ${WRKSRC}/samples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|