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

2021-05-15 Thread Ulrich Müller
commit: 0d752f89fe4705e0dd41f43b649c7add75e2a506
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat May 15 19:25:58 2021 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat May 15 19:35:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d752f89

app-editors/emact: EAPI 7 bump

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ulrich Müller  gentoo.org>

 app-editors/emact/{emact-2.58.0.ebuild => emact-2.58.0-r1.ebuild} | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-editors/emact/emact-2.58.0.ebuild 
b/app-editors/emact/emact-2.58.0-r1.ebuild
similarity index 83%
rename from app-editors/emact/emact-2.58.0.ebuild
rename to app-editors/emact/emact-2.58.0-r1.ebuild
index bf90ddb88e8..2667c067d36 100644
--- a/app-editors/emact/emact-2.58.0.ebuild
+++ b/app-editors/emact/emact-2.58.0-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit toolchain-funcs
 
@@ -17,8 +17,8 @@ IUSE="gui"
 RDEPEND="sys-libs/ncurses:0=
gui? ( x11-libs/libX11 )"
 DEPEND="${RDEPEND}
-   virtual/pkgconfig
gui? ( x11-base/xorg-proto )"
+BDEPEND="virtual/pkgconfig"
 
 src_configure() {
econf \
@@ -27,6 +27,6 @@ src_configure() {
 }
 
 src_install() {
-   emake INSTALL="${ED%/}"/usr install
+   emake INSTALL="${ED}"/usr install
#dodoc README
 }



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

2020-08-29 Thread Ulrich Müller
commit: caca50e7b99518f3f4d10bdfb533a5a4a175b4a6
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Jan 12 16:36:43 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat Aug 29 11:43:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caca50e7

app-editors/emact: Migrate from X to gui USE flag.

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Ulrich Müller  gentoo.org>

 app-editors/emact/emact-2.58.0.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-editors/emact/emact-2.58.0.ebuild 
b/app-editors/emact/emact-2.58.0.ebuild
index 9b91001721d..bf90ddb88e8 100644
--- a/app-editors/emact/emact-2.58.0.ebuild
+++ b/app-editors/emact/emact-2.58.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,17 +12,17 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 LICENSE="GPL-2+ BSD"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="X"
+IUSE="gui"
 
 RDEPEND="sys-libs/ncurses:0=
-   X? ( x11-libs/libX11 )"
+   gui? ( x11-libs/libX11 )"
 DEPEND="${RDEPEND}
virtual/pkgconfig
-   X? ( x11-base/xorg-proto )"
+   gui? ( x11-base/xorg-proto )"
 
 src_configure() {
econf \
-   $(use_with X x) \
+   $(use_with gui x) \
LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
 }
 



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

2018-07-20 Thread Ulrich Müller
commit: b200945e8476e0e3edbfdeff04e1315911f9604c
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Jul 20 19:02:03 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Jul 20 19:03:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b200945e

app-editors/emact: Fix build failure with ncurses[tinfo].

Bug: https://bugs.gentoo.org/661098
Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-editors/emact/emact-2.58.0.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/app-editors/emact/emact-2.58.0.ebuild 
b/app-editors/emact/emact-2.58.0.ebuild
index 6e0ffca331b..9b91001721d 100644
--- a/app-editors/emact/emact-2.58.0.ebuild
+++ b/app-editors/emact/emact-2.58.0.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=6
 
+inherit toolchain-funcs
+
 DESCRIPTION="EmACT, a fork of Conroy's MicroEmacs"
 HOMEPAGE="http://www.eligis.com/emacs/;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
@@ -15,10 +17,13 @@ IUSE="X"
 RDEPEND="sys-libs/ncurses:0=
X? ( x11-libs/libX11 )"
 DEPEND="${RDEPEND}
+   virtual/pkgconfig
X? ( x11-base/xorg-proto )"
 
 src_configure() {
-   econf $(use_with X x)
+   econf \
+   $(use_with X x) \
+   LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
 }
 
 src_install() {



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

2018-07-20 Thread Ulrich Müller
commit: 62e8ab49a9864090d0cae51747b1cc2f28322356
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Jul 20 19:03:00 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Jul 20 19:03:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62e8ab49

app-editors/emact: Remove old.

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-editors/emact/Manifest|  1 -
 app-editors/emact/emact-2.56.0.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/app-editors/emact/Manifest b/app-editors/emact/Manifest
index d4d87ed4e35..585ab2d01fb 100644
--- a/app-editors/emact/Manifest
+++ b/app-editors/emact/Manifest
@@ -1,2 +1 @@
-DIST emact-2.56.0.tar.gz 578640 BLAKE2B 
2bdf0a88003c0cbd28153737eac588dbb068ed99a1166dc66a5fac33f91d2b3c7e058518733c6eddbfeb3291f3ad89dd4a6bfc4b11ccda0963a314a5fbf4e2b0
 SHA512 
96fce3bf3e00e84abd9de0778a02cfd284689073391e6f9eb3bb4a54e8899ae32d9e8acd45d0f1d575e36f171ca148fc574c9ecc71615df9a9907ee1d30bb99d
 DIST emact-2.58.0.tar.gz 581248 BLAKE2B 
9be43cfc37973d683c5c824bf2f2d60d0ffab2791c46a4082f04d83fc705713d5806608e5802e786be4ced4b008842c5c6dca60b7a30c5483b29736ccc21ffe5
 SHA512 
43108d0bc1989ba6e11f12e86ad5fa4e0b06dc2cc11f54a8b1ca548bb91d2d201f62ffda5e8c11ff75a724229ca1a2ae3e2f439ebc62e1fe3f484f811a88a2c2

diff --git a/app-editors/emact/emact-2.56.0.ebuild 
b/app-editors/emact/emact-2.56.0.ebuild
deleted file mode 100644
index 5ac2733b21f..000
--- a/app-editors/emact/emact-2.56.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="EmACT, a fork of Conroy's MicroEmacs"
-HOMEPAGE="http://www.eligis.com/emacs/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+ BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="X"
-
-DEPEND="sys-libs/ncurses
-   X? ( x11-libs/libX11 )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   # files in the tarball have all mode bits set to zero ...
-   chmod +x configure || die
-}
-
-src_configure() {
-   econf $(use_with X x)
-}
-
-src_install() {
-   emake INSTALL="${D}"/usr install
-   #dodoc README
-}



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

2018-05-27 Thread Mikle Kolyada
commit: 57ee0cb23241a01261327414e564c401e04cdc34
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May 27 20:09:11 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May 27 20:09:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57ee0cb2

app-editors/emact: amd64 stable wrt bug #656564

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-editors/emact/emact-2.58.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/emact/emact-2.58.0.ebuild 
b/app-editors/emact/emact-2.58.0.ebuild
index 49958c76d7c..6e0ffca331b 100644
--- a/app-editors/emact/emact-2.58.0.ebuild
+++ b/app-editors/emact/emact-2.58.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2+ BSD"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="X"
 
 RDEPEND="sys-libs/ncurses:0=



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

2018-05-26 Thread Thomas Deutschmann
commit: a6b59d665d85f011188eecdae9ef04298f3cdf5e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun May 27 01:56:38 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun May 27 01:57:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6b59d66

app-editors/emact: x86 stable (bug #656564)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-editors/emact/emact-2.58.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/emact/emact-2.58.0.ebuild 
b/app-editors/emact/emact-2.58.0.ebuild
index b2f3b4a4d8f..49958c76d7c 100644
--- a/app-editors/emact/emact-2.58.0.ebuild
+++ b/app-editors/emact/emact-2.58.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2+ BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="X"
 
 RDEPEND="sys-libs/ncurses:0=



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

2018-04-02 Thread Ulrich Müller
commit: cb3f31520ae769dd6f6908262ea3ed216eea601e
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Apr  2 14:02:58 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Apr  2 14:03:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb3f3152

app-editors/emact: Update dependency on X headers.

Package-Manager: Portage-2.3.27, Repoman-2.3.9

 app-editors/emact/emact-2.58.0.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-editors/emact/emact-2.58.0.ebuild 
b/app-editors/emact/emact-2.58.0.ebuild
index 8d8b17864cc..b2f3b4a4d8f 100644
--- a/app-editors/emact/emact-2.58.0.ebuild
+++ b/app-editors/emact/emact-2.58.0.ebuild
@@ -12,9 +12,10 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="X"
 
-DEPEND="sys-libs/ncurses:0=
+RDEPEND="sys-libs/ncurses:0=
X? ( x11-libs/libX11 )"
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}
+   X? ( x11-base/xorg-proto )"
 
 src_configure() {
econf $(use_with X x)



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

2018-03-18 Thread Ulrich Müller
commit: c99988e3944d266b115fad17780639528a792601
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Mar 18 22:40:38 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Mar 18 22:41:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c99988e3

app-editors/emact: Install in ED rather than D.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-editors/emact/emact-2.58.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/emact/emact-2.58.0.ebuild 
b/app-editors/emact/emact-2.58.0.ebuild
index b5c97fa..8d8b17864cc 100644
--- a/app-editors/emact/emact-2.58.0.ebuild
+++ b/app-editors/emact/emact-2.58.0.ebuild
@@ -21,6 +21,6 @@ src_configure() {
 }
 
 src_install() {
-   emake INSTALL="${D}"/usr install
+   emake INSTALL="${ED%/}"/usr install
#dodoc README
 }



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

2018-03-18 Thread Ulrich Müller
commit: 8caf8fb1ef5e995179f36a1e654272632f70f42b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Mar 18 12:48:29 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Mar 18 12:49:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8caf8fb1

app-editors/emact: Version bump.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-editors/emact/Manifest|  1 +
 app-editors/emact/emact-2.58.0.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/app-editors/emact/Manifest b/app-editors/emact/Manifest
index daac0ab2649..d4d87ed4e35 100644
--- a/app-editors/emact/Manifest
+++ b/app-editors/emact/Manifest
@@ -1 +1,2 @@
 DIST emact-2.56.0.tar.gz 578640 BLAKE2B 
2bdf0a88003c0cbd28153737eac588dbb068ed99a1166dc66a5fac33f91d2b3c7e058518733c6eddbfeb3291f3ad89dd4a6bfc4b11ccda0963a314a5fbf4e2b0
 SHA512 
96fce3bf3e00e84abd9de0778a02cfd284689073391e6f9eb3bb4a54e8899ae32d9e8acd45d0f1d575e36f171ca148fc574c9ecc71615df9a9907ee1d30bb99d
+DIST emact-2.58.0.tar.gz 581248 BLAKE2B 
9be43cfc37973d683c5c824bf2f2d60d0ffab2791c46a4082f04d83fc705713d5806608e5802e786be4ced4b008842c5c6dca60b7a30c5483b29736ccc21ffe5
 SHA512 
43108d0bc1989ba6e11f12e86ad5fa4e0b06dc2cc11f54a8b1ca548bb91d2d201f62ffda5e8c11ff75a724229ca1a2ae3e2f439ebc62e1fe3f484f811a88a2c2

diff --git a/app-editors/emact/emact-2.58.0.ebuild 
b/app-editors/emact/emact-2.58.0.ebuild
new file mode 100644
index 000..b5c97fa
--- /dev/null
+++ b/app-editors/emact/emact-2.58.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="EmACT, a fork of Conroy's MicroEmacs"
+HOMEPAGE="http://www.eligis.com/emacs/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+ BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="X"
+
+DEPEND="sys-libs/ncurses:0=
+   X? ( x11-libs/libX11 )"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   econf $(use_with X x)
+}
+
+src_install() {
+   emake INSTALL="${D}"/usr install
+   #dodoc README
+}