diff options
author | Ulrich Müller <ulm@gentoo.org> | 2018-03-18 13:48:29 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2018-03-18 13:49:23 +0100 |
commit | 8caf8fb1ef5e995179f36a1e654272632f70f42b (patch) | |
tree | 86a88080bb6136096c14c93a44b53779a72f5084 | |
parent | dev-python/ansicolor: amd64 stable wrt bug #650658 (diff) | |
download | gentoo-8caf8fb1ef5e995179f36a1e654272632f70f42b.tar.gz gentoo-8caf8fb1ef5e995179f36a1e654272632f70f42b.tar.bz2 gentoo-8caf8fb1ef5e995179f36a1e654272632f70f42b.zip |
app-editors/emact: Version bump.
Package-Manager: Portage-2.3.24, Repoman-2.3.6
-rw-r--r-- | app-editors/emact/Manifest | 1 | ||||
-rw-r--r-- | app-editors/emact/emact-2.58.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/app-editors/emact/Manifest b/app-editors/emact/Manifest index daac0ab26499..d4d87ed4e355 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 000000000000..b5eeeec97fa3 --- /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 +} |