From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8A7351384B4 for ; Wed, 23 Dec 2015 10:59:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEF8321C0A5; Wed, 23 Dec 2015 10:59:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 702DC21C0A8 for ; Wed, 23 Dec 2015 10:59:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8BFC5340806 for ; Wed, 23 Dec 2015 10:59:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 182B5B5D for ; Wed, 23 Dec 2015 10:59:25 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1450868312.c660ce2e04853a0ee1ee1c4367ad172974deb4e0.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/amyedit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/amyedit/amyedit-1.0-r2.ebuild X-VCS-Directories: app-editors/amyedit/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: c660ce2e04853a0ee1ee1c4367ad172974deb4e0 X-VCS-Branch: master Date: Wed, 23 Dec 2015 10:59:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 13168f3a-aac7-422c-abf2-954c8c694e58 X-Archives-Hash: 22262875e2162e515ef8de020286ec12 commit: c660ce2e04853a0ee1ee1c4367ad172974deb4e0 Author: Pacho Ramos gentoo org> AuthorDate: Wed Dec 23 10:14:29 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed Dec 23 10:58:32 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c660ce2e app-editors/amyedit: Fix building with latest glibmm/libsigc++ Package-Manager: portage-2.2.26 app-editors/amyedit/amyedit-1.0-r2.ebuild | 12 ++++-------- 1 file 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 4e47fcf..86575b0 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 -}