Commits
David B. Evans authored da9bebc71f3
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup muniversal 1.0 |
5 5 | PortGroup compiler_blacklist_versions 1.0 |
6 6 | |
7 7 | name babl |
8 8 | conflicts babl-devel |
9 - | version 0.1.36 |
9 + | version 0.1.38 |
10 10 | license LGPL-3+ |
11 11 | set branch [join [lrange [split ${version} .] 0 1] .] |
12 12 | categories graphics |
13 13 | maintainers {devans @dbevans} openmaintainer |
14 14 | platforms darwin |
15 15 | homepage http://gegl.org/babl |
16 16 | description Dynamic, any to any, pixel format conversion library. |
17 17 | |
18 18 | long_description ${description} |
19 19 | |
20 20 | master_sites gimp:${name}/${branch}/ |
21 21 | |
22 22 | use_bzip2 yes |
23 23 | |
24 - | checksums rmd160 5d4eeaa2aba754c25cd989bf0fb382458f43cec2 \ |
25 - | sha256 97f0eb01eb6760cb20a4deca0096aceaa77c6d7a88a375c2b872ca1ef3ae29ef |
24 + | checksums rmd160 c3e228706c1b80d2d1cd93c93fc05ef115972a8a \ |
25 + | sha256 a0f9284fcade0377d5227f73f3bf0c4fb6f1aeee2af3a7d335a90081bf5fee86 |
26 26 | |
27 27 | # In 0.1.12, i386 fails to compile with SL's gcc-4.2: |
28 28 | # babl-cpuaccel.c:169: error: ‘asm’ operand has impossible constraints |
29 29 | compiler.blacklist-append *gcc* |
30 30 | |
31 31 | # additionally blacklist compilers that don't support C11 (typedef redefinition in C) |
32 32 | # babl-icc.c:1031:25: error: redefinition of typedef 'UTF8' is invalid in C |
33 33 | compiler.blacklist-append {clang < 300} |
34 34 | |
35 35 | configure.args --disable-silent-rules \ |