diff options
author | David Seifert <soap@gentoo.org> | 2018-05-26 13:13:16 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2018-05-26 14:22:22 +0200 |
commit | 0f110559dfd98323815334de292721ce266f0c33 (patch) | |
tree | e8b62da6773a779d6ae7e9310d34dea7ad6d7fe9 /app-text/writerperfect | |
parent | www-apps/wordpress: 4.9.6 (diff) | |
download | gentoo-0f110559dfd98323815334de292721ce266f0c33.tar.gz gentoo-0f110559dfd98323815334de292721ce266f0c33.tar.bz2 gentoo-0f110559dfd98323815334de292721ce266f0c33.zip |
app-text/writerperfect: Force C++11
Closes: https://bugs.gentoo.org/651620
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-text/writerperfect')
-rw-r--r-- | app-text/writerperfect/writerperfect-0.9.5.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app-text/writerperfect/writerperfect-0.9.5.ebuild b/app-text/writerperfect/writerperfect-0.9.5.ebuild index c5ac9ccae9df..ebcd8a970359 100644 --- a/app-text/writerperfect/writerperfect-0.9.5.ebuild +++ b/app-text/writerperfect/writerperfect-0.9.5.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 +inherit flag-o-matic + DESCRIPTION="Various formats to Open document format converter" HOMEPAGE="http://libwpd.sf.net" SRC_URI="mirror://sourceforge/libwpd/${P}.tar.xz" @@ -41,6 +43,9 @@ REQUIRED_USE=" # configure fails if no import library is selected... src_configure() { + # bug 651620 + append-cxxflags -std=c++11 + econf \ --disable-werror \ $(use_enable debug) \ |