|
Revision 50984, 1.2 KB
(checked in by and.damore@…, 7 weeks ago)
|
|
Maintainer email change, second batch, mail without @macports.org domain are put in domain:user form.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | name binutils |
|---|
| 5 | version 2.19 |
|---|
| 6 | |
|---|
| 7 | description FSF Binutils for native development. |
|---|
| 8 | long_description Free Software Foundation development toolchain ("binutils") \ |
|---|
| 9 | for native development. Tools are prefixed with g to avoid \ |
|---|
| 10 | conflicts with original tools. |
|---|
| 11 | platforms darwin |
|---|
| 12 | categories devel |
|---|
| 13 | maintainers kallisys.net:pguyot |
|---|
| 14 | homepage http://www.gnu.org/software/binutils/binutils.html |
|---|
| 15 | master_sites gnu:binutils |
|---|
| 16 | use_bzip2 yes |
|---|
| 17 | checksums md5 17a52219dee5a76c1a9d9b0bfd337d66 \ |
|---|
| 18 | sha1 a150b97ec47996bf8f01d6bc14d41587faa4bbff \ |
|---|
| 19 | rmd160 1d5e234e22dbd9cd126ccfd685bf5700dc36ad1a |
|---|
| 20 | |
|---|
| 21 | depends_lib-append port:zlib port:libiconv |
|---|
| 22 | |
|---|
| 23 | configure.args --infodir='${prefix}/share/info' \ |
|---|
| 24 | --mandir='${prefix}/share/man' \ |
|---|
| 25 | --program-prefix=g |
|---|
| 26 | |
|---|
| 27 | # The Makefile runs configure again in subdirectories. |
|---|
| 28 | # It correcty passes along most configure variables (CFLAGS, LDFLAGS, ...), |
|---|
| 29 | # but seems to neglect CPPFLAGS. |
|---|
| 30 | build.env-append CPPFLAGS='-I${prefix}/include' |
|---|
| 31 | |
|---|
| 32 | # Binutils violates the mtree layout by creating ${prefix}/<arch>/ |
|---|
| 33 | destroot.violate_mtree yes |
|---|
| 34 | |
|---|
| 35 | # We don't want the etc module. |
|---|
| 36 | post-extract { |
|---|
| 37 | system "rm -rf ${worksrcpath}/etc" |
|---|
| 38 | } |
|---|