blob: cd23fede6f40f39801eb13a5b1fc66e767d059c2 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# New ports collection makefile for: sdcc
# Date created: 3 May 2004
# Whom: Tijl Coosemans <tijl@ulyssis.org>
#
# $FreeBSD$
#
PORTNAME= sdcc
PORTVERSION= 2.5.0
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= sdcc
MAINTAINER= tijl@ulyssis.org
COMMENT= Small Device C Compiler
WRKSRC= ${WRKDIR}/sdcc
GNU_CONFIGURE= yes
USE_GMAKE= yes
OPTIONS= MCS51 "Intel mcs51 port" on \
Z80 "Z80 port" on \
AVR "AVR port" on \
DS390 "DS390/DS400 port" on \
PIC "PIC port" on \
PIC16 "PIC16 port" on \
XA51 "XA51 port" on \
HC08 "HC08 port" on \
UCSIM "The ucSim simulator" on \
PACKIHX "A tool to pack (compress) Intel hex files" on
.include <bsd.port.pre.mk>
.if ${ARCH} == "alpha"
USE_GCC= 3.2+
.endif
.if defined(WITHOUT_MCS51)
CONFIGURE_ARGS+= --disable-mcs51-port
PLIST_SUB+= MCS51="@comment "
.else
PLIST_SUB+= MCS51=""
.endif
.if defined(WITHOUT_Z80)
CONFIGURE_ARGS+= --disable-gbz80-port --disable-z80-port
PLIST_SUB+= Z80="@comment "
.else
PLIST_SUB+= Z80=""
.endif
.if defined(WITHOUT_AVR)
CONFIGURE_ARGS+= --disable-avr-port
.endif
.if defined(WITHOUT_DS390)
CONFIGURE_ARGS+= --disable-ds390-port --disable-ds400-port
PLIST_SUB+= DS390="@comment "
.else
PLIST_SUB+= DS390=""
.endif
.if defined(WITHOUT_PIC)
CONFIGURE_ARGS+= --disable-pic-port
.endif
.if defined(WITHOUT_PIC16)
CONFIGURE_ARGS+= --disable-pic16-port
PLIST_SUB+= PIC16="@comment "
.else
BUILD_DEPENDS+= gpasm:${PORTSDIR}/devel/gputils
USE_AUTOTOOLS= autoconf:259 libtool:15
PLIST_SUB+= PIC16=""
.endif
.if defined(WITHOUT_XA51)
CONFIGURE_ARGS+= --disable-xa51-port
.endif
.if defined(WITHOUT_HC08)
CONFIGURE_ARGS+= --disable-hc08-port
PLIST_SUB+= HC08="@comment "
.else
PLIST_SUB+= HC08=""
.endif
.if defined(WITHOUT_UCSIM)
CONFIGURE_ARGS+= --disable-ucsim
PLIST_SUB+= UCSIM="@comment "
.else
LIBTOOLFILES= sim/ucsim/aclocal.m4
PLIST_SUB+= UCSIM=""
.endif
.if defined(WITHOUT_PACKIHX)
CONFIGURE_ARGS+= --disable-packihx
PLIST_SUB+= PACKIHX="@comment "
.else
PLIST_SUB+= PACKIHX=""
.endif
.include <bsd.port.post.mk>
|