1 | # $Id: Portfile,v 1.4 2006/02/17 16:20:18 yves Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name odcctools |
---|
5 | version 20060413 |
---|
6 | categories devel |
---|
7 | maintainers yves@opendarwin.org |
---|
8 | description Darwin cctools build system. |
---|
9 | long_description The odcctools project is geared towards improving the \ |
---|
10 | Darwin cctools build system and code base to support \ |
---|
11 | Darwin development. Darwin cctools has several \ |
---|
12 | components, including the assembler odas(1), the \ |
---|
13 | static linker odld(1), various tools for manipulating \ |
---|
14 | and analyzing Mach-O and fat files, and support \ |
---|
15 | libraries. |
---|
16 | homepage http://www.opendarwin.org/projects/odcctools/ |
---|
17 | platforms darwin |
---|
18 | master_sites http://www.opendarwin.org/downloads/ |
---|
19 | checksums sha1 74dfba3273ca83d0ad61b596b4c4e61a9d2bceed |
---|
20 | use_bzip2 yes |
---|
21 | configure.args --program-prefix=od --mandir=${prefix}/share/man |
---|
22 | |
---|
23 | build.target default |
---|
24 | |
---|
25 | post-destroot { |
---|
26 | cd ${destroot}${prefix}/share/man/man1 |
---|
27 | foreach manpage [glob *.1] { |
---|
28 | file rename ${manpage} od${manpage} |
---|
29 | } |
---|
30 | } |
---|