diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-04-02 09:42:48 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-04-02 09:42:48 +0000 |
commit | e4309c5507f2d646c711365ed8abcf9dc8729d8a (patch) | |
tree | 78e5e49a7f8d762e5078b44b18009481a7c461f5 /archivers/libpar2 | |
parent | - Update WWW (diff) |
Chase a bunch of failures after libsigc++20 update
New libsigc++20 requires c++11 (it exposes c++11) so explicitly use -std=c++11
where needed.
Mark as broken a bunch of ports which are not c++11 compatible
Notes
Notes:
svn path=/head/; revision=437539
Diffstat (limited to 'archivers/libpar2')
-rw-r--r-- | archivers/libpar2/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/archivers/libpar2/Makefile b/archivers/libpar2/Makefile index d8a82391cac2..96c4a66bcb20 100644 --- a/archivers/libpar2/Makefile +++ b/archivers/libpar2/Makefile @@ -3,7 +3,7 @@ PORTNAME= libpar2 PORTVERSION= 0.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers MASTER_SITES= http://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/ @@ -16,11 +16,9 @@ LIB_DEPENDS= libsigc-2.0.so:devel/libsigc++20 GNU_CONFIGURE= yes -LDFLAGS+= -L${LOCALBASE}/lib -CPPFLAGS+= -I${LOCALBASE}/include - USE_LDCONFIG= yes -USES= pkgconfig libtool +USES= pkgconfig libtool localbase compiler:c++11-lang +USE_CXXSTD= c++11 OPTIONS_DEFINE= DOCS |