Ticket #40974: Portfile

File Portfile, 1.9 KB (added by stoffer@…, 11 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id: Portfile 108726 2013-07-31 19:05:13Z snc@macports.org $
3
4PortSystem 1.0
5
6name                sdcc
7version             3.3.0
8categories          lang
9platforms           darwin
10license             GPL-3
11maintainers         snc openmaintainer
12description         ANSI C compiler targeting Intel 8051, Maxim 80DS390, Zilog Z80
13long_description    SDCC is a retargettable, optimizing ANSI - C \
14                    compiler suite that targets the Intel MCS51 based \
15                    microprocessors (8031, 8032, 8051, 8052, etc.), Maxim \
16                    (formerly Dallas) DS80C390 variants, Freescale (formerly \
17                    Motorola) HC08 based (hc08, s08) and Zilog Z80 based MCUs \
18                    (z80, z180, gbz80, Rabbit 2000/3000, Rabbit 3000A). Work is \
19                    in progress on supporting the Microchip PIC16 and PIC18 \
20                    targets. It can be retargeted for other microprocessors.
21
22homepage            http://sdcc.sourceforge.net/
23master_sites        sourceforge
24
25checksums           rmd160  464b5aae6242e0da0181e9050b52949ae176de00 \
26                    sha256  873f61f29e829e65ba8afcf992cced8f91b0c4bd52b0be7d5e9b0cbcb58644de
27
28depends_build       port:gputils
29depends_lib         port:readline port:boost
30depends_run         port:gputils
31
32use_bzip2           yes
33distfiles           ${name}-src-${version}${extract.suffix}
34patchfiles          patch-support-sdbinutils-bfd-opncls.c.diff \
35                    patch-support-sdbinutils-bfd-objcopy.c.diff \
36                                        patch-no_sbrk_1.diff \
37                                        patch-no_sbrk_2.diff
38
39worksrcdir          ${name}-${version}
40
41build.type          gnu
42
43destroot.destdir    prefix=${destroot}${prefix} \
44                    docdir=${destroot}${prefix}/share/doc/${name}
45
46platform darwin 8 {
47    depends_build-append    port:gmake
48    build.cmd               ${prefix}/bin/gmake
49}