Diff sdcc-4.0.0 with a sdcc-4.1.0
/usr/portage/dev-embedded/sdcc/sdcc-4.1.0.ebuild 2023-10-09 14:52:29.352368347 +0300 | ||
---|---|---|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 | 4 |
EAPI=7 |
5 | ||
5 | 6 |
inherit autotools toolchain-funcs |
6 | 7 | |
7 | 8 |
if [[ ${PV} == "9999" ]] ; then |
... | ... | |
12 | 13 |
mirror://sourceforge/sdcc/${PN}-src-${PV}.tar.bz2 |
13 | 14 |
doc? ( mirror://sourceforge/sdcc/${PN}-doc-${PV}.tar.bz2 ) |
14 | 15 |
" |
16 |
S="${WORKDIR}/sdcc" |
|
17 | ||
15 | 18 |
KEYWORDS="~amd64 ~x86" |
16 | 19 |
fi |
17 | 20 | |
... | ... | |
29 | 32 |
avr |
30 | 33 |
mcs51 |
31 | 34 |
z80 z180 |
32 |
r2k r3ka |
|
35 |
r2k r2ka r3ka |
|
33 | 36 |
gbz80 |
34 | 37 |
tlcs90 |
35 | 38 |
ez80-z80 |
39 |
z80n |
|
36 | 40 |
ds390 ds400 |
37 | 41 |
pic14 pic16 |
38 | 42 |
hc08 |
... | ... | |
60 | 64 |
dev-libs/boost:= |
61 | 65 |
sys-libs/ncurses:= |
62 | 66 |
sys-libs/readline:0= |
63 |
>=dev-embedded/gputils-0.13.7 |
|
67 |
pic14? ( >=dev-embedded/gputils-0.13.7 ) |
|
68 |
pic16? ( >=dev-embedded/gputils-0.13.7 ) |
|
64 | 69 |
boehm-gc? ( dev-libs/boehm-gc:= ) |
65 | 70 |
!dev-embedded/sdcc-svn |
66 | 71 |
" |
... | ... | |
113 | 118 |
$(use_enable z80 z80-port) \ |
114 | 119 |
$(use_enable z180 z180-port) \ |
115 | 120 |
$(use_enable r2k r2k-port) \ |
121 |
$(use_enable r2ka r2ka-port) \ |
|
116 | 122 |
$(use_enable r3ka r3ka-port) \ |
117 | 123 |
$(use_enable gbz80 gbz80-port) \ |
118 | 124 |
$(use_enable tlcs90 tlcs90-port) \ |
119 | 125 |
$(use_enable ez80-z80 ez80_z80-port) \ |
126 |
$(use_enable z80n z80n-port) \ |
|
120 | 127 |
$(use_enable ds390 ds390-port) \ |
121 | 128 |
$(use_enable ds400 ds400-port) \ |
122 | 129 |
$(use_enable pic14 pic14-port) \ |
... | ... | |
146 | 153 |
# a bunch of archives (*.a) are built & installed by gputils |
147 | 154 |
# for PIC processors, but they do not work with standard `ar` |
148 | 155 |
# & `scanelf` utils and they're not for the host. |
149 |
dostrip /usr/bin |
|
156 |
dostrip -x /usr/bin |
|
150 | 157 |
} |