[gentoo-commits] repo/gentoo:master commit in: app-editors/amyedit/

2021-02-15 Thread Matt Turner
commit: fb1edabafb228bb7c94ae75804963a9cea26e671
Author: David Michael  gmail  com>
AuthorDate: Sat Feb  6 22:34:56 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Feb 16 01:25:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb1edaba

app-editors/amyedit: Specify the libsigc++ slot

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: David Michael  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 app-editors/amyedit/{amyedit-1.0-r2.ebuild => amyedit-1.0-r3.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/amyedit/amyedit-1.0-r2.ebuild 
b/app-editors/amyedit/amyedit-1.0-r3.ebuild
similarity index 92%
rename from app-editors/amyedit/amyedit-1.0-r2.ebuild
rename to app-editors/amyedit/amyedit-1.0-r3.ebuild
index 91c331ece32..5a41b9a271c 100644
--- a/app-editors/amyedit/amyedit-1.0-r2.ebuild
+++ b/app-editors/amyedit/amyedit-1.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ KEYWORDS="amd64 ppc x86"
 IUSE=""
 RDEPEND=">=dev-cpp/gtkmm-2.6:2.4
>=dev-cpp/glibmm-2.14:2
-   >=dev-libs/libsigc++-2.2
+   >=dev-libs/libsigc++-2.2:2
x11-libs/gtksourceview:2.0
dev-cpp/gtksourceviewmm:2.0
app-text/aspell"



[gentoo-commits] repo/gentoo:master commit in: app-editors/amyedit/

2015-12-23 Thread Pacho Ramos
commit: c660ce2e04853a0ee1ee1c4367ad172974deb4e0
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Dec 23 10:14:29 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Dec 23 10:58:32 2015 +
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
-}