diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2016-09-24 19:06:57 +0800 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2016-09-24 19:06:57 +0800 |
commit | 48f459103563a7760a2eef7456e47c1fcc766973 (patch) | |
tree | e47126c6c357762b62f9e5736c3d27d12948e676 /mail | |
parent | 2f52ed1ee6ec5f0804fd19cc1894bc57ce9edf01 (diff) | |
download | freebsd-ports-gnome-48f459103563a7760a2eef7456e47c1fcc766973.tar.gz freebsd-ports-gnome-48f459103563a7760a2eef7456e47c1fcc766973.tar.zst freebsd-ports-gnome-48f459103563a7760a2eef7456e47c1fcc766973.zip |
- Update devel/icu to 57.1.
- Clean up the Makefile.
- Follow some upstream recommendations (--with-data-packaging=archive,
--disable-renaming, -DICU_NO_USER_DATA_OVERRIDE).
- Patch makefiles to install static libraries with INSTALL_DATA so they
aren't stripped.
- Patch config/mh-bsd-gcc to sync with config/mh-linux-gcc.
- Fix endianness detection in ICU. The code wanted to use BYTE_ORDER
defined in machine/endian.h, but this isn't visible because ICU is
compiled with _XOPEN_SOURCE. Patch the code to use _BYTE_ORDER instead.
- Compile ICU with C++11 compiler to enable move constructors.
- Patch ICU to fix a problem with atomics in the case of a C++11 compiler
without C++11 header <atomic> (like Clang on FreeBSD 9).
- Bump all ports that depend on it due to library version change.
- Add USES=compiler:c++0x to some ports that pick up -std=c++0x from ICU
pkgconfig files.
- Add USES=compiler:c++11-lib to graphics/libcdr01 because it also needs
a C++11 runtime library now. Add this to all ports that depend on it
so their executables load the right libstdc++.so on FreeBSD 9.
PR: 205120
Exp-run by: antoine
Approved by: portmgr (antoine)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/dovecot2-antispam-plugin/Makefile | 2 | ||||
-rw-r--r-- | mail/dovecot2-pigeonhole/Makefile | 2 | ||||
-rw-r--r-- | mail/dovecot2/Makefile | 2 | ||||
-rw-r--r-- | mail/postfix-current/Makefile | 1 | ||||
-rw-r--r-- | mail/postfix/Makefile | 2 | ||||
-rw-r--r-- | mail/thunderbird/Makefile | 2 |
6 files changed, 6 insertions, 5 deletions
diff --git a/mail/dovecot2-antispam-plugin/Makefile b/mail/dovecot2-antispam-plugin/Makefile index 4fc70b22ff54..63173e1da940 100644 --- a/mail/dovecot2-antispam-plugin/Makefile +++ b/mail/dovecot2-antispam-plugin/Makefile @@ -3,7 +3,7 @@ PORTNAME= dovecot2-antispam-plugin PORTVERSION= 20130429 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= mail MASTER_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni diff --git a/mail/dovecot2-pigeonhole/Makefile b/mail/dovecot2-pigeonhole/Makefile index 7fada7a3a1f0..0279e7669d2d 100644 --- a/mail/dovecot2-pigeonhole/Makefile +++ b/mail/dovecot2-pigeonhole/Makefile @@ -3,7 +3,7 @@ PORTNAME= dovecot-pigeonhole PORTVERSION= 0.4.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= http://pigeonhole.dovecot.org/releases/${DOVECOTVERSION}/ DISTNAME= ${PORTNAME:C/-/-${DOVECOTVERSION}-/}-${PORTVERSION} diff --git a/mail/dovecot2/Makefile b/mail/dovecot2/Makefile index 44784347adb2..8ed9b0dd9e81 100644 --- a/mail/dovecot2/Makefile +++ b/mail/dovecot2/Makefile @@ -14,7 +14,7 @@ PORTNAME= dovecot PORTVERSION= 2.2.25 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail ipv6 MASTER_SITES= http://www.dovecot.org/releases/${PORTVERSION:R}/ PKGNAMESUFFIX= 2 diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile index ac5da93e7eac..834eab23b0d1 100644 --- a/mail/postfix-current/Makefile +++ b/mail/postfix-current/Makefile @@ -3,6 +3,7 @@ PORTNAME= postfix DISTVERSION= 3.2-20160917 +PORTREVISION= 1 PORTEPOCH= 4 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index dcee966ed461..4d32504799c0 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -4,7 +4,7 @@ PORTNAME= postfix PORTVERSION= 3.1.2 PORTEPOCH= 1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \ http://de.postfix.org/ftpmirror/ \ diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index ad547dcdaf5d..f85a8e17d497 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -3,7 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 45.3.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source |