Ticket #19871: Portfile-gdb-7.1.50.20100223

File Portfile-gdb-7.1.50.20100223, 1.8 KB (added by CaptSolo, 14 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 51884 2009-06-05 23:45:08Z dweber@macports.org $
3
4PortSystem      1.0
5
6name            gdb
7version         7.1.50.20100223
8categories      devel
9maintainers     dweber openmaintainer
10description     GDB: The GNU Project Debugger
11
12long_description \
13GDB, the GNU Project debugger, allows you to see what is going on 'inside' \
14another program while it executes -- or what another program was doing at the \
15moment it crashed.  GDB can do four main kinds of things (plus other things \
16in support of these) to help you catch bugs in the act: \
17    a) start your program, specifying anything that might affect its behavior, \
18    b) make your program stop on specified conditions, \
19    c) examine what has happened, when your program has stopped, \
20    d) change things in your program, so you can experiment with correcting \
21       the effects of one bug and go on to learn about another. \
22The program being debugged can be written in Ada, C, C++, Objective-C, \
23Pascal (and many other languages). Those programs might be executing on \
24the same machine as GDB (native) or on another machine (remote). GDB \
25can run on most popular UNIX and Microsoft Windows variants.
26
27homepage        http://www.gnu.org/software/gdb/
28platforms       darwin
29
30master_sites    gnu \
31                ftp://sourceware.org//pub/gdb/snapshots/current/
32
33use_bzip2       yes
34
35checksums       md5     4f8c000b84281091e2680f1cd599b5cd
36
37depends_build   \
38                port:expat
39                #port:gcc42
40
41configure.args-append \
42    --infodir=${prefix}/share/info \
43    --mandir=${prefix}/share/man \
44    --with-docdir=${prefix}/share/doc \
45    --enable-objc-gc \
46    --disable-nls
47