diff --git a/dports/devel/glib2/Portfile b/dports/devel/glib2/Portfile
index fdc22fd..9993b49 100644
a
|
b
|
PortSystem 1.0 |
5 | 5 | name glib2 |
6 | 6 | conflicts glib2-devel |
7 | 7 | set my_name glib |
8 | | version 2.22.3 |
| 8 | version 2.22.4 |
9 | 9 | set branch [join [lrange [split ${version} .] 0 1] .] |
10 | 10 | categories devel |
11 | 11 | maintainers ryandesign |
… |
… |
master_sites \ |
30 | 30 | ftp://ftp.gtk.org/pub/${my_name}/${branch}/ |
31 | 31 | |
32 | 32 | checksums \ |
33 | | md5 25b043b208883194c57219e41a230a29 \ |
34 | | sha1 185d5b80adef96019daf7402cc6762cc4d37470d \ |
35 | | rmd160 53e1707547612e592bd2a3b5f7dfc7be1c09ed5c |
| 33 | md5 d91bcbe27556430ddecce65086355708 \ |
| 34 | sha1 be135a25c233a199f043161777d31ac30e42f435 \ |
| 35 | rmd160 66dc6ec0f1b1d422f50f6d55700bee8d526318cc |
36 | 36 | |
37 | 37 | # ${prefix}/include/glib-2.0/glib/gi18n.h requires -I${prefix}/include to find libintl.h |
38 | 38 | # See http://trac.macports.org/changeset/27148 |
… |
… |
test.target check |
87 | 87 | |
88 | 88 | post-destroot { |
89 | 89 | file delete ${destroot}${prefix}/lib/charset.alias |
| 90 | |
| 91 | set docdir ${prefix}/share/doc/${name} |
| 92 | xinstall -d ${destroot}${docdir} |
| 93 | xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog HACKING NEWS \ |
| 94 | README ${destroot}${docdir} |
90 | 95 | } |
91 | 96 | |
92 | 97 | livecheck.type regex |
diff --git a/dports/devel/glib2/files/config.h.ed b/dports/devel/glib2/files/config.h.ed
index ba8c491..38731d4 100644
a
|
b
|
|
37 | 37 | #define GLIB_SIZEOF_SYSTEM_THREAD 4 |
38 | 38 | #endif |
39 | 39 | . |
| 40 | / G_ATOMIC_I486 /c |
| 41 | #if !defined(__BIG_ENDIAN__) && !defined(__LP64__) |
| 42 | #define G_ATOMIC_I486 |
| 43 | #else |
| 44 | /* #undef G_ATOMIC_I486 */ |
| 45 | #endif |
| 46 | . |
40 | 47 | / G_ATOMIC_POWERPC /c |
41 | 48 | #ifdef __BIG_ENDIAN__ |
42 | 49 | #define G_ATOMIC_POWERPC 1 |
… |
… |
|
44 | 51 | /* #undef G_ATOMIC_POWERPC */ |
45 | 52 | #endif |
46 | 53 | . |
| 54 | / G_ATOMIC_X86_64 /c |
| 55 | #if !defined(__BIG_ENDIAN__) && defined(__LP64__) |
| 56 | #define G_ATOMIC_X86_64 |
| 57 | #else |
| 58 | /* #undef G_ATOMIC_X86_64 */ |
| 59 | #endif |
| 60 | . |
47 | 61 | / G_VA_COPY_AS_ARRAY /c |
48 | 62 | #ifdef __LP64__ |
49 | 63 | #define G_VA_COPY_AS_ARRAY 1 |