Ticket #53750: Portfile-rrdtool.diff
File Portfile-rrdtool.diff, 2.6 KB (added by gaming-hacker (G Alexander), 8 years ago) |
---|
-
Portfile.
old new 1 1 PortSystem 1.0 2 2 3 3 name ftidy 4 version 7. 24 version 7.3 5 5 revision 1 6 6 categories lang 7 7 platforms darwin 8 8 license Noncommercial 9 9 maintainers nomaintainer 10 homepage http://www. unb.ca/fredericton/science/chem/ajit/tidy/10 homepage http://www.pdas.com/tidy.html 11 11 master_sites ${homepage} 12 12 distname tidy72sc 13 13 use_zip yes 14 14 extract.mkdir yes 15 build.args tidy.for -o ftidy15 build.args -std=legacy -O3 -pipe -arch x86_64 -m64 -fopenmp -mfpmath=sse getarg.for tidy.for -o ftidy 16 16 use_configure no 17 17 universal_variant no 18 18 description Fortran Tidy … … 24 24 tasks on FORTRAN-77 source programs. 25 25 26 26 checksums \ 27 md5 f940dfa793408368f92af6aab535619b\28 sha1 200e4531f172355cde49c455e2f7e9df8f1f840427 md5 29e08a83081ae667ae58d1122d64e382 \ 28 sha1 07570136e4c1bd4ca494b01a2bd2cae545576ede 29 29 30 30 patchfiles tidy.for.patch 31 31 … … 33 33 default_variants +gcc47 34 34 } 35 35 36 variant gcc4 3 conflicts gcc44 gcc45 gcc46 gcc47 description {Build using gcc43} {37 configure.compiler macports-gcc-4 .336 variant gcc4 conflicts gcc5 gcc6 gcc7 description {Build using gcc4} { 37 configure.compiler macports-gcc-4 38 38 } 39 40 variant gcc44 conflicts gcc43 gcc45 gcc46 gcc47 description {Build using gcc44} { 41 configure.compiler macports-gcc-4.4 42 } 43 44 variant gcc45 conflicts gcc43 gcc44 gcc46 gcc47 description {Build using gcc45} { 45 configure.compiler macports-gcc-4.5 39 variant gcc5 conflicts gcc4 gcc6 gcc7 description {Build using gcc5} { 40 configure.compiler macports-gcc-5 46 41 } 47 48 variant gcc46 conflicts gcc43 gcc44 gcc45 gcc47 description {Build using gcc46} { 49 configure.compiler macports-gcc-4.6 42 variant gcc6 conflicts gcc4 gcc5 gcc7 description {Build using gcc6} { 43 configure.compiler macports-gcc-6 50 44 } 51 52 variant gcc47 conflicts gcc43 gcc44 gcc45 gcc46 description {Build using gcc47} { 53 configure.compiler macports-gcc-4.7 45 variant gcc7 conflicts gcc4 gcc5 gcc6 description {Build using gcc7} { 46 configure.compiler macports-gcc-7 54 47 } 55 48 56 49 build.pre_args ${configure.fflags} ${configure.f77_archflags} … … 59 52 } 60 53 61 54 destroot { 62 xinstall -m 755 -W ${worksrcpath} ftidy ${destroot}${prefix}/bin55 xinstall -m 0755 -W ${worksrcpath} ftidy ${destroot}${prefix}/bin 63 56 } 64