diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-12-23 11:14:29 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-12-23 11:58:32 +0100 |
commit | c660ce2e04853a0ee1ee1c4367ad172974deb4e0 (patch) | |
tree | f6adffdcb602e99a90312f4f7d00e649d1b17d2c /app-editors/amyedit | |
parent | net-misc/youtube-dl: Version bump by Adrien D (bug #569154). (diff) | |
download | gentoo-c660ce2e04853a0ee1ee1c4367ad172974deb4e0.tar.gz gentoo-c660ce2e04853a0ee1ee1c4367ad172974deb4e0.tar.bz2 gentoo-c660ce2e04853a0ee1ee1c4367ad172974deb4e0.zip |
app-editors/amyedit: Fix building with latest glibmm/libsigc++
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-editors/amyedit')
-rw-r--r-- | app-editors/amyedit/amyedit-1.0-r2.ebuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/app-editors/amyedit/amyedit-1.0-r2.ebuild b/app-editors/amyedit/amyedit-1.0-r2.ebuild index 4e47fcfa4102..86575b0e01af 100644 --- a/app-editors/amyedit/amyedit-1.0-r2.ebuild +++ b/app-editors/amyedit/amyedit-1.0-r2.ebuild @@ -2,9 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=3 - -inherit eutils autotools +EAPI=5 +inherit autotools eutils flag-o-matic DESCRIPTION=" AmyEdit is a LaTeX editor" HOMEPAGE="http://amyedit.sf.net" @@ -29,10 +28,7 @@ src_prepare() { epatch "${FILESDIR}/${P}-gcc45.patch" epatch "${FILESDIR}/${P}-sourceviewmm2.patch" rm -rf "${S}/src/gtksourceviewmm" || die + append-cxxflags -std=c++11 + mv configure.in configure.ac || die eautoreconf } - -src_install() { - emake DESTDIR="${D}" install || die - dodoc ChangeLog README TODO || die -} |